@naisys/hub-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.
Files changed (29) hide show
  1. package/package.json +6 -4
  2. package/dist/dbConfig.d.ts +0 -2
  3. package/dist/generated/prisma/browser.d.ts +0 -80
  4. package/dist/generated/prisma/client.d.ts +0 -99
  5. package/dist/generated/prisma/commonInputTypes.d.ts +0 -758
  6. package/dist/generated/prisma/enums.d.ts +0 -57
  7. package/dist/generated/prisma/internal/class.d.ts +0 -285
  8. package/dist/generated/prisma/internal/prismaNamespace.d.ts +0 -1777
  9. package/dist/generated/prisma/internal/prismaNamespaceBrowser.d.ts +0 -223
  10. package/dist/generated/prisma/models/attachments.d.ts +0 -1624
  11. package/dist/generated/prisma/models/config_revisions.d.ts +0 -1320
  12. package/dist/generated/prisma/models/context_log.d.ts +0 -1889
  13. package/dist/generated/prisma/models/costs.d.ts +0 -1834
  14. package/dist/generated/prisma/models/hosts.d.ts +0 -1892
  15. package/dist/generated/prisma/models/mail_attachments.d.ts +0 -1244
  16. package/dist/generated/prisma/models/mail_messages.d.ts +0 -1721
  17. package/dist/generated/prisma/models/mail_recipients.d.ts +0 -1409
  18. package/dist/generated/prisma/models/models.d.ts +0 -1175
  19. package/dist/generated/prisma/models/run_session.d.ts +0 -1894
  20. package/dist/generated/prisma/models/schema_version.d.ts +0 -984
  21. package/dist/generated/prisma/models/user_hosts.d.ts +0 -1244
  22. package/dist/generated/prisma/models/user_notifications.d.ts +0 -1543
  23. package/dist/generated/prisma/models/users.d.ts +0 -3229
  24. package/dist/generated/prisma/models/variables.d.ts +0 -1052
  25. package/dist/generated/prisma/models.d.ts +0 -17
  26. package/dist/hubDatabaseService.d.ts +0 -7
  27. package/dist/hubSessionService.d.ts +0 -41
  28. package/dist/index.d.ts +0 -8
  29. package/dist/prismaClient.d.ts +0 -7
@@ -1,984 +0,0 @@
1
- import type * as runtime from "@prisma/client/runtime/client";
2
- import type * as Prisma from "../internal/prismaNamespace.js";
3
- /**
4
- * Model schema_version
5
- *
6
- */
7
- export type schema_versionModel = runtime.Types.Result.DefaultSelection<Prisma.$schema_versionPayload>;
8
- export type AggregateSchema_version = {
9
- _count: Schema_versionCountAggregateOutputType | null;
10
- _avg: Schema_versionAvgAggregateOutputType | null;
11
- _sum: Schema_versionSumAggregateOutputType | null;
12
- _min: Schema_versionMinAggregateOutputType | null;
13
- _max: Schema_versionMaxAggregateOutputType | null;
14
- };
15
- export type Schema_versionAvgAggregateOutputType = {
16
- id: number | null;
17
- version: number | null;
18
- };
19
- export type Schema_versionSumAggregateOutputType = {
20
- id: number | null;
21
- version: number | null;
22
- };
23
- export type Schema_versionMinAggregateOutputType = {
24
- id: number | null;
25
- version: number | null;
26
- updated: Date | null;
27
- };
28
- export type Schema_versionMaxAggregateOutputType = {
29
- id: number | null;
30
- version: number | null;
31
- updated: Date | null;
32
- };
33
- export type Schema_versionCountAggregateOutputType = {
34
- id: number;
35
- version: number;
36
- updated: number;
37
- _all: number;
38
- };
39
- export type Schema_versionAvgAggregateInputType = {
40
- id?: true;
41
- version?: true;
42
- };
43
- export type Schema_versionSumAggregateInputType = {
44
- id?: true;
45
- version?: true;
46
- };
47
- export type Schema_versionMinAggregateInputType = {
48
- id?: true;
49
- version?: true;
50
- updated?: true;
51
- };
52
- export type Schema_versionMaxAggregateInputType = {
53
- id?: true;
54
- version?: true;
55
- updated?: true;
56
- };
57
- export type Schema_versionCountAggregateInputType = {
58
- id?: true;
59
- version?: true;
60
- updated?: true;
61
- _all?: true;
62
- };
63
- export type Schema_versionAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
64
- /**
65
- * Filter which schema_version to aggregate.
66
- */
67
- where?: Prisma.schema_versionWhereInput;
68
- /**
69
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
70
- *
71
- * Determine the order of schema_versions to fetch.
72
- */
73
- orderBy?: Prisma.schema_versionOrderByWithRelationInput | Prisma.schema_versionOrderByWithRelationInput[];
74
- /**
75
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
76
- *
77
- * Sets the start position
78
- */
79
- cursor?: Prisma.schema_versionWhereUniqueInput;
80
- /**
81
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
82
- *
83
- * Take `±n` schema_versions from the position of the cursor.
84
- */
85
- take?: number;
86
- /**
87
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
88
- *
89
- * Skip the first `n` schema_versions.
90
- */
91
- skip?: number;
92
- /**
93
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
94
- *
95
- * Count returned schema_versions
96
- **/
97
- _count?: true | Schema_versionCountAggregateInputType;
98
- /**
99
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
100
- *
101
- * Select which fields to average
102
- **/
103
- _avg?: Schema_versionAvgAggregateInputType;
104
- /**
105
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
106
- *
107
- * Select which fields to sum
108
- **/
109
- _sum?: Schema_versionSumAggregateInputType;
110
- /**
111
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
112
- *
113
- * Select which fields to find the minimum value
114
- **/
115
- _min?: Schema_versionMinAggregateInputType;
116
- /**
117
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
118
- *
119
- * Select which fields to find the maximum value
120
- **/
121
- _max?: Schema_versionMaxAggregateInputType;
122
- };
123
- export type GetSchema_versionAggregateType<T extends Schema_versionAggregateArgs> = {
124
- [P in keyof T & keyof AggregateSchema_version]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateSchema_version[P]> : Prisma.GetScalarType<T[P], AggregateSchema_version[P]>;
125
- };
126
- export type schema_versionGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
127
- where?: Prisma.schema_versionWhereInput;
128
- orderBy?: Prisma.schema_versionOrderByWithAggregationInput | Prisma.schema_versionOrderByWithAggregationInput[];
129
- by: Prisma.Schema_versionScalarFieldEnum[] | Prisma.Schema_versionScalarFieldEnum;
130
- having?: Prisma.schema_versionScalarWhereWithAggregatesInput;
131
- take?: number;
132
- skip?: number;
133
- _count?: Schema_versionCountAggregateInputType | true;
134
- _avg?: Schema_versionAvgAggregateInputType;
135
- _sum?: Schema_versionSumAggregateInputType;
136
- _min?: Schema_versionMinAggregateInputType;
137
- _max?: Schema_versionMaxAggregateInputType;
138
- };
139
- export type Schema_versionGroupByOutputType = {
140
- id: number;
141
- version: number;
142
- updated: Date;
143
- _count: Schema_versionCountAggregateOutputType | null;
144
- _avg: Schema_versionAvgAggregateOutputType | null;
145
- _sum: Schema_versionSumAggregateOutputType | null;
146
- _min: Schema_versionMinAggregateOutputType | null;
147
- _max: Schema_versionMaxAggregateOutputType | null;
148
- };
149
- export type GetSchema_versionGroupByPayload<T extends schema_versionGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<Schema_versionGroupByOutputType, T['by']> & {
150
- [P in ((keyof T) & (keyof Schema_versionGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], Schema_versionGroupByOutputType[P]> : Prisma.GetScalarType<T[P], Schema_versionGroupByOutputType[P]>;
151
- }>>;
152
- export type schema_versionWhereInput = {
153
- AND?: Prisma.schema_versionWhereInput | Prisma.schema_versionWhereInput[];
154
- OR?: Prisma.schema_versionWhereInput[];
155
- NOT?: Prisma.schema_versionWhereInput | Prisma.schema_versionWhereInput[];
156
- id?: Prisma.IntFilter<"schema_version"> | number;
157
- version?: Prisma.IntFilter<"schema_version"> | number;
158
- updated?: Prisma.DateTimeFilter<"schema_version"> | Date | string;
159
- };
160
- export type schema_versionOrderByWithRelationInput = {
161
- id?: Prisma.SortOrder;
162
- version?: Prisma.SortOrder;
163
- updated?: Prisma.SortOrder;
164
- };
165
- export type schema_versionWhereUniqueInput = Prisma.AtLeast<{
166
- id?: number;
167
- version?: number;
168
- AND?: Prisma.schema_versionWhereInput | Prisma.schema_versionWhereInput[];
169
- OR?: Prisma.schema_versionWhereInput[];
170
- NOT?: Prisma.schema_versionWhereInput | Prisma.schema_versionWhereInput[];
171
- updated?: Prisma.DateTimeFilter<"schema_version"> | Date | string;
172
- }, "id" | "version">;
173
- export type schema_versionOrderByWithAggregationInput = {
174
- id?: Prisma.SortOrder;
175
- version?: Prisma.SortOrder;
176
- updated?: Prisma.SortOrder;
177
- _count?: Prisma.schema_versionCountOrderByAggregateInput;
178
- _avg?: Prisma.schema_versionAvgOrderByAggregateInput;
179
- _max?: Prisma.schema_versionMaxOrderByAggregateInput;
180
- _min?: Prisma.schema_versionMinOrderByAggregateInput;
181
- _sum?: Prisma.schema_versionSumOrderByAggregateInput;
182
- };
183
- export type schema_versionScalarWhereWithAggregatesInput = {
184
- AND?: Prisma.schema_versionScalarWhereWithAggregatesInput | Prisma.schema_versionScalarWhereWithAggregatesInput[];
185
- OR?: Prisma.schema_versionScalarWhereWithAggregatesInput[];
186
- NOT?: Prisma.schema_versionScalarWhereWithAggregatesInput | Prisma.schema_versionScalarWhereWithAggregatesInput[];
187
- id?: Prisma.IntWithAggregatesFilter<"schema_version"> | number;
188
- version?: Prisma.IntWithAggregatesFilter<"schema_version"> | number;
189
- updated?: Prisma.DateTimeWithAggregatesFilter<"schema_version"> | Date | string;
190
- };
191
- export type schema_versionCreateInput = {
192
- id?: number;
193
- version: number;
194
- updated: Date | string;
195
- };
196
- export type schema_versionUncheckedCreateInput = {
197
- id?: number;
198
- version: number;
199
- updated: Date | string;
200
- };
201
- export type schema_versionUpdateInput = {
202
- id?: Prisma.IntFieldUpdateOperationsInput | number;
203
- version?: Prisma.IntFieldUpdateOperationsInput | number;
204
- updated?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
205
- };
206
- export type schema_versionUncheckedUpdateInput = {
207
- id?: Prisma.IntFieldUpdateOperationsInput | number;
208
- version?: Prisma.IntFieldUpdateOperationsInput | number;
209
- updated?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
210
- };
211
- export type schema_versionCreateManyInput = {
212
- id?: number;
213
- version: number;
214
- updated: Date | string;
215
- };
216
- export type schema_versionUpdateManyMutationInput = {
217
- id?: Prisma.IntFieldUpdateOperationsInput | number;
218
- version?: Prisma.IntFieldUpdateOperationsInput | number;
219
- updated?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
220
- };
221
- export type schema_versionUncheckedUpdateManyInput = {
222
- id?: Prisma.IntFieldUpdateOperationsInput | number;
223
- version?: Prisma.IntFieldUpdateOperationsInput | number;
224
- updated?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
225
- };
226
- export type schema_versionCountOrderByAggregateInput = {
227
- id?: Prisma.SortOrder;
228
- version?: Prisma.SortOrder;
229
- updated?: Prisma.SortOrder;
230
- };
231
- export type schema_versionAvgOrderByAggregateInput = {
232
- id?: Prisma.SortOrder;
233
- version?: Prisma.SortOrder;
234
- };
235
- export type schema_versionMaxOrderByAggregateInput = {
236
- id?: Prisma.SortOrder;
237
- version?: Prisma.SortOrder;
238
- updated?: Prisma.SortOrder;
239
- };
240
- export type schema_versionMinOrderByAggregateInput = {
241
- id?: Prisma.SortOrder;
242
- version?: Prisma.SortOrder;
243
- updated?: Prisma.SortOrder;
244
- };
245
- export type schema_versionSumOrderByAggregateInput = {
246
- id?: Prisma.SortOrder;
247
- version?: Prisma.SortOrder;
248
- };
249
- export type schema_versionSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
250
- id?: boolean;
251
- version?: boolean;
252
- updated?: boolean;
253
- }, ExtArgs["result"]["schema_version"]>;
254
- export type schema_versionSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
255
- id?: boolean;
256
- version?: boolean;
257
- updated?: boolean;
258
- }, ExtArgs["result"]["schema_version"]>;
259
- export type schema_versionSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
260
- id?: boolean;
261
- version?: boolean;
262
- updated?: boolean;
263
- }, ExtArgs["result"]["schema_version"]>;
264
- export type schema_versionSelectScalar = {
265
- id?: boolean;
266
- version?: boolean;
267
- updated?: boolean;
268
- };
269
- export type schema_versionOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "version" | "updated", ExtArgs["result"]["schema_version"]>;
270
- export type $schema_versionPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
271
- name: "schema_version";
272
- objects: {};
273
- scalars: runtime.Types.Extensions.GetPayloadResult<{
274
- id: number;
275
- version: number;
276
- updated: Date;
277
- }, ExtArgs["result"]["schema_version"]>;
278
- composites: {};
279
- };
280
- export type schema_versionGetPayload<S extends boolean | null | undefined | schema_versionDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$schema_versionPayload, S>;
281
- export type schema_versionCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<schema_versionFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
282
- select?: Schema_versionCountAggregateInputType | true;
283
- };
284
- export interface schema_versionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
285
- [K: symbol]: {
286
- types: Prisma.TypeMap<ExtArgs>['model']['schema_version'];
287
- meta: {
288
- name: 'schema_version';
289
- };
290
- };
291
- /**
292
- * Find zero or one Schema_version that matches the filter.
293
- * @param {schema_versionFindUniqueArgs} args - Arguments to find a Schema_version
294
- * @example
295
- * // Get one Schema_version
296
- * const schema_version = await prisma.schema_version.findUnique({
297
- * where: {
298
- * // ... provide filter here
299
- * }
300
- * })
301
- */
302
- findUnique<T extends schema_versionFindUniqueArgs>(args: Prisma.SelectSubset<T, schema_versionFindUniqueArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
303
- /**
304
- * Find one Schema_version that matches the filter or throw an error with `error.code='P2025'`
305
- * if no matches were found.
306
- * @param {schema_versionFindUniqueOrThrowArgs} args - Arguments to find a Schema_version
307
- * @example
308
- * // Get one Schema_version
309
- * const schema_version = await prisma.schema_version.findUniqueOrThrow({
310
- * where: {
311
- * // ... provide filter here
312
- * }
313
- * })
314
- */
315
- findUniqueOrThrow<T extends schema_versionFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, schema_versionFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
316
- /**
317
- * Find the first Schema_version that matches the filter.
318
- * Note, that providing `undefined` is treated as the value not being there.
319
- * Read more here: https://pris.ly/d/null-undefined
320
- * @param {schema_versionFindFirstArgs} args - Arguments to find a Schema_version
321
- * @example
322
- * // Get one Schema_version
323
- * const schema_version = await prisma.schema_version.findFirst({
324
- * where: {
325
- * // ... provide filter here
326
- * }
327
- * })
328
- */
329
- findFirst<T extends schema_versionFindFirstArgs>(args?: Prisma.SelectSubset<T, schema_versionFindFirstArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
330
- /**
331
- * Find the first Schema_version that matches the filter or
332
- * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
333
- * Note, that providing `undefined` is treated as the value not being there.
334
- * Read more here: https://pris.ly/d/null-undefined
335
- * @param {schema_versionFindFirstOrThrowArgs} args - Arguments to find a Schema_version
336
- * @example
337
- * // Get one Schema_version
338
- * const schema_version = await prisma.schema_version.findFirstOrThrow({
339
- * where: {
340
- * // ... provide filter here
341
- * }
342
- * })
343
- */
344
- findFirstOrThrow<T extends schema_versionFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, schema_versionFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
345
- /**
346
- * Find zero or more Schema_versions that matches the filter.
347
- * Note, that providing `undefined` is treated as the value not being there.
348
- * Read more here: https://pris.ly/d/null-undefined
349
- * @param {schema_versionFindManyArgs} args - Arguments to filter and select certain fields only.
350
- * @example
351
- * // Get all Schema_versions
352
- * const schema_versions = await prisma.schema_version.findMany()
353
- *
354
- * // Get first 10 Schema_versions
355
- * const schema_versions = await prisma.schema_version.findMany({ take: 10 })
356
- *
357
- * // Only select the `id`
358
- * const schema_versionWithIdOnly = await prisma.schema_version.findMany({ select: { id: true } })
359
- *
360
- */
361
- findMany<T extends schema_versionFindManyArgs>(args?: Prisma.SelectSubset<T, schema_versionFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
362
- /**
363
- * Create a Schema_version.
364
- * @param {schema_versionCreateArgs} args - Arguments to create a Schema_version.
365
- * @example
366
- * // Create one Schema_version
367
- * const Schema_version = await prisma.schema_version.create({
368
- * data: {
369
- * // ... data to create a Schema_version
370
- * }
371
- * })
372
- *
373
- */
374
- create<T extends schema_versionCreateArgs>(args: Prisma.SelectSubset<T, schema_versionCreateArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
375
- /**
376
- * Create many Schema_versions.
377
- * @param {schema_versionCreateManyArgs} args - Arguments to create many Schema_versions.
378
- * @example
379
- * // Create many Schema_versions
380
- * const schema_version = await prisma.schema_version.createMany({
381
- * data: [
382
- * // ... provide data here
383
- * ]
384
- * })
385
- *
386
- */
387
- createMany<T extends schema_versionCreateManyArgs>(args?: Prisma.SelectSubset<T, schema_versionCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
388
- /**
389
- * Create many Schema_versions and returns the data saved in the database.
390
- * @param {schema_versionCreateManyAndReturnArgs} args - Arguments to create many Schema_versions.
391
- * @example
392
- * // Create many Schema_versions
393
- * const schema_version = await prisma.schema_version.createManyAndReturn({
394
- * data: [
395
- * // ... provide data here
396
- * ]
397
- * })
398
- *
399
- * // Create many Schema_versions and only return the `id`
400
- * const schema_versionWithIdOnly = await prisma.schema_version.createManyAndReturn({
401
- * select: { id: true },
402
- * data: [
403
- * // ... provide data here
404
- * ]
405
- * })
406
- * Note, that providing `undefined` is treated as the value not being there.
407
- * Read more here: https://pris.ly/d/null-undefined
408
- *
409
- */
410
- createManyAndReturn<T extends schema_versionCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, schema_versionCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
411
- /**
412
- * Delete a Schema_version.
413
- * @param {schema_versionDeleteArgs} args - Arguments to delete one Schema_version.
414
- * @example
415
- * // Delete one Schema_version
416
- * const Schema_version = await prisma.schema_version.delete({
417
- * where: {
418
- * // ... filter to delete one Schema_version
419
- * }
420
- * })
421
- *
422
- */
423
- delete<T extends schema_versionDeleteArgs>(args: Prisma.SelectSubset<T, schema_versionDeleteArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
424
- /**
425
- * Update one Schema_version.
426
- * @param {schema_versionUpdateArgs} args - Arguments to update one Schema_version.
427
- * @example
428
- * // Update one Schema_version
429
- * const schema_version = await prisma.schema_version.update({
430
- * where: {
431
- * // ... provide filter here
432
- * },
433
- * data: {
434
- * // ... provide data here
435
- * }
436
- * })
437
- *
438
- */
439
- update<T extends schema_versionUpdateArgs>(args: Prisma.SelectSubset<T, schema_versionUpdateArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
440
- /**
441
- * Delete zero or more Schema_versions.
442
- * @param {schema_versionDeleteManyArgs} args - Arguments to filter Schema_versions to delete.
443
- * @example
444
- * // Delete a few Schema_versions
445
- * const { count } = await prisma.schema_version.deleteMany({
446
- * where: {
447
- * // ... provide filter here
448
- * }
449
- * })
450
- *
451
- */
452
- deleteMany<T extends schema_versionDeleteManyArgs>(args?: Prisma.SelectSubset<T, schema_versionDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
453
- /**
454
- * Update zero or more Schema_versions.
455
- * Note, that providing `undefined` is treated as the value not being there.
456
- * Read more here: https://pris.ly/d/null-undefined
457
- * @param {schema_versionUpdateManyArgs} args - Arguments to update one or more rows.
458
- * @example
459
- * // Update many Schema_versions
460
- * const schema_version = await prisma.schema_version.updateMany({
461
- * where: {
462
- * // ... provide filter here
463
- * },
464
- * data: {
465
- * // ... provide data here
466
- * }
467
- * })
468
- *
469
- */
470
- updateMany<T extends schema_versionUpdateManyArgs>(args: Prisma.SelectSubset<T, schema_versionUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
471
- /**
472
- * Update zero or more Schema_versions and returns the data updated in the database.
473
- * @param {schema_versionUpdateManyAndReturnArgs} args - Arguments to update many Schema_versions.
474
- * @example
475
- * // Update many Schema_versions
476
- * const schema_version = await prisma.schema_version.updateManyAndReturn({
477
- * where: {
478
- * // ... provide filter here
479
- * },
480
- * data: [
481
- * // ... provide data here
482
- * ]
483
- * })
484
- *
485
- * // Update zero or more Schema_versions and only return the `id`
486
- * const schema_versionWithIdOnly = await prisma.schema_version.updateManyAndReturn({
487
- * select: { id: true },
488
- * where: {
489
- * // ... provide filter here
490
- * },
491
- * data: [
492
- * // ... provide data here
493
- * ]
494
- * })
495
- * Note, that providing `undefined` is treated as the value not being there.
496
- * Read more here: https://pris.ly/d/null-undefined
497
- *
498
- */
499
- updateManyAndReturn<T extends schema_versionUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, schema_versionUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
500
- /**
501
- * Create or update one Schema_version.
502
- * @param {schema_versionUpsertArgs} args - Arguments to update or create a Schema_version.
503
- * @example
504
- * // Update or create a Schema_version
505
- * const schema_version = await prisma.schema_version.upsert({
506
- * create: {
507
- * // ... data to create a Schema_version
508
- * },
509
- * update: {
510
- * // ... in case it already exists, update
511
- * },
512
- * where: {
513
- * // ... the filter for the Schema_version we want to update
514
- * }
515
- * })
516
- */
517
- upsert<T extends schema_versionUpsertArgs>(args: Prisma.SelectSubset<T, schema_versionUpsertArgs<ExtArgs>>): Prisma.Prisma__schema_versionClient<runtime.Types.Result.GetResult<Prisma.$schema_versionPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
518
- /**
519
- * Count the number of Schema_versions.
520
- * Note, that providing `undefined` is treated as the value not being there.
521
- * Read more here: https://pris.ly/d/null-undefined
522
- * @param {schema_versionCountArgs} args - Arguments to filter Schema_versions to count.
523
- * @example
524
- * // Count the number of Schema_versions
525
- * const count = await prisma.schema_version.count({
526
- * where: {
527
- * // ... the filter for the Schema_versions we want to count
528
- * }
529
- * })
530
- **/
531
- count<T extends schema_versionCountArgs>(args?: Prisma.Subset<T, schema_versionCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], Schema_versionCountAggregateOutputType> : number>;
532
- /**
533
- * Allows you to perform aggregations operations on a Schema_version.
534
- * Note, that providing `undefined` is treated as the value not being there.
535
- * Read more here: https://pris.ly/d/null-undefined
536
- * @param {Schema_versionAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
537
- * @example
538
- * // Ordered by age ascending
539
- * // Where email contains prisma.io
540
- * // Limited to the 10 users
541
- * const aggregations = await prisma.user.aggregate({
542
- * _avg: {
543
- * age: true,
544
- * },
545
- * where: {
546
- * email: {
547
- * contains: "prisma.io",
548
- * },
549
- * },
550
- * orderBy: {
551
- * age: "asc",
552
- * },
553
- * take: 10,
554
- * })
555
- **/
556
- aggregate<T extends Schema_versionAggregateArgs>(args: Prisma.Subset<T, Schema_versionAggregateArgs>): Prisma.PrismaPromise<GetSchema_versionAggregateType<T>>;
557
- /**
558
- * Group by Schema_version.
559
- * Note, that providing `undefined` is treated as the value not being there.
560
- * Read more here: https://pris.ly/d/null-undefined
561
- * @param {schema_versionGroupByArgs} args - Group by arguments.
562
- * @example
563
- * // Group by city, order by createdAt, get count
564
- * const result = await prisma.user.groupBy({
565
- * by: ['city', 'createdAt'],
566
- * orderBy: {
567
- * createdAt: true
568
- * },
569
- * _count: {
570
- * _all: true
571
- * },
572
- * })
573
- *
574
- **/
575
- groupBy<T extends schema_versionGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
576
- orderBy: schema_versionGroupByArgs['orderBy'];
577
- } : {
578
- orderBy?: schema_versionGroupByArgs['orderBy'];
579
- }, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
580
- [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
581
- Error,
582
- 'Field ',
583
- P,
584
- ` in "having" needs to be provided in "by"`
585
- ];
586
- }[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
587
- [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
588
- }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
589
- [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
590
- }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
591
- [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
592
- }[OrderFields]>(args: Prisma.SubsetIntersection<T, schema_versionGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetSchema_versionGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
593
- /**
594
- * Fields of the schema_version model
595
- */
596
- readonly fields: schema_versionFieldRefs;
597
- }
598
- /**
599
- * The delegate class that acts as a "Promise-like" for schema_version.
600
- * Why is this prefixed with `Prisma__`?
601
- * Because we want to prevent naming conflicts as mentioned in
602
- * https://github.com/prisma/prisma-client-js/issues/707
603
- */
604
- export interface Prisma__schema_versionClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
605
- readonly [Symbol.toStringTag]: "PrismaPromise";
606
- /**
607
- * Attaches callbacks for the resolution and/or rejection of the Promise.
608
- * @param onfulfilled The callback to execute when the Promise is resolved.
609
- * @param onrejected The callback to execute when the Promise is rejected.
610
- * @returns A Promise for the completion of which ever callback is executed.
611
- */
612
- then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
613
- /**
614
- * Attaches a callback for only the rejection of the Promise.
615
- * @param onrejected The callback to execute when the Promise is rejected.
616
- * @returns A Promise for the completion of the callback.
617
- */
618
- catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
619
- /**
620
- * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
621
- * resolved value cannot be modified from the callback.
622
- * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
623
- * @returns A Promise for the completion of the callback.
624
- */
625
- finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
626
- }
627
- /**
628
- * Fields of the schema_version model
629
- */
630
- export interface schema_versionFieldRefs {
631
- readonly id: Prisma.FieldRef<"schema_version", 'Int'>;
632
- readonly version: Prisma.FieldRef<"schema_version", 'Int'>;
633
- readonly updated: Prisma.FieldRef<"schema_version", 'DateTime'>;
634
- }
635
- /**
636
- * schema_version findUnique
637
- */
638
- export type schema_versionFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
639
- /**
640
- * Select specific fields to fetch from the schema_version
641
- */
642
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
643
- /**
644
- * Omit specific fields from the schema_version
645
- */
646
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
647
- /**
648
- * Filter, which schema_version to fetch.
649
- */
650
- where: Prisma.schema_versionWhereUniqueInput;
651
- };
652
- /**
653
- * schema_version findUniqueOrThrow
654
- */
655
- export type schema_versionFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
656
- /**
657
- * Select specific fields to fetch from the schema_version
658
- */
659
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
660
- /**
661
- * Omit specific fields from the schema_version
662
- */
663
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
664
- /**
665
- * Filter, which schema_version to fetch.
666
- */
667
- where: Prisma.schema_versionWhereUniqueInput;
668
- };
669
- /**
670
- * schema_version findFirst
671
- */
672
- export type schema_versionFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
673
- /**
674
- * Select specific fields to fetch from the schema_version
675
- */
676
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
677
- /**
678
- * Omit specific fields from the schema_version
679
- */
680
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
681
- /**
682
- * Filter, which schema_version to fetch.
683
- */
684
- where?: Prisma.schema_versionWhereInput;
685
- /**
686
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
687
- *
688
- * Determine the order of schema_versions to fetch.
689
- */
690
- orderBy?: Prisma.schema_versionOrderByWithRelationInput | Prisma.schema_versionOrderByWithRelationInput[];
691
- /**
692
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
693
- *
694
- * Sets the position for searching for schema_versions.
695
- */
696
- cursor?: Prisma.schema_versionWhereUniqueInput;
697
- /**
698
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
699
- *
700
- * Take `±n` schema_versions from the position of the cursor.
701
- */
702
- take?: number;
703
- /**
704
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
705
- *
706
- * Skip the first `n` schema_versions.
707
- */
708
- skip?: number;
709
- /**
710
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
711
- *
712
- * Filter by unique combinations of schema_versions.
713
- */
714
- distinct?: Prisma.Schema_versionScalarFieldEnum | Prisma.Schema_versionScalarFieldEnum[];
715
- };
716
- /**
717
- * schema_version findFirstOrThrow
718
- */
719
- export type schema_versionFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
720
- /**
721
- * Select specific fields to fetch from the schema_version
722
- */
723
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
724
- /**
725
- * Omit specific fields from the schema_version
726
- */
727
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
728
- /**
729
- * Filter, which schema_version to fetch.
730
- */
731
- where?: Prisma.schema_versionWhereInput;
732
- /**
733
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
734
- *
735
- * Determine the order of schema_versions to fetch.
736
- */
737
- orderBy?: Prisma.schema_versionOrderByWithRelationInput | Prisma.schema_versionOrderByWithRelationInput[];
738
- /**
739
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
740
- *
741
- * Sets the position for searching for schema_versions.
742
- */
743
- cursor?: Prisma.schema_versionWhereUniqueInput;
744
- /**
745
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
746
- *
747
- * Take `±n` schema_versions from the position of the cursor.
748
- */
749
- take?: number;
750
- /**
751
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
752
- *
753
- * Skip the first `n` schema_versions.
754
- */
755
- skip?: number;
756
- /**
757
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
758
- *
759
- * Filter by unique combinations of schema_versions.
760
- */
761
- distinct?: Prisma.Schema_versionScalarFieldEnum | Prisma.Schema_versionScalarFieldEnum[];
762
- };
763
- /**
764
- * schema_version findMany
765
- */
766
- export type schema_versionFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
767
- /**
768
- * Select specific fields to fetch from the schema_version
769
- */
770
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
771
- /**
772
- * Omit specific fields from the schema_version
773
- */
774
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
775
- /**
776
- * Filter, which schema_versions to fetch.
777
- */
778
- where?: Prisma.schema_versionWhereInput;
779
- /**
780
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
781
- *
782
- * Determine the order of schema_versions to fetch.
783
- */
784
- orderBy?: Prisma.schema_versionOrderByWithRelationInput | Prisma.schema_versionOrderByWithRelationInput[];
785
- /**
786
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
787
- *
788
- * Sets the position for listing schema_versions.
789
- */
790
- cursor?: Prisma.schema_versionWhereUniqueInput;
791
- /**
792
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
793
- *
794
- * Take `±n` schema_versions from the position of the cursor.
795
- */
796
- take?: number;
797
- /**
798
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
799
- *
800
- * Skip the first `n` schema_versions.
801
- */
802
- skip?: number;
803
- /**
804
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
805
- *
806
- * Filter by unique combinations of schema_versions.
807
- */
808
- distinct?: Prisma.Schema_versionScalarFieldEnum | Prisma.Schema_versionScalarFieldEnum[];
809
- };
810
- /**
811
- * schema_version create
812
- */
813
- export type schema_versionCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
814
- /**
815
- * Select specific fields to fetch from the schema_version
816
- */
817
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
818
- /**
819
- * Omit specific fields from the schema_version
820
- */
821
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
822
- /**
823
- * The data needed to create a schema_version.
824
- */
825
- data: Prisma.XOR<Prisma.schema_versionCreateInput, Prisma.schema_versionUncheckedCreateInput>;
826
- };
827
- /**
828
- * schema_version createMany
829
- */
830
- export type schema_versionCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
831
- /**
832
- * The data used to create many schema_versions.
833
- */
834
- data: Prisma.schema_versionCreateManyInput | Prisma.schema_versionCreateManyInput[];
835
- };
836
- /**
837
- * schema_version createManyAndReturn
838
- */
839
- export type schema_versionCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
840
- /**
841
- * Select specific fields to fetch from the schema_version
842
- */
843
- select?: Prisma.schema_versionSelectCreateManyAndReturn<ExtArgs> | null;
844
- /**
845
- * Omit specific fields from the schema_version
846
- */
847
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
848
- /**
849
- * The data used to create many schema_versions.
850
- */
851
- data: Prisma.schema_versionCreateManyInput | Prisma.schema_versionCreateManyInput[];
852
- };
853
- /**
854
- * schema_version update
855
- */
856
- export type schema_versionUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
857
- /**
858
- * Select specific fields to fetch from the schema_version
859
- */
860
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
861
- /**
862
- * Omit specific fields from the schema_version
863
- */
864
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
865
- /**
866
- * The data needed to update a schema_version.
867
- */
868
- data: Prisma.XOR<Prisma.schema_versionUpdateInput, Prisma.schema_versionUncheckedUpdateInput>;
869
- /**
870
- * Choose, which schema_version to update.
871
- */
872
- where: Prisma.schema_versionWhereUniqueInput;
873
- };
874
- /**
875
- * schema_version updateMany
876
- */
877
- export type schema_versionUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
878
- /**
879
- * The data used to update schema_versions.
880
- */
881
- data: Prisma.XOR<Prisma.schema_versionUpdateManyMutationInput, Prisma.schema_versionUncheckedUpdateManyInput>;
882
- /**
883
- * Filter which schema_versions to update
884
- */
885
- where?: Prisma.schema_versionWhereInput;
886
- /**
887
- * Limit how many schema_versions to update.
888
- */
889
- limit?: number;
890
- };
891
- /**
892
- * schema_version updateManyAndReturn
893
- */
894
- export type schema_versionUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
895
- /**
896
- * Select specific fields to fetch from the schema_version
897
- */
898
- select?: Prisma.schema_versionSelectUpdateManyAndReturn<ExtArgs> | null;
899
- /**
900
- * Omit specific fields from the schema_version
901
- */
902
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
903
- /**
904
- * The data used to update schema_versions.
905
- */
906
- data: Prisma.XOR<Prisma.schema_versionUpdateManyMutationInput, Prisma.schema_versionUncheckedUpdateManyInput>;
907
- /**
908
- * Filter which schema_versions to update
909
- */
910
- where?: Prisma.schema_versionWhereInput;
911
- /**
912
- * Limit how many schema_versions to update.
913
- */
914
- limit?: number;
915
- };
916
- /**
917
- * schema_version upsert
918
- */
919
- export type schema_versionUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
920
- /**
921
- * Select specific fields to fetch from the schema_version
922
- */
923
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
924
- /**
925
- * Omit specific fields from the schema_version
926
- */
927
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
928
- /**
929
- * The filter to search for the schema_version to update in case it exists.
930
- */
931
- where: Prisma.schema_versionWhereUniqueInput;
932
- /**
933
- * In case the schema_version found by the `where` argument doesn't exist, create a new schema_version with this data.
934
- */
935
- create: Prisma.XOR<Prisma.schema_versionCreateInput, Prisma.schema_versionUncheckedCreateInput>;
936
- /**
937
- * In case the schema_version was found with the provided `where` argument, update it with this data.
938
- */
939
- update: Prisma.XOR<Prisma.schema_versionUpdateInput, Prisma.schema_versionUncheckedUpdateInput>;
940
- };
941
- /**
942
- * schema_version delete
943
- */
944
- export type schema_versionDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
945
- /**
946
- * Select specific fields to fetch from the schema_version
947
- */
948
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
949
- /**
950
- * Omit specific fields from the schema_version
951
- */
952
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
953
- /**
954
- * Filter which schema_version to delete.
955
- */
956
- where: Prisma.schema_versionWhereUniqueInput;
957
- };
958
- /**
959
- * schema_version deleteMany
960
- */
961
- export type schema_versionDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
962
- /**
963
- * Filter which schema_versions to delete
964
- */
965
- where?: Prisma.schema_versionWhereInput;
966
- /**
967
- * Limit how many schema_versions to delete.
968
- */
969
- limit?: number;
970
- };
971
- /**
972
- * schema_version without action
973
- */
974
- export type schema_versionDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
975
- /**
976
- * Select specific fields to fetch from the schema_version
977
- */
978
- select?: Prisma.schema_versionSelect<ExtArgs> | null;
979
- /**
980
- * Omit specific fields from the schema_version
981
- */
982
- omit?: Prisma.schema_versionOmit<ExtArgs> | null;
983
- };
984
- //# sourceMappingURL=schema_version.d.ts.map