@mframework/layer-shared 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1620 +0,0 @@
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 the `Account` model and its related types.
8
- *
9
- * 🟢 You can import this file directly.
10
- */
11
- import type * as runtime from "@prisma/client/runtime/client"
12
- import type * as $Enums from "../enums"
13
- import type * as Prisma from "../internal/prismaNamespace"
14
-
15
- /**
16
- * Model Account
17
- *
18
- */
19
- export type AccountModel = runtime.Types.Result.DefaultSelection<Prisma.$AccountPayload>
20
-
21
- export type AggregateAccount = {
22
- _count: AccountCountAggregateOutputType | null
23
- _min: AccountMinAggregateOutputType | null
24
- _max: AccountMaxAggregateOutputType | null
25
- }
26
-
27
- export type AccountMinAggregateOutputType = {
28
- id: string | null
29
- accountId: string | null
30
- providerId: string | null
31
- userId: string | null
32
- accessToken: string | null
33
- refreshToken: string | null
34
- idToken: string | null
35
- accessTokenExpiresAt: Date | null
36
- refreshTokenExpiresAt: Date | null
37
- scope: string | null
38
- password: string | null
39
- createdAt: Date | null
40
- updatedAt: Date | null
41
- }
42
-
43
- export type AccountMaxAggregateOutputType = {
44
- id: string | null
45
- accountId: string | null
46
- providerId: string | null
47
- userId: string | null
48
- accessToken: string | null
49
- refreshToken: string | null
50
- idToken: string | null
51
- accessTokenExpiresAt: Date | null
52
- refreshTokenExpiresAt: Date | null
53
- scope: string | null
54
- password: string | null
55
- createdAt: Date | null
56
- updatedAt: Date | null
57
- }
58
-
59
- export type AccountCountAggregateOutputType = {
60
- id: number
61
- accountId: number
62
- providerId: number
63
- userId: number
64
- accessToken: number
65
- refreshToken: number
66
- idToken: number
67
- accessTokenExpiresAt: number
68
- refreshTokenExpiresAt: number
69
- scope: number
70
- password: number
71
- createdAt: number
72
- updatedAt: number
73
- _all: number
74
- }
75
-
76
-
77
- export type AccountMinAggregateInputType = {
78
- id?: true
79
- accountId?: true
80
- providerId?: true
81
- userId?: true
82
- accessToken?: true
83
- refreshToken?: true
84
- idToken?: true
85
- accessTokenExpiresAt?: true
86
- refreshTokenExpiresAt?: true
87
- scope?: true
88
- password?: true
89
- createdAt?: true
90
- updatedAt?: true
91
- }
92
-
93
- export type AccountMaxAggregateInputType = {
94
- id?: true
95
- accountId?: true
96
- providerId?: true
97
- userId?: true
98
- accessToken?: true
99
- refreshToken?: true
100
- idToken?: true
101
- accessTokenExpiresAt?: true
102
- refreshTokenExpiresAt?: true
103
- scope?: true
104
- password?: true
105
- createdAt?: true
106
- updatedAt?: true
107
- }
108
-
109
- export type AccountCountAggregateInputType = {
110
- id?: true
111
- accountId?: true
112
- providerId?: true
113
- userId?: true
114
- accessToken?: true
115
- refreshToken?: true
116
- idToken?: true
117
- accessTokenExpiresAt?: true
118
- refreshTokenExpiresAt?: true
119
- scope?: true
120
- password?: true
121
- createdAt?: true
122
- updatedAt?: true
123
- _all?: true
124
- }
125
-
126
- export type AccountAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
127
- /**
128
- * Filter which Account to aggregate.
129
- */
130
- where?: Prisma.AccountWhereInput
131
- /**
132
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
133
- *
134
- * Determine the order of Accounts to fetch.
135
- */
136
- orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[]
137
- /**
138
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
139
- *
140
- * Sets the start position
141
- */
142
- cursor?: Prisma.AccountWhereUniqueInput
143
- /**
144
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
145
- *
146
- * Take `±n` Accounts from the position of the cursor.
147
- */
148
- take?: number
149
- /**
150
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
151
- *
152
- * Skip the first `n` Accounts.
153
- */
154
- skip?: number
155
- /**
156
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
157
- *
158
- * Count returned Accounts
159
- **/
160
- _count?: true | AccountCountAggregateInputType
161
- /**
162
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
163
- *
164
- * Select which fields to find the minimum value
165
- **/
166
- _min?: AccountMinAggregateInputType
167
- /**
168
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
169
- *
170
- * Select which fields to find the maximum value
171
- **/
172
- _max?: AccountMaxAggregateInputType
173
- }
174
-
175
- export type GetAccountAggregateType<T extends AccountAggregateArgs> = {
176
- [P in keyof T & keyof AggregateAccount]: P extends '_count' | 'count'
177
- ? T[P] extends true
178
- ? number
179
- : Prisma.GetScalarType<T[P], AggregateAccount[P]>
180
- : Prisma.GetScalarType<T[P], AggregateAccount[P]>
181
- }
182
-
183
-
184
-
185
-
186
- export type AccountGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
187
- where?: Prisma.AccountWhereInput
188
- orderBy?: Prisma.AccountOrderByWithAggregationInput | Prisma.AccountOrderByWithAggregationInput[]
189
- by: Prisma.AccountScalarFieldEnum[] | Prisma.AccountScalarFieldEnum
190
- having?: Prisma.AccountScalarWhereWithAggregatesInput
191
- take?: number
192
- skip?: number
193
- _count?: AccountCountAggregateInputType | true
194
- _min?: AccountMinAggregateInputType
195
- _max?: AccountMaxAggregateInputType
196
- }
197
-
198
- export type AccountGroupByOutputType = {
199
- id: string
200
- accountId: string
201
- providerId: string
202
- userId: string
203
- accessToken: string | null
204
- refreshToken: string | null
205
- idToken: string | null
206
- accessTokenExpiresAt: Date | null
207
- refreshTokenExpiresAt: Date | null
208
- scope: string | null
209
- password: string | null
210
- createdAt: Date | null
211
- updatedAt: Date | null
212
- _count: AccountCountAggregateOutputType | null
213
- _min: AccountMinAggregateOutputType | null
214
- _max: AccountMaxAggregateOutputType | null
215
- }
216
-
217
- type GetAccountGroupByPayload<T extends AccountGroupByArgs> = Prisma.PrismaPromise<
218
- Array<
219
- Prisma.PickEnumerable<AccountGroupByOutputType, T['by']> &
220
- {
221
- [P in ((keyof T) & (keyof AccountGroupByOutputType))]: P extends '_count'
222
- ? T[P] extends boolean
223
- ? number
224
- : Prisma.GetScalarType<T[P], AccountGroupByOutputType[P]>
225
- : Prisma.GetScalarType<T[P], AccountGroupByOutputType[P]>
226
- }
227
- >
228
- >
229
-
230
-
231
-
232
- export type AccountWhereInput = {
233
- AND?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[]
234
- OR?: Prisma.AccountWhereInput[]
235
- NOT?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[]
236
- id?: Prisma.StringFilter<"Account"> | string
237
- accountId?: Prisma.StringFilter<"Account"> | string
238
- providerId?: Prisma.StringFilter<"Account"> | string
239
- userId?: Prisma.StringFilter<"Account"> | string
240
- accessToken?: Prisma.StringNullableFilter<"Account"> | string | null
241
- refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null
242
- idToken?: Prisma.StringNullableFilter<"Account"> | string | null
243
- accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
244
- refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
245
- scope?: Prisma.StringNullableFilter<"Account"> | string | null
246
- password?: Prisma.StringNullableFilter<"Account"> | string | null
247
- createdAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
248
- updatedAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
249
- user?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>
250
- }
251
-
252
- export type AccountOrderByWithRelationInput = {
253
- id?: Prisma.SortOrder
254
- accountId?: Prisma.SortOrder
255
- providerId?: Prisma.SortOrder
256
- userId?: Prisma.SortOrder
257
- accessToken?: Prisma.SortOrderInput | Prisma.SortOrder
258
- refreshToken?: Prisma.SortOrderInput | Prisma.SortOrder
259
- idToken?: Prisma.SortOrderInput | Prisma.SortOrder
260
- accessTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder
261
- refreshTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder
262
- scope?: Prisma.SortOrderInput | Prisma.SortOrder
263
- password?: Prisma.SortOrderInput | Prisma.SortOrder
264
- createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
265
- updatedAt?: Prisma.SortOrderInput | Prisma.SortOrder
266
- user?: Prisma.UserOrderByWithRelationInput
267
- }
268
-
269
- export type AccountWhereUniqueInput = Prisma.AtLeast<{
270
- id?: string
271
- AND?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[]
272
- OR?: Prisma.AccountWhereInput[]
273
- NOT?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[]
274
- accountId?: Prisma.StringFilter<"Account"> | string
275
- providerId?: Prisma.StringFilter<"Account"> | string
276
- userId?: Prisma.StringFilter<"Account"> | string
277
- accessToken?: Prisma.StringNullableFilter<"Account"> | string | null
278
- refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null
279
- idToken?: Prisma.StringNullableFilter<"Account"> | string | null
280
- accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
281
- refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
282
- scope?: Prisma.StringNullableFilter<"Account"> | string | null
283
- password?: Prisma.StringNullableFilter<"Account"> | string | null
284
- createdAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
285
- updatedAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
286
- user?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>
287
- }, "id">
288
-
289
- export type AccountOrderByWithAggregationInput = {
290
- id?: Prisma.SortOrder
291
- accountId?: Prisma.SortOrder
292
- providerId?: Prisma.SortOrder
293
- userId?: Prisma.SortOrder
294
- accessToken?: Prisma.SortOrderInput | Prisma.SortOrder
295
- refreshToken?: Prisma.SortOrderInput | Prisma.SortOrder
296
- idToken?: Prisma.SortOrderInput | Prisma.SortOrder
297
- accessTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder
298
- refreshTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder
299
- scope?: Prisma.SortOrderInput | Prisma.SortOrder
300
- password?: Prisma.SortOrderInput | Prisma.SortOrder
301
- createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
302
- updatedAt?: Prisma.SortOrderInput | Prisma.SortOrder
303
- _count?: Prisma.AccountCountOrderByAggregateInput
304
- _max?: Prisma.AccountMaxOrderByAggregateInput
305
- _min?: Prisma.AccountMinOrderByAggregateInput
306
- }
307
-
308
- export type AccountScalarWhereWithAggregatesInput = {
309
- AND?: Prisma.AccountScalarWhereWithAggregatesInput | Prisma.AccountScalarWhereWithAggregatesInput[]
310
- OR?: Prisma.AccountScalarWhereWithAggregatesInput[]
311
- NOT?: Prisma.AccountScalarWhereWithAggregatesInput | Prisma.AccountScalarWhereWithAggregatesInput[]
312
- id?: Prisma.StringWithAggregatesFilter<"Account"> | string
313
- accountId?: Prisma.StringWithAggregatesFilter<"Account"> | string
314
- providerId?: Prisma.StringWithAggregatesFilter<"Account"> | string
315
- userId?: Prisma.StringWithAggregatesFilter<"Account"> | string
316
- accessToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null
317
- refreshToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null
318
- idToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null
319
- accessTokenExpiresAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
320
- refreshTokenExpiresAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
321
- scope?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null
322
- password?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null
323
- createdAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
324
- updatedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
325
- }
326
-
327
- export type AccountCreateInput = {
328
- id: string
329
- accountId: string
330
- providerId: string
331
- accessToken?: string | null
332
- refreshToken?: string | null
333
- idToken?: string | null
334
- accessTokenExpiresAt?: Date | string | null
335
- refreshTokenExpiresAt?: Date | string | null
336
- scope?: string | null
337
- password?: string | null
338
- createdAt?: Date | string | null
339
- updatedAt?: Date | string | null
340
- user: Prisma.UserCreateNestedOneWithoutAccountInput
341
- }
342
-
343
- export type AccountUncheckedCreateInput = {
344
- id: string
345
- accountId: string
346
- providerId: string
347
- userId: string
348
- accessToken?: string | null
349
- refreshToken?: string | null
350
- idToken?: string | null
351
- accessTokenExpiresAt?: Date | string | null
352
- refreshTokenExpiresAt?: Date | string | null
353
- scope?: string | null
354
- password?: string | null
355
- createdAt?: Date | string | null
356
- updatedAt?: Date | string | null
357
- }
358
-
359
- export type AccountUpdateInput = {
360
- id?: Prisma.StringFieldUpdateOperationsInput | string
361
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
362
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
363
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
364
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
365
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
366
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
367
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
368
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
369
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
370
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
371
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
372
- user?: Prisma.UserUpdateOneRequiredWithoutAccountNestedInput
373
- }
374
-
375
- export type AccountUncheckedUpdateInput = {
376
- id?: Prisma.StringFieldUpdateOperationsInput | string
377
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
378
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
379
- userId?: Prisma.StringFieldUpdateOperationsInput | string
380
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
381
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
382
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
383
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
384
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
385
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
386
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
387
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
388
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
389
- }
390
-
391
- export type AccountCreateManyInput = {
392
- id: string
393
- accountId: string
394
- providerId: string
395
- userId: string
396
- accessToken?: string | null
397
- refreshToken?: string | null
398
- idToken?: string | null
399
- accessTokenExpiresAt?: Date | string | null
400
- refreshTokenExpiresAt?: Date | string | null
401
- scope?: string | null
402
- password?: string | null
403
- createdAt?: Date | string | null
404
- updatedAt?: Date | string | null
405
- }
406
-
407
- export type AccountUpdateManyMutationInput = {
408
- id?: Prisma.StringFieldUpdateOperationsInput | string
409
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
410
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
411
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
412
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
413
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
414
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
415
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
416
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
417
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
418
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
419
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
420
- }
421
-
422
- export type AccountUncheckedUpdateManyInput = {
423
- id?: Prisma.StringFieldUpdateOperationsInput | string
424
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
425
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
426
- userId?: Prisma.StringFieldUpdateOperationsInput | string
427
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
428
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
429
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
430
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
431
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
432
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
433
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
434
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
435
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
436
- }
437
-
438
- export type AccountListRelationFilter = {
439
- every?: Prisma.AccountWhereInput
440
- some?: Prisma.AccountWhereInput
441
- none?: Prisma.AccountWhereInput
442
- }
443
-
444
- export type AccountOrderByRelationAggregateInput = {
445
- _count?: Prisma.SortOrder
446
- }
447
-
448
- export type AccountCountOrderByAggregateInput = {
449
- id?: Prisma.SortOrder
450
- accountId?: Prisma.SortOrder
451
- providerId?: Prisma.SortOrder
452
- userId?: Prisma.SortOrder
453
- accessToken?: Prisma.SortOrder
454
- refreshToken?: Prisma.SortOrder
455
- idToken?: Prisma.SortOrder
456
- accessTokenExpiresAt?: Prisma.SortOrder
457
- refreshTokenExpiresAt?: Prisma.SortOrder
458
- scope?: Prisma.SortOrder
459
- password?: Prisma.SortOrder
460
- createdAt?: Prisma.SortOrder
461
- updatedAt?: Prisma.SortOrder
462
- }
463
-
464
- export type AccountMaxOrderByAggregateInput = {
465
- id?: Prisma.SortOrder
466
- accountId?: Prisma.SortOrder
467
- providerId?: Prisma.SortOrder
468
- userId?: Prisma.SortOrder
469
- accessToken?: Prisma.SortOrder
470
- refreshToken?: Prisma.SortOrder
471
- idToken?: Prisma.SortOrder
472
- accessTokenExpiresAt?: Prisma.SortOrder
473
- refreshTokenExpiresAt?: Prisma.SortOrder
474
- scope?: Prisma.SortOrder
475
- password?: Prisma.SortOrder
476
- createdAt?: Prisma.SortOrder
477
- updatedAt?: Prisma.SortOrder
478
- }
479
-
480
- export type AccountMinOrderByAggregateInput = {
481
- id?: Prisma.SortOrder
482
- accountId?: Prisma.SortOrder
483
- providerId?: Prisma.SortOrder
484
- userId?: Prisma.SortOrder
485
- accessToken?: Prisma.SortOrder
486
- refreshToken?: Prisma.SortOrder
487
- idToken?: Prisma.SortOrder
488
- accessTokenExpiresAt?: Prisma.SortOrder
489
- refreshTokenExpiresAt?: Prisma.SortOrder
490
- scope?: Prisma.SortOrder
491
- password?: Prisma.SortOrder
492
- createdAt?: Prisma.SortOrder
493
- updatedAt?: Prisma.SortOrder
494
- }
495
-
496
- export type AccountCreateNestedManyWithoutUserInput = {
497
- create?: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput> | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[]
498
- connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[]
499
- createMany?: Prisma.AccountCreateManyUserInputEnvelope
500
- connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
501
- }
502
-
503
- export type AccountUncheckedCreateNestedManyWithoutUserInput = {
504
- create?: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput> | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[]
505
- connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[]
506
- createMany?: Prisma.AccountCreateManyUserInputEnvelope
507
- connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
508
- }
509
-
510
- export type AccountUpdateManyWithoutUserNestedInput = {
511
- create?: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput> | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[]
512
- connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[]
513
- upsert?: Prisma.AccountUpsertWithWhereUniqueWithoutUserInput | Prisma.AccountUpsertWithWhereUniqueWithoutUserInput[]
514
- createMany?: Prisma.AccountCreateManyUserInputEnvelope
515
- set?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
516
- disconnect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
517
- delete?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
518
- connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
519
- update?: Prisma.AccountUpdateWithWhereUniqueWithoutUserInput | Prisma.AccountUpdateWithWhereUniqueWithoutUserInput[]
520
- updateMany?: Prisma.AccountUpdateManyWithWhereWithoutUserInput | Prisma.AccountUpdateManyWithWhereWithoutUserInput[]
521
- deleteMany?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[]
522
- }
523
-
524
- export type AccountUncheckedUpdateManyWithoutUserNestedInput = {
525
- create?: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput> | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[]
526
- connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[]
527
- upsert?: Prisma.AccountUpsertWithWhereUniqueWithoutUserInput | Prisma.AccountUpsertWithWhereUniqueWithoutUserInput[]
528
- createMany?: Prisma.AccountCreateManyUserInputEnvelope
529
- set?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
530
- disconnect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
531
- delete?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
532
- connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[]
533
- update?: Prisma.AccountUpdateWithWhereUniqueWithoutUserInput | Prisma.AccountUpdateWithWhereUniqueWithoutUserInput[]
534
- updateMany?: Prisma.AccountUpdateManyWithWhereWithoutUserInput | Prisma.AccountUpdateManyWithWhereWithoutUserInput[]
535
- deleteMany?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[]
536
- }
537
-
538
- export type AccountCreateWithoutUserInput = {
539
- id: string
540
- accountId: string
541
- providerId: string
542
- accessToken?: string | null
543
- refreshToken?: string | null
544
- idToken?: string | null
545
- accessTokenExpiresAt?: Date | string | null
546
- refreshTokenExpiresAt?: Date | string | null
547
- scope?: string | null
548
- password?: string | null
549
- createdAt?: Date | string | null
550
- updatedAt?: Date | string | null
551
- }
552
-
553
- export type AccountUncheckedCreateWithoutUserInput = {
554
- id: string
555
- accountId: string
556
- providerId: string
557
- accessToken?: string | null
558
- refreshToken?: string | null
559
- idToken?: string | null
560
- accessTokenExpiresAt?: Date | string | null
561
- refreshTokenExpiresAt?: Date | string | null
562
- scope?: string | null
563
- password?: string | null
564
- createdAt?: Date | string | null
565
- updatedAt?: Date | string | null
566
- }
567
-
568
- export type AccountCreateOrConnectWithoutUserInput = {
569
- where: Prisma.AccountWhereUniqueInput
570
- create: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput>
571
- }
572
-
573
- export type AccountCreateManyUserInputEnvelope = {
574
- data: Prisma.AccountCreateManyUserInput | Prisma.AccountCreateManyUserInput[]
575
- skipDuplicates?: boolean
576
- }
577
-
578
- export type AccountUpsertWithWhereUniqueWithoutUserInput = {
579
- where: Prisma.AccountWhereUniqueInput
580
- update: Prisma.XOR<Prisma.AccountUpdateWithoutUserInput, Prisma.AccountUncheckedUpdateWithoutUserInput>
581
- create: Prisma.XOR<Prisma.AccountCreateWithoutUserInput, Prisma.AccountUncheckedCreateWithoutUserInput>
582
- }
583
-
584
- export type AccountUpdateWithWhereUniqueWithoutUserInput = {
585
- where: Prisma.AccountWhereUniqueInput
586
- data: Prisma.XOR<Prisma.AccountUpdateWithoutUserInput, Prisma.AccountUncheckedUpdateWithoutUserInput>
587
- }
588
-
589
- export type AccountUpdateManyWithWhereWithoutUserInput = {
590
- where: Prisma.AccountScalarWhereInput
591
- data: Prisma.XOR<Prisma.AccountUpdateManyMutationInput, Prisma.AccountUncheckedUpdateManyWithoutUserInput>
592
- }
593
-
594
- export type AccountScalarWhereInput = {
595
- AND?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[]
596
- OR?: Prisma.AccountScalarWhereInput[]
597
- NOT?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[]
598
- id?: Prisma.StringFilter<"Account"> | string
599
- accountId?: Prisma.StringFilter<"Account"> | string
600
- providerId?: Prisma.StringFilter<"Account"> | string
601
- userId?: Prisma.StringFilter<"Account"> | string
602
- accessToken?: Prisma.StringNullableFilter<"Account"> | string | null
603
- refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null
604
- idToken?: Prisma.StringNullableFilter<"Account"> | string | null
605
- accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
606
- refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
607
- scope?: Prisma.StringNullableFilter<"Account"> | string | null
608
- password?: Prisma.StringNullableFilter<"Account"> | string | null
609
- createdAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
610
- updatedAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null
611
- }
612
-
613
- export type AccountCreateManyUserInput = {
614
- id: string
615
- accountId: string
616
- providerId: string
617
- accessToken?: string | null
618
- refreshToken?: string | null
619
- idToken?: string | null
620
- accessTokenExpiresAt?: Date | string | null
621
- refreshTokenExpiresAt?: Date | string | null
622
- scope?: string | null
623
- password?: string | null
624
- createdAt?: Date | string | null
625
- updatedAt?: Date | string | null
626
- }
627
-
628
- export type AccountUpdateWithoutUserInput = {
629
- id?: Prisma.StringFieldUpdateOperationsInput | string
630
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
631
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
632
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
633
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
634
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
635
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
636
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
637
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
638
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
639
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
640
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
641
- }
642
-
643
- export type AccountUncheckedUpdateWithoutUserInput = {
644
- id?: Prisma.StringFieldUpdateOperationsInput | string
645
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
646
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
647
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
648
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
649
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
650
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
651
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
652
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
653
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
654
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
655
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
656
- }
657
-
658
- export type AccountUncheckedUpdateManyWithoutUserInput = {
659
- id?: Prisma.StringFieldUpdateOperationsInput | string
660
- accountId?: Prisma.StringFieldUpdateOperationsInput | string
661
- providerId?: Prisma.StringFieldUpdateOperationsInput | string
662
- accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
663
- refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
664
- idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
665
- accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
666
- refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
667
- scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
668
- password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
669
- createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
670
- updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
671
- }
672
-
673
-
674
-
675
- export type AccountSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
676
- id?: boolean
677
- accountId?: boolean
678
- providerId?: boolean
679
- userId?: boolean
680
- accessToken?: boolean
681
- refreshToken?: boolean
682
- idToken?: boolean
683
- accessTokenExpiresAt?: boolean
684
- refreshTokenExpiresAt?: boolean
685
- scope?: boolean
686
- password?: boolean
687
- createdAt?: boolean
688
- updatedAt?: boolean
689
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
690
- }, ExtArgs["result"]["account"]>
691
-
692
- export type AccountSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
693
- id?: boolean
694
- accountId?: boolean
695
- providerId?: boolean
696
- userId?: boolean
697
- accessToken?: boolean
698
- refreshToken?: boolean
699
- idToken?: boolean
700
- accessTokenExpiresAt?: boolean
701
- refreshTokenExpiresAt?: boolean
702
- scope?: boolean
703
- password?: boolean
704
- createdAt?: boolean
705
- updatedAt?: boolean
706
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
707
- }, ExtArgs["result"]["account"]>
708
-
709
- export type AccountSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
710
- id?: boolean
711
- accountId?: boolean
712
- providerId?: boolean
713
- userId?: boolean
714
- accessToken?: boolean
715
- refreshToken?: boolean
716
- idToken?: boolean
717
- accessTokenExpiresAt?: boolean
718
- refreshTokenExpiresAt?: boolean
719
- scope?: boolean
720
- password?: boolean
721
- createdAt?: boolean
722
- updatedAt?: boolean
723
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
724
- }, ExtArgs["result"]["account"]>
725
-
726
- export type AccountSelectScalar = {
727
- id?: boolean
728
- accountId?: boolean
729
- providerId?: boolean
730
- userId?: boolean
731
- accessToken?: boolean
732
- refreshToken?: boolean
733
- idToken?: boolean
734
- accessTokenExpiresAt?: boolean
735
- refreshTokenExpiresAt?: boolean
736
- scope?: boolean
737
- password?: boolean
738
- createdAt?: boolean
739
- updatedAt?: boolean
740
- }
741
-
742
- export type AccountOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt", ExtArgs["result"]["account"]>
743
- export type AccountInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
744
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
745
- }
746
- export type AccountIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
747
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
748
- }
749
- export type AccountIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
750
- user?: boolean | Prisma.UserDefaultArgs<ExtArgs>
751
- }
752
-
753
- export type $AccountPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
754
- name: "Account"
755
- objects: {
756
- user: Prisma.$UserPayload<ExtArgs>
757
- }
758
- scalars: runtime.Types.Extensions.GetPayloadResult<{
759
- id: string
760
- accountId: string
761
- providerId: string
762
- userId: string
763
- accessToken: string | null
764
- refreshToken: string | null
765
- idToken: string | null
766
- accessTokenExpiresAt: Date | null
767
- refreshTokenExpiresAt: Date | null
768
- scope: string | null
769
- password: string | null
770
- createdAt: Date | null
771
- updatedAt: Date | null
772
- }, ExtArgs["result"]["account"]>
773
- composites: {}
774
- }
775
-
776
- export type AccountGetPayload<S extends boolean | null | undefined | AccountDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$AccountPayload, S>
777
-
778
- export type AccountCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
779
- Omit<AccountFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
780
- select?: AccountCountAggregateInputType | true
781
- }
782
-
783
- export interface AccountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
784
- [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Account'], meta: { name: 'Account' } }
785
- /**
786
- * Find zero or one Account that matches the filter.
787
- * @param {AccountFindUniqueArgs} args - Arguments to find a Account
788
- * @example
789
- * // Get one Account
790
- * const account = await prisma.account.findUnique({
791
- * where: {
792
- * // ... provide filter here
793
- * }
794
- * })
795
- */
796
- findUnique<T extends AccountFindUniqueArgs>(args: Prisma.SelectSubset<T, AccountFindUniqueArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
797
-
798
- /**
799
- * Find one Account that matches the filter or throw an error with `error.code='P2025'`
800
- * if no matches were found.
801
- * @param {AccountFindUniqueOrThrowArgs} args - Arguments to find a Account
802
- * @example
803
- * // Get one Account
804
- * const account = await prisma.account.findUniqueOrThrow({
805
- * where: {
806
- * // ... provide filter here
807
- * }
808
- * })
809
- */
810
- findUniqueOrThrow<T extends AccountFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, AccountFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
811
-
812
- /**
813
- * Find the first Account that matches the filter.
814
- * Note, that providing `undefined` is treated as the value not being there.
815
- * Read more here: https://pris.ly/d/null-undefined
816
- * @param {AccountFindFirstArgs} args - Arguments to find a Account
817
- * @example
818
- * // Get one Account
819
- * const account = await prisma.account.findFirst({
820
- * where: {
821
- * // ... provide filter here
822
- * }
823
- * })
824
- */
825
- findFirst<T extends AccountFindFirstArgs>(args?: Prisma.SelectSubset<T, AccountFindFirstArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
826
-
827
- /**
828
- * Find the first Account that matches the filter or
829
- * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
830
- * Note, that providing `undefined` is treated as the value not being there.
831
- * Read more here: https://pris.ly/d/null-undefined
832
- * @param {AccountFindFirstOrThrowArgs} args - Arguments to find a Account
833
- * @example
834
- * // Get one Account
835
- * const account = await prisma.account.findFirstOrThrow({
836
- * where: {
837
- * // ... provide filter here
838
- * }
839
- * })
840
- */
841
- findFirstOrThrow<T extends AccountFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, AccountFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
842
-
843
- /**
844
- * Find zero or more Accounts that matches the filter.
845
- * Note, that providing `undefined` is treated as the value not being there.
846
- * Read more here: https://pris.ly/d/null-undefined
847
- * @param {AccountFindManyArgs} args - Arguments to filter and select certain fields only.
848
- * @example
849
- * // Get all Accounts
850
- * const accounts = await prisma.account.findMany()
851
- *
852
- * // Get first 10 Accounts
853
- * const accounts = await prisma.account.findMany({ take: 10 })
854
- *
855
- * // Only select the `id`
856
- * const accountWithIdOnly = await prisma.account.findMany({ select: { id: true } })
857
- *
858
- */
859
- findMany<T extends AccountFindManyArgs>(args?: Prisma.SelectSubset<T, AccountFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
860
-
861
- /**
862
- * Create a Account.
863
- * @param {AccountCreateArgs} args - Arguments to create a Account.
864
- * @example
865
- * // Create one Account
866
- * const Account = await prisma.account.create({
867
- * data: {
868
- * // ... data to create a Account
869
- * }
870
- * })
871
- *
872
- */
873
- create<T extends AccountCreateArgs>(args: Prisma.SelectSubset<T, AccountCreateArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
874
-
875
- /**
876
- * Create many Accounts.
877
- * @param {AccountCreateManyArgs} args - Arguments to create many Accounts.
878
- * @example
879
- * // Create many Accounts
880
- * const account = await prisma.account.createMany({
881
- * data: [
882
- * // ... provide data here
883
- * ]
884
- * })
885
- *
886
- */
887
- createMany<T extends AccountCreateManyArgs>(args?: Prisma.SelectSubset<T, AccountCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
888
-
889
- /**
890
- * Create many Accounts and returns the data saved in the database.
891
- * @param {AccountCreateManyAndReturnArgs} args - Arguments to create many Accounts.
892
- * @example
893
- * // Create many Accounts
894
- * const account = await prisma.account.createManyAndReturn({
895
- * data: [
896
- * // ... provide data here
897
- * ]
898
- * })
899
- *
900
- * // Create many Accounts and only return the `id`
901
- * const accountWithIdOnly = await prisma.account.createManyAndReturn({
902
- * select: { id: true },
903
- * data: [
904
- * // ... provide data here
905
- * ]
906
- * })
907
- * Note, that providing `undefined` is treated as the value not being there.
908
- * Read more here: https://pris.ly/d/null-undefined
909
- *
910
- */
911
- createManyAndReturn<T extends AccountCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, AccountCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
912
-
913
- /**
914
- * Delete a Account.
915
- * @param {AccountDeleteArgs} args - Arguments to delete one Account.
916
- * @example
917
- * // Delete one Account
918
- * const Account = await prisma.account.delete({
919
- * where: {
920
- * // ... filter to delete one Account
921
- * }
922
- * })
923
- *
924
- */
925
- delete<T extends AccountDeleteArgs>(args: Prisma.SelectSubset<T, AccountDeleteArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
926
-
927
- /**
928
- * Update one Account.
929
- * @param {AccountUpdateArgs} args - Arguments to update one Account.
930
- * @example
931
- * // Update one Account
932
- * const account = await prisma.account.update({
933
- * where: {
934
- * // ... provide filter here
935
- * },
936
- * data: {
937
- * // ... provide data here
938
- * }
939
- * })
940
- *
941
- */
942
- update<T extends AccountUpdateArgs>(args: Prisma.SelectSubset<T, AccountUpdateArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
943
-
944
- /**
945
- * Delete zero or more Accounts.
946
- * @param {AccountDeleteManyArgs} args - Arguments to filter Accounts to delete.
947
- * @example
948
- * // Delete a few Accounts
949
- * const { count } = await prisma.account.deleteMany({
950
- * where: {
951
- * // ... provide filter here
952
- * }
953
- * })
954
- *
955
- */
956
- deleteMany<T extends AccountDeleteManyArgs>(args?: Prisma.SelectSubset<T, AccountDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
957
-
958
- /**
959
- * Update zero or more Accounts.
960
- * Note, that providing `undefined` is treated as the value not being there.
961
- * Read more here: https://pris.ly/d/null-undefined
962
- * @param {AccountUpdateManyArgs} args - Arguments to update one or more rows.
963
- * @example
964
- * // Update many Accounts
965
- * const account = await prisma.account.updateMany({
966
- * where: {
967
- * // ... provide filter here
968
- * },
969
- * data: {
970
- * // ... provide data here
971
- * }
972
- * })
973
- *
974
- */
975
- updateMany<T extends AccountUpdateManyArgs>(args: Prisma.SelectSubset<T, AccountUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
976
-
977
- /**
978
- * Update zero or more Accounts and returns the data updated in the database.
979
- * @param {AccountUpdateManyAndReturnArgs} args - Arguments to update many Accounts.
980
- * @example
981
- * // Update many Accounts
982
- * const account = await prisma.account.updateManyAndReturn({
983
- * where: {
984
- * // ... provide filter here
985
- * },
986
- * data: [
987
- * // ... provide data here
988
- * ]
989
- * })
990
- *
991
- * // Update zero or more Accounts and only return the `id`
992
- * const accountWithIdOnly = await prisma.account.updateManyAndReturn({
993
- * select: { id: true },
994
- * where: {
995
- * // ... provide filter here
996
- * },
997
- * data: [
998
- * // ... provide data here
999
- * ]
1000
- * })
1001
- * Note, that providing `undefined` is treated as the value not being there.
1002
- * Read more here: https://pris.ly/d/null-undefined
1003
- *
1004
- */
1005
- updateManyAndReturn<T extends AccountUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, AccountUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
1006
-
1007
- /**
1008
- * Create or update one Account.
1009
- * @param {AccountUpsertArgs} args - Arguments to update or create a Account.
1010
- * @example
1011
- * // Update or create a Account
1012
- * const account = await prisma.account.upsert({
1013
- * create: {
1014
- * // ... data to create a Account
1015
- * },
1016
- * update: {
1017
- * // ... in case it already exists, update
1018
- * },
1019
- * where: {
1020
- * // ... the filter for the Account we want to update
1021
- * }
1022
- * })
1023
- */
1024
- upsert<T extends AccountUpsertArgs>(args: Prisma.SelectSubset<T, AccountUpsertArgs<ExtArgs>>): Prisma.Prisma__AccountClient<runtime.Types.Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
1025
-
1026
-
1027
- /**
1028
- * Count the number of Accounts.
1029
- * Note, that providing `undefined` is treated as the value not being there.
1030
- * Read more here: https://pris.ly/d/null-undefined
1031
- * @param {AccountCountArgs} args - Arguments to filter Accounts to count.
1032
- * @example
1033
- * // Count the number of Accounts
1034
- * const count = await prisma.account.count({
1035
- * where: {
1036
- * // ... the filter for the Accounts we want to count
1037
- * }
1038
- * })
1039
- **/
1040
- count<T extends AccountCountArgs>(
1041
- args?: Prisma.Subset<T, AccountCountArgs>,
1042
- ): Prisma.PrismaPromise<
1043
- T extends runtime.Types.Utils.Record<'select', any>
1044
- ? T['select'] extends true
1045
- ? number
1046
- : Prisma.GetScalarType<T['select'], AccountCountAggregateOutputType>
1047
- : number
1048
- >
1049
-
1050
- /**
1051
- * Allows you to perform aggregations operations on a Account.
1052
- * Note, that providing `undefined` is treated as the value not being there.
1053
- * Read more here: https://pris.ly/d/null-undefined
1054
- * @param {AccountAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
1055
- * @example
1056
- * // Ordered by age ascending
1057
- * // Where email contains prisma.io
1058
- * // Limited to the 10 users
1059
- * const aggregations = await prisma.user.aggregate({
1060
- * _avg: {
1061
- * age: true,
1062
- * },
1063
- * where: {
1064
- * email: {
1065
- * contains: "prisma.io",
1066
- * },
1067
- * },
1068
- * orderBy: {
1069
- * age: "asc",
1070
- * },
1071
- * take: 10,
1072
- * })
1073
- **/
1074
- aggregate<T extends AccountAggregateArgs>(args: Prisma.Subset<T, AccountAggregateArgs>): Prisma.PrismaPromise<GetAccountAggregateType<T>>
1075
-
1076
- /**
1077
- * Group by Account.
1078
- * Note, that providing `undefined` is treated as the value not being there.
1079
- * Read more here: https://pris.ly/d/null-undefined
1080
- * @param {AccountGroupByArgs} args - Group by arguments.
1081
- * @example
1082
- * // Group by city, order by createdAt, get count
1083
- * const result = await prisma.user.groupBy({
1084
- * by: ['city', 'createdAt'],
1085
- * orderBy: {
1086
- * createdAt: true
1087
- * },
1088
- * _count: {
1089
- * _all: true
1090
- * },
1091
- * })
1092
- *
1093
- **/
1094
- groupBy<
1095
- T extends AccountGroupByArgs,
1096
- HasSelectOrTake extends Prisma.Or<
1097
- Prisma.Extends<'skip', Prisma.Keys<T>>,
1098
- Prisma.Extends<'take', Prisma.Keys<T>>
1099
- >,
1100
- OrderByArg extends Prisma.True extends HasSelectOrTake
1101
- ? { orderBy: AccountGroupByArgs['orderBy'] }
1102
- : { orderBy?: AccountGroupByArgs['orderBy'] },
1103
- OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
1104
- ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
1105
- ByValid extends Prisma.Has<ByFields, OrderFields>,
1106
- HavingFields extends Prisma.GetHavingFields<T['having']>,
1107
- HavingValid extends Prisma.Has<ByFields, HavingFields>,
1108
- ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
1109
- InputErrors extends ByEmpty extends Prisma.True
1110
- ? `Error: "by" must not be empty.`
1111
- : HavingValid extends Prisma.False
1112
- ? {
1113
- [P in HavingFields]: P extends ByFields
1114
- ? never
1115
- : P extends string
1116
- ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
1117
- : [
1118
- Error,
1119
- 'Field ',
1120
- P,
1121
- ` in "having" needs to be provided in "by"`,
1122
- ]
1123
- }[HavingFields]
1124
- : 'take' extends Prisma.Keys<T>
1125
- ? 'orderBy' extends Prisma.Keys<T>
1126
- ? ByValid extends Prisma.True
1127
- ? {}
1128
- : {
1129
- [P in OrderFields]: P extends ByFields
1130
- ? never
1131
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1132
- }[OrderFields]
1133
- : 'Error: If you provide "take", you also need to provide "orderBy"'
1134
- : 'skip' extends Prisma.Keys<T>
1135
- ? 'orderBy' extends Prisma.Keys<T>
1136
- ? ByValid extends Prisma.True
1137
- ? {}
1138
- : {
1139
- [P in OrderFields]: P extends ByFields
1140
- ? never
1141
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1142
- }[OrderFields]
1143
- : 'Error: If you provide "skip", you also need to provide "orderBy"'
1144
- : ByValid extends Prisma.True
1145
- ? {}
1146
- : {
1147
- [P in OrderFields]: P extends ByFields
1148
- ? never
1149
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
1150
- }[OrderFields]
1151
- >(args: Prisma.SubsetIntersection<T, AccountGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetAccountGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
1152
- /**
1153
- * Fields of the Account model
1154
- */
1155
- readonly fields: AccountFieldRefs;
1156
- }
1157
-
1158
- /**
1159
- * The delegate class that acts as a "Promise-like" for Account.
1160
- * Why is this prefixed with `Prisma__`?
1161
- * Because we want to prevent naming conflicts as mentioned in
1162
- * https://github.com/prisma/prisma-client-js/issues/707
1163
- */
1164
- export interface Prisma__AccountClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
1165
- readonly [Symbol.toStringTag]: "PrismaPromise"
1166
- user<T extends Prisma.UserDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.UserDefaultArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
1167
- /**
1168
- * Attaches callbacks for the resolution and/or rejection of the Promise.
1169
- * @param onfulfilled The callback to execute when the Promise is resolved.
1170
- * @param onrejected The callback to execute when the Promise is rejected.
1171
- * @returns A Promise for the completion of which ever callback is executed.
1172
- */
1173
- 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>
1174
- /**
1175
- * Attaches a callback for only the rejection of the Promise.
1176
- * @param onrejected The callback to execute when the Promise is rejected.
1177
- * @returns A Promise for the completion of the callback.
1178
- */
1179
- catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
1180
- /**
1181
- * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
1182
- * resolved value cannot be modified from the callback.
1183
- * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
1184
- * @returns A Promise for the completion of the callback.
1185
- */
1186
- finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
1187
- }
1188
-
1189
-
1190
-
1191
-
1192
- /**
1193
- * Fields of the Account model
1194
- */
1195
- export interface AccountFieldRefs {
1196
- readonly id: Prisma.FieldRef<"Account", 'String'>
1197
- readonly accountId: Prisma.FieldRef<"Account", 'String'>
1198
- readonly providerId: Prisma.FieldRef<"Account", 'String'>
1199
- readonly userId: Prisma.FieldRef<"Account", 'String'>
1200
- readonly accessToken: Prisma.FieldRef<"Account", 'String'>
1201
- readonly refreshToken: Prisma.FieldRef<"Account", 'String'>
1202
- readonly idToken: Prisma.FieldRef<"Account", 'String'>
1203
- readonly accessTokenExpiresAt: Prisma.FieldRef<"Account", 'DateTime'>
1204
- readonly refreshTokenExpiresAt: Prisma.FieldRef<"Account", 'DateTime'>
1205
- readonly scope: Prisma.FieldRef<"Account", 'String'>
1206
- readonly password: Prisma.FieldRef<"Account", 'String'>
1207
- readonly createdAt: Prisma.FieldRef<"Account", 'DateTime'>
1208
- readonly updatedAt: Prisma.FieldRef<"Account", 'DateTime'>
1209
- }
1210
-
1211
-
1212
- // Custom InputTypes
1213
- /**
1214
- * Account findUnique
1215
- */
1216
- export type AccountFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1217
- /**
1218
- * Select specific fields to fetch from the Account
1219
- */
1220
- select?: Prisma.AccountSelect<ExtArgs> | null
1221
- /**
1222
- * Omit specific fields from the Account
1223
- */
1224
- omit?: Prisma.AccountOmit<ExtArgs> | null
1225
- /**
1226
- * Choose, which related nodes to fetch as well
1227
- */
1228
- include?: Prisma.AccountInclude<ExtArgs> | null
1229
- /**
1230
- * Filter, which Account to fetch.
1231
- */
1232
- where: Prisma.AccountWhereUniqueInput
1233
- }
1234
-
1235
- /**
1236
- * Account findUniqueOrThrow
1237
- */
1238
- export type AccountFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1239
- /**
1240
- * Select specific fields to fetch from the Account
1241
- */
1242
- select?: Prisma.AccountSelect<ExtArgs> | null
1243
- /**
1244
- * Omit specific fields from the Account
1245
- */
1246
- omit?: Prisma.AccountOmit<ExtArgs> | null
1247
- /**
1248
- * Choose, which related nodes to fetch as well
1249
- */
1250
- include?: Prisma.AccountInclude<ExtArgs> | null
1251
- /**
1252
- * Filter, which Account to fetch.
1253
- */
1254
- where: Prisma.AccountWhereUniqueInput
1255
- }
1256
-
1257
- /**
1258
- * Account findFirst
1259
- */
1260
- export type AccountFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1261
- /**
1262
- * Select specific fields to fetch from the Account
1263
- */
1264
- select?: Prisma.AccountSelect<ExtArgs> | null
1265
- /**
1266
- * Omit specific fields from the Account
1267
- */
1268
- omit?: Prisma.AccountOmit<ExtArgs> | null
1269
- /**
1270
- * Choose, which related nodes to fetch as well
1271
- */
1272
- include?: Prisma.AccountInclude<ExtArgs> | null
1273
- /**
1274
- * Filter, which Account to fetch.
1275
- */
1276
- where?: Prisma.AccountWhereInput
1277
- /**
1278
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1279
- *
1280
- * Determine the order of Accounts to fetch.
1281
- */
1282
- orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[]
1283
- /**
1284
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1285
- *
1286
- * Sets the position for searching for Accounts.
1287
- */
1288
- cursor?: Prisma.AccountWhereUniqueInput
1289
- /**
1290
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1291
- *
1292
- * Take `±n` Accounts from the position of the cursor.
1293
- */
1294
- take?: number
1295
- /**
1296
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1297
- *
1298
- * Skip the first `n` Accounts.
1299
- */
1300
- skip?: number
1301
- /**
1302
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1303
- *
1304
- * Filter by unique combinations of Accounts.
1305
- */
1306
- distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[]
1307
- }
1308
-
1309
- /**
1310
- * Account findFirstOrThrow
1311
- */
1312
- export type AccountFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1313
- /**
1314
- * Select specific fields to fetch from the Account
1315
- */
1316
- select?: Prisma.AccountSelect<ExtArgs> | null
1317
- /**
1318
- * Omit specific fields from the Account
1319
- */
1320
- omit?: Prisma.AccountOmit<ExtArgs> | null
1321
- /**
1322
- * Choose, which related nodes to fetch as well
1323
- */
1324
- include?: Prisma.AccountInclude<ExtArgs> | null
1325
- /**
1326
- * Filter, which Account to fetch.
1327
- */
1328
- where?: Prisma.AccountWhereInput
1329
- /**
1330
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1331
- *
1332
- * Determine the order of Accounts to fetch.
1333
- */
1334
- orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[]
1335
- /**
1336
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1337
- *
1338
- * Sets the position for searching for Accounts.
1339
- */
1340
- cursor?: Prisma.AccountWhereUniqueInput
1341
- /**
1342
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1343
- *
1344
- * Take `±n` Accounts from the position of the cursor.
1345
- */
1346
- take?: number
1347
- /**
1348
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1349
- *
1350
- * Skip the first `n` Accounts.
1351
- */
1352
- skip?: number
1353
- /**
1354
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
1355
- *
1356
- * Filter by unique combinations of Accounts.
1357
- */
1358
- distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[]
1359
- }
1360
-
1361
- /**
1362
- * Account findMany
1363
- */
1364
- export type AccountFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1365
- /**
1366
- * Select specific fields to fetch from the Account
1367
- */
1368
- select?: Prisma.AccountSelect<ExtArgs> | null
1369
- /**
1370
- * Omit specific fields from the Account
1371
- */
1372
- omit?: Prisma.AccountOmit<ExtArgs> | null
1373
- /**
1374
- * Choose, which related nodes to fetch as well
1375
- */
1376
- include?: Prisma.AccountInclude<ExtArgs> | null
1377
- /**
1378
- * Filter, which Accounts to fetch.
1379
- */
1380
- where?: Prisma.AccountWhereInput
1381
- /**
1382
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
1383
- *
1384
- * Determine the order of Accounts to fetch.
1385
- */
1386
- orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[]
1387
- /**
1388
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
1389
- *
1390
- * Sets the position for listing Accounts.
1391
- */
1392
- cursor?: Prisma.AccountWhereUniqueInput
1393
- /**
1394
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1395
- *
1396
- * Take `±n` Accounts from the position of the cursor.
1397
- */
1398
- take?: number
1399
- /**
1400
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
1401
- *
1402
- * Skip the first `n` Accounts.
1403
- */
1404
- skip?: number
1405
- distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[]
1406
- }
1407
-
1408
- /**
1409
- * Account create
1410
- */
1411
- export type AccountCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1412
- /**
1413
- * Select specific fields to fetch from the Account
1414
- */
1415
- select?: Prisma.AccountSelect<ExtArgs> | null
1416
- /**
1417
- * Omit specific fields from the Account
1418
- */
1419
- omit?: Prisma.AccountOmit<ExtArgs> | null
1420
- /**
1421
- * Choose, which related nodes to fetch as well
1422
- */
1423
- include?: Prisma.AccountInclude<ExtArgs> | null
1424
- /**
1425
- * The data needed to create a Account.
1426
- */
1427
- data: Prisma.XOR<Prisma.AccountCreateInput, Prisma.AccountUncheckedCreateInput>
1428
- }
1429
-
1430
- /**
1431
- * Account createMany
1432
- */
1433
- export type AccountCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1434
- /**
1435
- * The data used to create many Accounts.
1436
- */
1437
- data: Prisma.AccountCreateManyInput | Prisma.AccountCreateManyInput[]
1438
- skipDuplicates?: boolean
1439
- }
1440
-
1441
- /**
1442
- * Account createManyAndReturn
1443
- */
1444
- export type AccountCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1445
- /**
1446
- * Select specific fields to fetch from the Account
1447
- */
1448
- select?: Prisma.AccountSelectCreateManyAndReturn<ExtArgs> | null
1449
- /**
1450
- * Omit specific fields from the Account
1451
- */
1452
- omit?: Prisma.AccountOmit<ExtArgs> | null
1453
- /**
1454
- * The data used to create many Accounts.
1455
- */
1456
- data: Prisma.AccountCreateManyInput | Prisma.AccountCreateManyInput[]
1457
- skipDuplicates?: boolean
1458
- /**
1459
- * Choose, which related nodes to fetch as well
1460
- */
1461
- include?: Prisma.AccountIncludeCreateManyAndReturn<ExtArgs> | null
1462
- }
1463
-
1464
- /**
1465
- * Account update
1466
- */
1467
- export type AccountUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1468
- /**
1469
- * Select specific fields to fetch from the Account
1470
- */
1471
- select?: Prisma.AccountSelect<ExtArgs> | null
1472
- /**
1473
- * Omit specific fields from the Account
1474
- */
1475
- omit?: Prisma.AccountOmit<ExtArgs> | null
1476
- /**
1477
- * Choose, which related nodes to fetch as well
1478
- */
1479
- include?: Prisma.AccountInclude<ExtArgs> | null
1480
- /**
1481
- * The data needed to update a Account.
1482
- */
1483
- data: Prisma.XOR<Prisma.AccountUpdateInput, Prisma.AccountUncheckedUpdateInput>
1484
- /**
1485
- * Choose, which Account to update.
1486
- */
1487
- where: Prisma.AccountWhereUniqueInput
1488
- }
1489
-
1490
- /**
1491
- * Account updateMany
1492
- */
1493
- export type AccountUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1494
- /**
1495
- * The data used to update Accounts.
1496
- */
1497
- data: Prisma.XOR<Prisma.AccountUpdateManyMutationInput, Prisma.AccountUncheckedUpdateManyInput>
1498
- /**
1499
- * Filter which Accounts to update
1500
- */
1501
- where?: Prisma.AccountWhereInput
1502
- /**
1503
- * Limit how many Accounts to update.
1504
- */
1505
- limit?: number
1506
- }
1507
-
1508
- /**
1509
- * Account updateManyAndReturn
1510
- */
1511
- export type AccountUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1512
- /**
1513
- * Select specific fields to fetch from the Account
1514
- */
1515
- select?: Prisma.AccountSelectUpdateManyAndReturn<ExtArgs> | null
1516
- /**
1517
- * Omit specific fields from the Account
1518
- */
1519
- omit?: Prisma.AccountOmit<ExtArgs> | null
1520
- /**
1521
- * The data used to update Accounts.
1522
- */
1523
- data: Prisma.XOR<Prisma.AccountUpdateManyMutationInput, Prisma.AccountUncheckedUpdateManyInput>
1524
- /**
1525
- * Filter which Accounts to update
1526
- */
1527
- where?: Prisma.AccountWhereInput
1528
- /**
1529
- * Limit how many Accounts to update.
1530
- */
1531
- limit?: number
1532
- /**
1533
- * Choose, which related nodes to fetch as well
1534
- */
1535
- include?: Prisma.AccountIncludeUpdateManyAndReturn<ExtArgs> | null
1536
- }
1537
-
1538
- /**
1539
- * Account upsert
1540
- */
1541
- export type AccountUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1542
- /**
1543
- * Select specific fields to fetch from the Account
1544
- */
1545
- select?: Prisma.AccountSelect<ExtArgs> | null
1546
- /**
1547
- * Omit specific fields from the Account
1548
- */
1549
- omit?: Prisma.AccountOmit<ExtArgs> | null
1550
- /**
1551
- * Choose, which related nodes to fetch as well
1552
- */
1553
- include?: Prisma.AccountInclude<ExtArgs> | null
1554
- /**
1555
- * The filter to search for the Account to update in case it exists.
1556
- */
1557
- where: Prisma.AccountWhereUniqueInput
1558
- /**
1559
- * In case the Account found by the `where` argument doesn't exist, create a new Account with this data.
1560
- */
1561
- create: Prisma.XOR<Prisma.AccountCreateInput, Prisma.AccountUncheckedCreateInput>
1562
- /**
1563
- * In case the Account was found with the provided `where` argument, update it with this data.
1564
- */
1565
- update: Prisma.XOR<Prisma.AccountUpdateInput, Prisma.AccountUncheckedUpdateInput>
1566
- }
1567
-
1568
- /**
1569
- * Account delete
1570
- */
1571
- export type AccountDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1572
- /**
1573
- * Select specific fields to fetch from the Account
1574
- */
1575
- select?: Prisma.AccountSelect<ExtArgs> | null
1576
- /**
1577
- * Omit specific fields from the Account
1578
- */
1579
- omit?: Prisma.AccountOmit<ExtArgs> | null
1580
- /**
1581
- * Choose, which related nodes to fetch as well
1582
- */
1583
- include?: Prisma.AccountInclude<ExtArgs> | null
1584
- /**
1585
- * Filter which Account to delete.
1586
- */
1587
- where: Prisma.AccountWhereUniqueInput
1588
- }
1589
-
1590
- /**
1591
- * Account deleteMany
1592
- */
1593
- export type AccountDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1594
- /**
1595
- * Filter which Accounts to delete
1596
- */
1597
- where?: Prisma.AccountWhereInput
1598
- /**
1599
- * Limit how many Accounts to delete.
1600
- */
1601
- limit?: number
1602
- }
1603
-
1604
- /**
1605
- * Account without action
1606
- */
1607
- export type AccountDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1608
- /**
1609
- * Select specific fields to fetch from the Account
1610
- */
1611
- select?: Prisma.AccountSelect<ExtArgs> | null
1612
- /**
1613
- * Omit specific fields from the Account
1614
- */
1615
- omit?: Prisma.AccountOmit<ExtArgs> | null
1616
- /**
1617
- * Choose, which related nodes to fetch as well
1618
- */
1619
- include?: Prisma.AccountInclude<ExtArgs> | null
1620
- }