@betterinternship/db 1.0.14 → 1.1.1
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.
- package/dist/prisma/browser.ts +29 -0
- package/dist/prisma/client.d.ts +1 -0
- package/dist/prisma/client.js +5 -0
- package/dist/prisma/client.ts +51 -0
- package/dist/prisma/commonInputTypes.ts +349 -0
- package/dist/prisma/default.d.ts +1 -0
- package/dist/prisma/default.js +5 -0
- package/dist/prisma/edge.d.ts +1 -0
- package/dist/prisma/edge.js +175 -0
- package/dist/prisma/enums.ts +15 -0
- package/dist/prisma/index-browser.js +205 -0
- package/dist/prisma/index.d.ts +4237 -0
- package/dist/prisma/index.js +175 -0
- package/dist/prisma/internal/class.ts +202 -0
- package/dist/prisma/internal/prismaNamespace.ts +883 -0
- package/dist/prisma/internal/prismaNamespaceBrowser.ts +140 -0
- package/dist/prisma/models/processes.ts +1318 -0
- package/dist/prisma/models/tasks.ts +1507 -0
- package/dist/prisma/models.ts +13 -0
- package/dist/prisma/package.json +144 -0
- package/dist/prisma/query_compiler_fast_bg.js +2 -0
- package/dist/prisma/query_compiler_fast_bg.wasm +0 -0
- package/dist/prisma/query_compiler_fast_bg.wasm-base64.js +2 -0
- package/dist/prisma/runtime/client.d.ts +3304 -0
- package/dist/prisma/runtime/client.js +86 -0
- package/dist/prisma/runtime/index-browser.d.ts +87 -0
- package/dist/prisma/runtime/index-browser.js +6 -0
- package/dist/prisma/runtime/wasm-compiler-edge.js +76 -0
- package/dist/prisma/schema.prisma +34 -0
- package/dist/prisma/wasm-edge-light-loader.mjs +5 -0
- package/dist/prisma/wasm-worker-loader.mjs +5 -0
- package/dist/src/db/index.d.ts +6 -9
- package/dist/src/db/index.js +1 -1
- package/dist/src/db/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/dist/src/prisma/browser.d.ts +0 -6
- package/dist/src/prisma/browser.js +0 -44
- package/dist/src/prisma/browser.js.map +0 -1
- package/dist/src/prisma/internal/prismaNamespaceBrowser.d.ts +0 -71
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js +0 -97
- package/dist/src/prisma/internal/prismaNamespaceBrowser.js.map +0 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
/*
|
|
7
|
+
* This file should be your main import to use Prisma-related types and utilities in a browser.
|
|
8
|
+
* Use it to get access to models, enums, and input types.
|
|
9
|
+
*
|
|
10
|
+
* This file does not contain a `PrismaClient` class, nor several other helpers that are intended as server-side only.
|
|
11
|
+
* See `client.ts` for the standard, server-side entry point.
|
|
12
|
+
*
|
|
13
|
+
* 🟢 You can import this file directly.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import * as Prisma from './internal/prismaNamespaceBrowser.js'
|
|
17
|
+
export { Prisma }
|
|
18
|
+
export * as $Enums from './enums.js'
|
|
19
|
+
export * from './enums.js';
|
|
20
|
+
/**
|
|
21
|
+
* Model processes
|
|
22
|
+
* This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.
|
|
23
|
+
*/
|
|
24
|
+
export type processes = Prisma.processesModel
|
|
25
|
+
/**
|
|
26
|
+
* Model tasks
|
|
27
|
+
* This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.
|
|
28
|
+
*/
|
|
29
|
+
export type tasks = Prisma.tasksModel
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index"
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
/*
|
|
7
|
+
* This file should be your main import to use Prisma. Through it you get access to all the models, enums, and input types.
|
|
8
|
+
* If you're looking for something you can import in the client-side of your application, please refer to the `browser.ts` file instead.
|
|
9
|
+
*
|
|
10
|
+
* 🟢 You can import this file directly.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import * as process from 'node:process'
|
|
14
|
+
import * as path from 'node:path'
|
|
15
|
+
import { fileURLToPath } from 'node:url'
|
|
16
|
+
globalThis['__dirname'] = path.dirname(fileURLToPath(import.meta.url))
|
|
17
|
+
|
|
18
|
+
import * as runtime from "@prisma/client/runtime/client"
|
|
19
|
+
import * as $Enums from "./enums.js"
|
|
20
|
+
import * as $Class from "./internal/class.js"
|
|
21
|
+
import * as Prisma from "./internal/prismaNamespace.js"
|
|
22
|
+
|
|
23
|
+
export * as $Enums from './enums.js'
|
|
24
|
+
export * from "./enums.js"
|
|
25
|
+
/**
|
|
26
|
+
* ## Prisma Client
|
|
27
|
+
*
|
|
28
|
+
* Type-safe database client for TypeScript
|
|
29
|
+
* @example
|
|
30
|
+
* ```
|
|
31
|
+
* const prisma = new PrismaClient()
|
|
32
|
+
* // Fetch zero or more Processes
|
|
33
|
+
* const processes = await prisma.processes.findMany()
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* Read more in our [docs](https://pris.ly/d/client).
|
|
37
|
+
*/
|
|
38
|
+
export const PrismaClient = $Class.getPrismaClientClass()
|
|
39
|
+
export type PrismaClient<LogOpts extends Prisma.LogLevel = never, OmitOpts extends Prisma.PrismaClientOptions["omit"] = Prisma.PrismaClientOptions["omit"], ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = $Class.PrismaClient<LogOpts, OmitOpts, ExtArgs>
|
|
40
|
+
export { Prisma }
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Model processes
|
|
44
|
+
* This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.
|
|
45
|
+
*/
|
|
46
|
+
export type processes = Prisma.processesModel
|
|
47
|
+
/**
|
|
48
|
+
* Model tasks
|
|
49
|
+
* This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.
|
|
50
|
+
*/
|
|
51
|
+
export type tasks = Prisma.tasksModel
|
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
/*
|
|
7
|
+
* This file exports various common sort, input & filter types that are not directly linked to a particular model.
|
|
8
|
+
*
|
|
9
|
+
* 🟢 You can import this file directly.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
|
+
import * as $Enums from "./enums.js"
|
|
14
|
+
import type * as Prisma from "./internal/prismaNamespace.js"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export type UuidFilter<$PrismaModel = never> = {
|
|
18
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
19
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
20
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
21
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
22
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
23
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
24
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
25
|
+
mode?: Prisma.QueryMode
|
|
26
|
+
not?: Prisma.NestedUuidFilter<$PrismaModel> | string
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export type JsonNullableFilter<$PrismaModel = never> =
|
|
30
|
+
| Prisma.PatchUndefined<
|
|
31
|
+
Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
32
|
+
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
33
|
+
>
|
|
34
|
+
| Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
35
|
+
|
|
36
|
+
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
37
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
38
|
+
path?: string[]
|
|
39
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
40
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
41
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
42
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
43
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
44
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
45
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
46
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
47
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
48
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
49
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
50
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export type StringFilter<$PrismaModel = never> = {
|
|
54
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
55
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
56
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
57
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
58
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
59
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
60
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
61
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
62
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
63
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
64
|
+
mode?: Prisma.QueryMode
|
|
65
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export type DateTimeFilter<$PrismaModel = never> = {
|
|
69
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
70
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
71
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
72
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
73
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
74
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
75
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
76
|
+
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export type SortOrderInput = {
|
|
80
|
+
sort: Prisma.SortOrder
|
|
81
|
+
nulls?: Prisma.NullsOrder
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export type UuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
85
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
86
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
87
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
88
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
89
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
90
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
91
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
92
|
+
mode?: Prisma.QueryMode
|
|
93
|
+
not?: Prisma.NestedUuidWithAggregatesFilter<$PrismaModel> | string
|
|
94
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
95
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
96
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
100
|
+
| Prisma.PatchUndefined<
|
|
101
|
+
Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
102
|
+
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
103
|
+
>
|
|
104
|
+
| Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
105
|
+
|
|
106
|
+
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
107
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
108
|
+
path?: string[]
|
|
109
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
110
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
111
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
112
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
113
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
114
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
115
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
116
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
117
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
118
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
119
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
120
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
121
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
122
|
+
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>
|
|
123
|
+
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
127
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
128
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
129
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
130
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
131
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
132
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
133
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
134
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
135
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
136
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
137
|
+
mode?: Prisma.QueryMode
|
|
138
|
+
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
139
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
140
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
141
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
145
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
146
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
147
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
148
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
149
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
150
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
151
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
152
|
+
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
153
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
154
|
+
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
155
|
+
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export type StringNullableFilter<$PrismaModel = never> = {
|
|
159
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
160
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
161
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
162
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
163
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
164
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
165
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
166
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
167
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
168
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
169
|
+
mode?: Prisma.QueryMode
|
|
170
|
+
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
174
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
175
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
176
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
177
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
178
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
179
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
180
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
181
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
182
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
183
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
184
|
+
mode?: Prisma.QueryMode
|
|
185
|
+
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
|
|
186
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
187
|
+
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>
|
|
188
|
+
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export type NestedUuidFilter<$PrismaModel = never> = {
|
|
192
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
193
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
194
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
195
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
196
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
197
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
198
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
199
|
+
not?: Prisma.NestedUuidFilter<$PrismaModel> | string
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export type NestedStringFilter<$PrismaModel = never> = {
|
|
203
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
204
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
205
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
206
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
207
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
208
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
209
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
210
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
211
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
212
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
213
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
217
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
218
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
219
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
220
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
221
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
222
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
223
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
224
|
+
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export type NestedUuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
228
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
229
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
230
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
231
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
232
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
233
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
234
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
235
|
+
not?: Prisma.NestedUuidWithAggregatesFilter<$PrismaModel> | string
|
|
236
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
237
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
238
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export type NestedIntFilter<$PrismaModel = never> = {
|
|
242
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
243
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
244
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
245
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
246
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
247
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
248
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
249
|
+
not?: Prisma.NestedIntFilter<$PrismaModel> | number
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
253
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
254
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
255
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
256
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
257
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
258
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
259
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
260
|
+
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
264
|
+
| Prisma.PatchUndefined<
|
|
265
|
+
Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
266
|
+
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
267
|
+
>
|
|
268
|
+
| Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
269
|
+
|
|
270
|
+
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
271
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
272
|
+
path?: string[]
|
|
273
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
274
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
275
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
276
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
277
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
278
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
279
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
280
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
281
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
282
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
283
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
284
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
288
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
289
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
290
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
291
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
292
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
293
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
294
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
295
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
296
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
297
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
298
|
+
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
299
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
300
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
301
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
305
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
306
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
307
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
308
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
309
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
310
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
311
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
312
|
+
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
313
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
314
|
+
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
315
|
+
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
319
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
320
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
321
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
322
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
323
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
324
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
325
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
326
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
327
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
328
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
329
|
+
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
333
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
334
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
335
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
336
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
337
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
338
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
339
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
340
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
341
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
342
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
343
|
+
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
|
|
344
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
345
|
+
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>
|
|
346
|
+
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./default"
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!!
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
5
|
+
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
PrismaClientKnownRequestError,
|
|
10
|
+
PrismaClientUnknownRequestError,
|
|
11
|
+
PrismaClientRustPanicError,
|
|
12
|
+
PrismaClientInitializationError,
|
|
13
|
+
PrismaClientValidationError,
|
|
14
|
+
getPrismaClient,
|
|
15
|
+
sqltag,
|
|
16
|
+
empty,
|
|
17
|
+
join,
|
|
18
|
+
raw,
|
|
19
|
+
skip,
|
|
20
|
+
Decimal,
|
|
21
|
+
Debug,
|
|
22
|
+
DbNull,
|
|
23
|
+
JsonNull,
|
|
24
|
+
AnyNull,
|
|
25
|
+
NullTypes,
|
|
26
|
+
makeStrictEnum,
|
|
27
|
+
Extensions,
|
|
28
|
+
warnOnce,
|
|
29
|
+
defineDmmfProperty,
|
|
30
|
+
Public,
|
|
31
|
+
getRuntime,
|
|
32
|
+
createParam,
|
|
33
|
+
} = require('./runtime/wasm-compiler-edge.js')
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
const Prisma = {}
|
|
37
|
+
|
|
38
|
+
exports.Prisma = Prisma
|
|
39
|
+
exports.$Enums = {}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Prisma Client JS version: 7.3.0
|
|
43
|
+
* Query Engine version: 9d6ad21cbbceab97458517b147a6a09ff43aa735
|
|
44
|
+
*/
|
|
45
|
+
Prisma.prismaVersion = {
|
|
46
|
+
client: "7.3.0",
|
|
47
|
+
engine: "9d6ad21cbbceab97458517b147a6a09ff43aa735"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError;
|
|
51
|
+
Prisma.PrismaClientUnknownRequestError = PrismaClientUnknownRequestError
|
|
52
|
+
Prisma.PrismaClientRustPanicError = PrismaClientRustPanicError
|
|
53
|
+
Prisma.PrismaClientInitializationError = PrismaClientInitializationError
|
|
54
|
+
Prisma.PrismaClientValidationError = PrismaClientValidationError
|
|
55
|
+
Prisma.Decimal = Decimal
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Re-export of sql-template-tag
|
|
59
|
+
*/
|
|
60
|
+
Prisma.sql = sqltag
|
|
61
|
+
Prisma.empty = empty
|
|
62
|
+
Prisma.join = join
|
|
63
|
+
Prisma.raw = raw
|
|
64
|
+
Prisma.validator = Public.validator
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Extensions
|
|
68
|
+
*/
|
|
69
|
+
Prisma.getExtensionContext = Extensions.getExtensionContext
|
|
70
|
+
Prisma.defineExtension = Extensions.defineExtension
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Shorthand utilities for JSON filtering
|
|
74
|
+
*/
|
|
75
|
+
Prisma.DbNull = DbNull
|
|
76
|
+
Prisma.JsonNull = JsonNull
|
|
77
|
+
Prisma.AnyNull = AnyNull
|
|
78
|
+
|
|
79
|
+
Prisma.NullTypes = NullTypes
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Enums
|
|
87
|
+
*/
|
|
88
|
+
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
89
|
+
ReadUncommitted: 'ReadUncommitted',
|
|
90
|
+
ReadCommitted: 'ReadCommitted',
|
|
91
|
+
RepeatableRead: 'RepeatableRead',
|
|
92
|
+
Serializable: 'Serializable'
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
exports.Prisma.ProcessesScalarFieldEnum = {
|
|
96
|
+
id: 'id',
|
|
97
|
+
result: 'result',
|
|
98
|
+
status: 'status',
|
|
99
|
+
error: 'error',
|
|
100
|
+
timestamp: 'timestamp'
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
exports.Prisma.TasksScalarFieldEnum = {
|
|
104
|
+
id: 'id',
|
|
105
|
+
internal_id: 'internal_id',
|
|
106
|
+
handler_id: 'handler_id',
|
|
107
|
+
parent_id: 'parent_id',
|
|
108
|
+
process_id: 'process_id',
|
|
109
|
+
inputs: 'inputs',
|
|
110
|
+
result: 'result',
|
|
111
|
+
status: 'status',
|
|
112
|
+
error: 'error',
|
|
113
|
+
timestamp: 'timestamp'
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
exports.Prisma.SortOrder = {
|
|
117
|
+
asc: 'asc',
|
|
118
|
+
desc: 'desc'
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
exports.Prisma.NullableJsonNullValueInput = {
|
|
122
|
+
DbNull: Prisma.DbNull,
|
|
123
|
+
JsonNull: Prisma.JsonNull
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
exports.Prisma.QueryMode = {
|
|
127
|
+
default: 'default',
|
|
128
|
+
insensitive: 'insensitive'
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
exports.Prisma.JsonNullValueFilter = {
|
|
132
|
+
DbNull: Prisma.DbNull,
|
|
133
|
+
JsonNull: Prisma.JsonNull,
|
|
134
|
+
AnyNull: Prisma.AnyNull
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
exports.Prisma.NullsOrder = {
|
|
138
|
+
first: 'first',
|
|
139
|
+
last: 'last'
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
exports.Prisma.ModelName = {
|
|
144
|
+
processes: 'processes',
|
|
145
|
+
tasks: 'tasks'
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Create the Client
|
|
149
|
+
*/
|
|
150
|
+
const config = {
|
|
151
|
+
"previewFeatures": [],
|
|
152
|
+
"clientVersion": "7.3.0",
|
|
153
|
+
"engineVersion": "9d6ad21cbbceab97458517b147a6a09ff43aa735",
|
|
154
|
+
"activeProvider": "postgresql",
|
|
155
|
+
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"../src/prisma\"\n engineType = \"library\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\n/// This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.\nmodel processes {\n id String @id @default(dbgenerated(\"gen_random_uuid()\")) @db.Uuid\n result Json?\n status String @default(\"pending\")\n error Json?\n timestamp DateTime @default(now()) @db.Timestamptz(6)\n tasks tasks[]\n}\n\n/// This table contains check constraints and requires additional setup for migrations. Visit https://pris.ly/d/check-constraints for more info.\nmodel tasks {\n id String @id @default(dbgenerated(\"gen_random_uuid()\")) @db.Uuid\n internal_id String\n handler_id String\n parent_id String?\n process_id String @db.Uuid\n inputs Json?\n result Json?\n status String @default(\"pending\")\n error String?\n timestamp DateTime @default(now()) @db.Timestamptz(6)\n processes processes @relation(fields: [process_id], references: [id], onDelete: Cascade, map: \"fk_processes\")\n}\n"
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
config.runtimeDataModel = JSON.parse("{\"models\":{\"processes\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"result\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"error\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"tasks\",\"kind\":\"object\",\"type\":\"tasks\",\"relationName\":\"processesTotasks\"}],\"dbName\":null},\"tasks\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"internal_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"handler_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"parent_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"process_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"inputs\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"result\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"error\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"processes\",\"kind\":\"object\",\"type\":\"processes\",\"relationName\":\"processesTotasks\"}],\"dbName\":null}},\"enums\":{},\"types\":{}}")
|
|
159
|
+
defineDmmfProperty(exports.Prisma, config.runtimeDataModel)
|
|
160
|
+
config.compilerWasm = {
|
|
161
|
+
getRuntime: async () => require('./query_compiler_fast_bg.js'),
|
|
162
|
+
getQueryCompilerWasmModule: async () => {
|
|
163
|
+
const loader = (await import('#wasm-compiler-loader')).default
|
|
164
|
+
const compiler = (await loader).default
|
|
165
|
+
return compiler
|
|
166
|
+
},
|
|
167
|
+
importName: './query_compiler_fast_bg.js',
|
|
168
|
+
}
|
|
169
|
+
if (typeof globalThis !== 'undefined' && globalThis['DEBUG'] || (typeof process !== 'undefined' && process.env && process.env.DEBUG) || undefined) {
|
|
170
|
+
Debug.enable(typeof globalThis !== 'undefined' && globalThis['DEBUG'] || (typeof process !== 'undefined' && process.env && process.env.DEBUG) || undefined)
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const PrismaClient = getPrismaClient(config)
|
|
174
|
+
exports.PrismaClient = PrismaClient
|
|
175
|
+
Object.assign(exports, Prisma)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
/*
|
|
7
|
+
* This file exports all enum related types from the schema.
|
|
8
|
+
*
|
|
9
|
+
* 🟢 You can import this file directly.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
// This file is empty because there are no enums in the schema.
|
|
15
|
+
export {}
|