@eventualize/postgres-storage-adapter 1.0.0
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/EvDbPostgresPrismaClientFactory.d.ts +3 -0
- package/dist/EvDbPostgresPrismaClientFactory.js +10 -0
- package/dist/EvDbPostgresPrismaClientFactory.js.map +1 -0
- package/dist/generated/prisma/browser.d.ts +19 -0
- package/dist/generated/prisma/browser.js +18 -0
- package/dist/generated/prisma/browser.js.map +1 -0
- package/dist/generated/prisma/client.d.ts +36 -0
- package/dist/generated/prisma/client.js +33 -0
- package/dist/generated/prisma/client.js.map +1 -0
- package/dist/generated/prisma/commonInputTypes.d.ts +378 -0
- package/dist/generated/prisma/commonInputTypes.js +11 -0
- package/dist/generated/prisma/commonInputTypes.js.map +1 -0
- package/dist/generated/prisma/enums.d.ts +1 -0
- package/dist/generated/prisma/enums.js +11 -0
- package/dist/generated/prisma/enums.js.map +1 -0
- package/dist/generated/prisma/internal/class.d.ts +148 -0
- package/dist/generated/prisma/internal/class.js +41 -0
- package/dist/generated/prisma/internal/class.js.map +1 -0
- package/dist/generated/prisma/internal/prismaNamespace.d.ts +759 -0
- package/dist/generated/prisma/internal/prismaNamespace.js +144 -0
- package/dist/generated/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/generated/prisma/internal/prismaNamespaceBrowser.d.ts +109 -0
- package/dist/generated/prisma/internal/prismaNamespaceBrowser.js +115 -0
- package/dist/generated/prisma/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/generated/prisma/models/events.d.ts +1178 -0
- package/dist/generated/prisma/models/events.js +2 -0
- package/dist/generated/prisma/models/events.js.map +1 -0
- package/dist/generated/prisma/models/outbox.d.ts +1261 -0
- package/dist/generated/prisma/models/outbox.js +2 -0
- package/dist/generated/prisma/models/outbox.js.map +1 -0
- package/dist/generated/prisma/models/snapshot.d.ts +1088 -0
- package/dist/generated/prisma/models/snapshot.js +2 -0
- package/dist/generated/prisma/models/snapshot.js.map +1 -0
- package/dist/generated/prisma/models.d.ts +4 -0
- package/dist/generated/prisma/models.js +2 -0
- package/dist/generated/prisma/models.js.map +1 -0
- package/package.json +31 -0
- package/prisma/migrations/20251211113311_change_outbox_payload_to_json/migration.sql +62 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema.prisma +61 -0
- package/prisma.config.d.ts +3 -0
- package/prisma.config.js +14 -0
- package/prisma.config.js.map +1 -0
- package/prisma.config.ts +14 -0
- package/src/EvDbPostgresPrismaClientFactory.ts +12 -0
- package/src/generated/prisma/browser.ts +34 -0
- package/src/generated/prisma/client.ts +56 -0
- package/src/generated/prisma/commonInputTypes.ts +459 -0
- package/src/generated/prisma/enums.ts +15 -0
- package/src/generated/prisma/internal/class.ts +210 -0
- package/src/generated/prisma/internal/prismaNamespace.ts +1029 -0
- package/src/generated/prisma/internal/prismaNamespaceBrowser.ts +169 -0
- package/src/generated/prisma/models/events.ts +1339 -0
- package/src/generated/prisma/models/outbox.ts +1420 -0
- package/src/generated/prisma/models/snapshot.ts +1246 -0
- package/src/generated/prisma/models.ts +14 -0
- package/tsconfig.json +19 -0
|
@@ -0,0 +1,459 @@
|
|
|
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 StringFilter<$PrismaModel = never> = {
|
|
30
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
31
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
32
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
33
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
34
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
35
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
36
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
37
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
38
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
39
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
40
|
+
mode?: Prisma.QueryMode
|
|
41
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export type BigIntFilter<$PrismaModel = never> = {
|
|
45
|
+
equals?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
46
|
+
in?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
47
|
+
notIn?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
48
|
+
lt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
49
|
+
lte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
50
|
+
gt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
51
|
+
gte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
52
|
+
not?: Prisma.NestedBigIntFilter<$PrismaModel> | bigint | number
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export type JsonNullableFilter<$PrismaModel = never> =
|
|
56
|
+
| Prisma.PatchUndefined<
|
|
57
|
+
Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
58
|
+
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
59
|
+
>
|
|
60
|
+
| Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
61
|
+
|
|
62
|
+
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
63
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
64
|
+
path?: string[]
|
|
65
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
66
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
67
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
68
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
69
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
70
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
71
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
72
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
73
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
74
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
75
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
76
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export type DateTimeFilter<$PrismaModel = never> = {
|
|
80
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
81
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
82
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
83
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
84
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
85
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
86
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
87
|
+
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export type JsonFilter<$PrismaModel = never> =
|
|
91
|
+
| Prisma.PatchUndefined<
|
|
92
|
+
Prisma.Either<Required<JsonFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonFilterBase<$PrismaModel>>, 'path'>>,
|
|
93
|
+
Required<JsonFilterBase<$PrismaModel>>
|
|
94
|
+
>
|
|
95
|
+
| Prisma.OptionalFlat<Omit<Required<JsonFilterBase<$PrismaModel>>, 'path'>>
|
|
96
|
+
|
|
97
|
+
export type JsonFilterBase<$PrismaModel = never> = {
|
|
98
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
99
|
+
path?: string[]
|
|
100
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
101
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
102
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
103
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
104
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
105
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
106
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
107
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
108
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
109
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
110
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
111
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export type SortOrderInput = {
|
|
115
|
+
sort: Prisma.SortOrder
|
|
116
|
+
nulls?: Prisma.NullsOrder
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export type UuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
120
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
121
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
122
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
123
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
124
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
125
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
126
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
127
|
+
mode?: Prisma.QueryMode
|
|
128
|
+
not?: Prisma.NestedUuidWithAggregatesFilter<$PrismaModel> | string
|
|
129
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
130
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
131
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
135
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
136
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
137
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
138
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
139
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
140
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
141
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
142
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
143
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
144
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
145
|
+
mode?: Prisma.QueryMode
|
|
146
|
+
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
147
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
148
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
149
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export type BigIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
153
|
+
equals?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
154
|
+
in?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
155
|
+
notIn?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
156
|
+
lt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
157
|
+
lte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
158
|
+
gt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
159
|
+
gte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
160
|
+
not?: Prisma.NestedBigIntWithAggregatesFilter<$PrismaModel> | bigint | number
|
|
161
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
162
|
+
_avg?: Prisma.NestedFloatFilter<$PrismaModel>
|
|
163
|
+
_sum?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
164
|
+
_min?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
165
|
+
_max?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
169
|
+
| Prisma.PatchUndefined<
|
|
170
|
+
Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
171
|
+
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
172
|
+
>
|
|
173
|
+
| Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
174
|
+
|
|
175
|
+
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
176
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
177
|
+
path?: string[]
|
|
178
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
179
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
180
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
181
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
182
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
183
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
184
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
185
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
186
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
187
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
188
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
189
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
190
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
191
|
+
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>
|
|
192
|
+
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
196
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
197
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
198
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
199
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
200
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
201
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
202
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
203
|
+
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
204
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
205
|
+
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
206
|
+
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export type JsonWithAggregatesFilter<$PrismaModel = never> =
|
|
210
|
+
| Prisma.PatchUndefined<
|
|
211
|
+
Prisma.Either<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
212
|
+
Required<JsonWithAggregatesFilterBase<$PrismaModel>>
|
|
213
|
+
>
|
|
214
|
+
| Prisma.OptionalFlat<Omit<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
215
|
+
|
|
216
|
+
export type JsonWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
217
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
218
|
+
path?: string[]
|
|
219
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
220
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
221
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
222
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
223
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
224
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
225
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
226
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
227
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
228
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
229
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
230
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
231
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
232
|
+
_min?: Prisma.NestedJsonFilter<$PrismaModel>
|
|
233
|
+
_max?: Prisma.NestedJsonFilter<$PrismaModel>
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export type BytesNullableFilter<$PrismaModel = never> = {
|
|
237
|
+
equals?: runtime.Bytes | Prisma.BytesFieldRefInput<$PrismaModel> | null
|
|
238
|
+
in?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
239
|
+
notIn?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
240
|
+
not?: Prisma.NestedBytesNullableFilter<$PrismaModel> | runtime.Bytes | null
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export type BytesNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
244
|
+
equals?: runtime.Bytes | Prisma.BytesFieldRefInput<$PrismaModel> | null
|
|
245
|
+
in?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
246
|
+
notIn?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
247
|
+
not?: Prisma.NestedBytesNullableWithAggregatesFilter<$PrismaModel> | runtime.Bytes | null
|
|
248
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
249
|
+
_min?: Prisma.NestedBytesNullableFilter<$PrismaModel>
|
|
250
|
+
_max?: Prisma.NestedBytesNullableFilter<$PrismaModel>
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export type NestedUuidFilter<$PrismaModel = never> = {
|
|
254
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
255
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
256
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
257
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
258
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
259
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
260
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
261
|
+
not?: Prisma.NestedUuidFilter<$PrismaModel> | string
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export type NestedStringFilter<$PrismaModel = never> = {
|
|
265
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
266
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
267
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
268
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
269
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
270
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
271
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
272
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
273
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
274
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
275
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export type NestedBigIntFilter<$PrismaModel = never> = {
|
|
279
|
+
equals?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
280
|
+
in?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
281
|
+
notIn?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
282
|
+
lt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
283
|
+
lte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
284
|
+
gt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
285
|
+
gte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
286
|
+
not?: Prisma.NestedBigIntFilter<$PrismaModel> | bigint | number
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
290
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
291
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
292
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
293
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
294
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
295
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
296
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
297
|
+
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export type NestedUuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
301
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
302
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
303
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
304
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
305
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
306
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
307
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
308
|
+
not?: Prisma.NestedUuidWithAggregatesFilter<$PrismaModel> | string
|
|
309
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
310
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
311
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export type NestedIntFilter<$PrismaModel = never> = {
|
|
315
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
316
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
317
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
318
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
319
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
320
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
321
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
322
|
+
not?: Prisma.NestedIntFilter<$PrismaModel> | number
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
326
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
327
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
328
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
329
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
330
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
331
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
332
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
333
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
334
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
335
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
336
|
+
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
337
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
338
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
339
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export type NestedBigIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
343
|
+
equals?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
344
|
+
in?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
345
|
+
notIn?: bigint[] | number[] | Prisma.ListBigIntFieldRefInput<$PrismaModel>
|
|
346
|
+
lt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
347
|
+
lte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
348
|
+
gt?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
349
|
+
gte?: bigint | number | Prisma.BigIntFieldRefInput<$PrismaModel>
|
|
350
|
+
not?: Prisma.NestedBigIntWithAggregatesFilter<$PrismaModel> | bigint | number
|
|
351
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
352
|
+
_avg?: Prisma.NestedFloatFilter<$PrismaModel>
|
|
353
|
+
_sum?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
354
|
+
_min?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
355
|
+
_max?: Prisma.NestedBigIntFilter<$PrismaModel>
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
359
|
+
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
360
|
+
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>
|
|
361
|
+
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>
|
|
362
|
+
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
363
|
+
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
364
|
+
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
365
|
+
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
366
|
+
not?: Prisma.NestedFloatFilter<$PrismaModel> | number
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
370
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
371
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
372
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
373
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
374
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
375
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
376
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
377
|
+
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
381
|
+
| Prisma.PatchUndefined<
|
|
382
|
+
Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
383
|
+
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
384
|
+
>
|
|
385
|
+
| Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
386
|
+
|
|
387
|
+
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
388
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
389
|
+
path?: string[]
|
|
390
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
391
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
392
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
393
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
394
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
395
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
396
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
397
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
398
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
399
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
400
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
401
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
405
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
406
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
407
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
408
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
409
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
410
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
411
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
412
|
+
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string
|
|
413
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
414
|
+
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
415
|
+
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export type NestedJsonFilter<$PrismaModel = never> =
|
|
419
|
+
| Prisma.PatchUndefined<
|
|
420
|
+
Prisma.Either<Required<NestedJsonFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>,
|
|
421
|
+
Required<NestedJsonFilterBase<$PrismaModel>>
|
|
422
|
+
>
|
|
423
|
+
| Prisma.OptionalFlat<Omit<Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>
|
|
424
|
+
|
|
425
|
+
export type NestedJsonFilterBase<$PrismaModel = never> = {
|
|
426
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
427
|
+
path?: string[]
|
|
428
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>
|
|
429
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
430
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
431
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
432
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
433
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
434
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null
|
|
435
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
436
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
437
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
438
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>
|
|
439
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export type NestedBytesNullableFilter<$PrismaModel = never> = {
|
|
443
|
+
equals?: runtime.Bytes | Prisma.BytesFieldRefInput<$PrismaModel> | null
|
|
444
|
+
in?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
445
|
+
notIn?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
446
|
+
not?: Prisma.NestedBytesNullableFilter<$PrismaModel> | runtime.Bytes | null
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export type NestedBytesNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
450
|
+
equals?: runtime.Bytes | Prisma.BytesFieldRefInput<$PrismaModel> | null
|
|
451
|
+
in?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
452
|
+
notIn?: runtime.Bytes[] | Prisma.ListBytesFieldRefInput<$PrismaModel> | null
|
|
453
|
+
not?: Prisma.NestedBytesNullableWithAggregatesFilter<$PrismaModel> | runtime.Bytes | null
|
|
454
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
455
|
+
_min?: Prisma.NestedBytesNullableFilter<$PrismaModel>
|
|
456
|
+
_max?: Prisma.NestedBytesNullableFilter<$PrismaModel>
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
|
|
@@ -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 {}
|