@sebbo2002/tgtg-ical 3.0.9-develop.9 → 3.1.0-develop.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.
@@ -0,0 +1,183 @@
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
+ * WARNING: This is an internal file that is subject to change!
8
+ *
9
+ * 🛑 Under no circumstances should you import this file directly! 🛑
10
+ *
11
+ * All exports from this file are wrapped under a `Prisma` namespace object in the browser.ts file.
12
+ * While this enables partial backward compatibility, it is not part of the stable public API.
13
+ *
14
+ * If you are looking for your Models, Enums, and Input Types, please import them from the respective
15
+ * model files in the `model` directory!
16
+ */
17
+
18
+ import * as runtime from "@prisma/client/runtime/index-browser"
19
+
20
+ export type * from '../models.js'
21
+ export type * from './prismaNamespace.js'
22
+
23
+ export const Decimal = runtime.Decimal
24
+
25
+
26
+ export const NullTypes = {
27
+ DbNull: runtime.NullTypes.DbNull as (new (secret: never) => typeof runtime.DbNull),
28
+ JsonNull: runtime.NullTypes.JsonNull as (new (secret: never) => typeof runtime.JsonNull),
29
+ AnyNull: runtime.NullTypes.AnyNull as (new (secret: never) => typeof runtime.AnyNull),
30
+ }
31
+ /**
32
+ * Helper for filtering JSON entries that have `null` on the database (empty on the db)
33
+ *
34
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
35
+ */
36
+ export const DbNull = runtime.DbNull
37
+
38
+ /**
39
+ * Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
40
+ *
41
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
42
+ */
43
+ export const JsonNull = runtime.JsonNull
44
+
45
+ /**
46
+ * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
47
+ *
48
+ * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
49
+ */
50
+ export const AnyNull = runtime.AnyNull
51
+
52
+
53
+ export const ModelName = {
54
+ User: 'User',
55
+ Event: 'Event',
56
+ Location: 'Location',
57
+ Mail: 'Mail'
58
+ } as const
59
+
60
+ export type ModelName = (typeof ModelName)[keyof typeof ModelName]
61
+
62
+ /*
63
+ * Enums
64
+ */
65
+
66
+ export const TransactionIsolationLevel = {
67
+ ReadUncommitted: 'ReadUncommitted',
68
+ ReadCommitted: 'ReadCommitted',
69
+ RepeatableRead: 'RepeatableRead',
70
+ Serializable: 'Serializable'
71
+ } as const
72
+
73
+ export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
74
+
75
+
76
+ export const UserScalarFieldEnum = {
77
+ id: 'id',
78
+ prefix: 'prefix',
79
+ createdAt: 'createdAt',
80
+ lastSeenAt: 'lastSeenAt'
81
+ } as const
82
+
83
+ export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
84
+
85
+
86
+ export const EventScalarFieldEnum = {
87
+ id: 'id',
88
+ orderId: 'orderId',
89
+ from: 'from',
90
+ to: 'to',
91
+ amount: 'amount',
92
+ price: 'price',
93
+ userId: 'userId',
94
+ locationId: 'locationId',
95
+ createdAt: 'createdAt',
96
+ orderedAt: 'orderedAt',
97
+ invoicedAt: 'invoicedAt',
98
+ canceledAt: 'canceledAt'
99
+ } as const
100
+
101
+ export type EventScalarFieldEnum = (typeof EventScalarFieldEnum)[keyof typeof EventScalarFieldEnum]
102
+
103
+
104
+ export const LocationScalarFieldEnum = {
105
+ id: 'id',
106
+ name: 'name',
107
+ address: 'address',
108
+ latitude: 'latitude',
109
+ longitude: 'longitude',
110
+ emoji: 'emoji',
111
+ createdAt: 'createdAt'
112
+ } as const
113
+
114
+ export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
115
+
116
+
117
+ export const MailScalarFieldEnum = {
118
+ id: 'id',
119
+ raw: 'raw',
120
+ error: 'error',
121
+ errorId: 'errorId',
122
+ version: 'version',
123
+ createdAt: 'createdAt',
124
+ erroredAt: 'erroredAt'
125
+ } as const
126
+
127
+ export type MailScalarFieldEnum = (typeof MailScalarFieldEnum)[keyof typeof MailScalarFieldEnum]
128
+
129
+
130
+ export const SortOrder = {
131
+ asc: 'asc',
132
+ desc: 'desc'
133
+ } as const
134
+
135
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
136
+
137
+
138
+ export const UserOrderByRelevanceFieldEnum = {
139
+ id: 'id',
140
+ prefix: 'prefix'
141
+ } as const
142
+
143
+ export type UserOrderByRelevanceFieldEnum = (typeof UserOrderByRelevanceFieldEnum)[keyof typeof UserOrderByRelevanceFieldEnum]
144
+
145
+
146
+ export const NullsOrder = {
147
+ first: 'first',
148
+ last: 'last'
149
+ } as const
150
+
151
+ export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]
152
+
153
+
154
+ export const EventOrderByRelevanceFieldEnum = {
155
+ id: 'id',
156
+ orderId: 'orderId',
157
+ userId: 'userId',
158
+ locationId: 'locationId'
159
+ } as const
160
+
161
+ export type EventOrderByRelevanceFieldEnum = (typeof EventOrderByRelevanceFieldEnum)[keyof typeof EventOrderByRelevanceFieldEnum]
162
+
163
+
164
+ export const LocationOrderByRelevanceFieldEnum = {
165
+ id: 'id',
166
+ name: 'name',
167
+ address: 'address',
168
+ emoji: 'emoji'
169
+ } as const
170
+
171
+ export type LocationOrderByRelevanceFieldEnum = (typeof LocationOrderByRelevanceFieldEnum)[keyof typeof LocationOrderByRelevanceFieldEnum]
172
+
173
+
174
+ export const MailOrderByRelevanceFieldEnum = {
175
+ id: 'id',
176
+ raw: 'raw',
177
+ error: 'error',
178
+ errorId: 'errorId',
179
+ version: 'version'
180
+ } as const
181
+
182
+ export type MailOrderByRelevanceFieldEnum = (typeof MailOrderByRelevanceFieldEnum)[keyof typeof MailOrderByRelevanceFieldEnum]
183
+