expo-backend-types 0.22.0-EXPO-288-EB-Imagenes.1 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/src/csv/dto/csv.dto.d.ts +18 -0
- package/dist/src/csv/dto/csv.dto.js +17 -0
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
- package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
- package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
- package/dist/src/csv/dto/download-profiles.dto.js +15 -0
- package/dist/src/csv/exports.d.ts +3 -0
- package/dist/src/{image → csv}/exports.js +3 -3
- package/dist/src/event/dto/event.dto.js +1 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
- package/dist/src/event/dto/update-event.dto.d.ts +20 -20
- package/dist/src/i18n/es.d.ts +18 -20
- package/dist/src/i18n/es.js +18 -20
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/location/dto/find-all-location.dto.d.ts +16 -16
- package/dist/src/message/dto/message.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/types/prisma-schema/default.d.ts +1 -1
- package/dist/types/prisma-schema/edge.d.ts +1 -1
- package/dist/types/prisma-schema/edge.js +7 -11
- package/dist/types/prisma-schema/index-browser.js +4 -7
- package/dist/types/prisma-schema/index.d.ts +1036 -805
- package/dist/types/prisma-schema/index.js +7 -11
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +1 -14
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -21
- package/dist/types/prisma-schema/runtime/edge.js +18 -21
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +87 -297
- package/dist/types/prisma-schema/runtime/library.js +61 -64
- package/dist/types/prisma-schema/runtime/react-native.js +28 -31
- package/dist/types/prisma-schema/runtime/wasm.js +19 -22
- package/dist/types/prisma-schema/wasm.d.ts +1 -1
- package/dist/types/prisma-schema/wasm.js +4 -7
- package/dist/types/schema.d.ts +32 -42
- package/package.json +7 -5
- package/dist/src/image/dto/delete-image.dto.d.ts +0 -18
- package/dist/src/image/dto/delete-image.dto.js +0 -12
- package/dist/src/image/dto/image.dto.d.ts +0 -24
- package/dist/src/image/dto/image.dto.js +0 -18
- package/dist/src/image/dto/update-image.dto.d.ts +0 -18
- package/dist/src/image/dto/update-image.dto.js +0 -15
- package/dist/src/image/exports.d.ts +0 -3
@@ -155,8 +155,8 @@ export const TemplateCategory: typeof $Enums.TemplateCategory
|
|
155
155
|
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client).
|
156
156
|
*/
|
157
157
|
export class PrismaClient<
|
158
|
-
|
159
|
-
U = 'log' extends keyof
|
158
|
+
T extends Prisma.PrismaClientOptions = Prisma.PrismaClientOptions,
|
159
|
+
U = 'log' extends keyof T ? T['log'] extends Array<Prisma.LogLevel | Prisma.LogDefinition> ? Prisma.GetEvents<T['log']> : never : never,
|
160
160
|
ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs
|
161
161
|
> {
|
162
162
|
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['other'] }
|
@@ -176,7 +176,7 @@ export class PrismaClient<
|
|
176
176
|
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client).
|
177
177
|
*/
|
178
178
|
|
179
|
-
constructor(optionsArg ?: Prisma.Subset<
|
179
|
+
constructor(optionsArg ?: Prisma.Subset<T, Prisma.PrismaClientOptions>);
|
180
180
|
$on<V extends U>(eventType: V, callback: (event: V extends 'query' ? Prisma.QueryEvent : Prisma.LogEvent) => void): void;
|
181
181
|
|
182
182
|
/**
|
@@ -242,7 +242,6 @@ export class PrismaClient<
|
|
242
242
|
*/
|
243
243
|
$queryRawUnsafe<T = unknown>(query: string, ...values: any[]): Prisma.PrismaPromise<T>;
|
244
244
|
|
245
|
-
|
246
245
|
/**
|
247
246
|
* Allows the running of a sequence of read/write operations that are guaranteed to either succeed or fail as a whole.
|
248
247
|
* @example
|
@@ -261,7 +260,7 @@ export class PrismaClient<
|
|
261
260
|
$transaction<R>(fn: (prisma: Omit<PrismaClient, runtime.ITXClientDenyList>) => $Utils.JsPromise<R>, options?: { maxWait?: number, timeout?: number, isolationLevel?: Prisma.TransactionIsolationLevel }): $Utils.JsPromise<R>
|
262
261
|
|
263
262
|
|
264
|
-
$extends: $Extensions.ExtendsHook<
|
263
|
+
$extends: $Extensions.ExtendsHook<'extends', Prisma.TypeMapCb, ExtArgs>
|
265
264
|
|
266
265
|
/**
|
267
266
|
* `prisma.account`: Exposes CRUD operations for the **Account** model.
|
@@ -403,8 +402,6 @@ export namespace Prisma {
|
|
403
402
|
export import raw = runtime.raw
|
404
403
|
export import Sql = runtime.Sql
|
405
404
|
|
406
|
-
|
407
|
-
|
408
405
|
/**
|
409
406
|
* Decimal.js
|
410
407
|
*/
|
@@ -431,8 +428,8 @@ export namespace Prisma {
|
|
431
428
|
export import Exact = $Public.Exact
|
432
429
|
|
433
430
|
/**
|
434
|
-
* Prisma Client JS version: 5.
|
435
|
-
* Query Engine version:
|
431
|
+
* Prisma Client JS version: 5.14.0
|
432
|
+
* Query Engine version: e9771e62de70f79a5e1c604a2d7c8e2a0a874b48
|
436
433
|
*/
|
437
434
|
export type PrismaVersion = {
|
438
435
|
client: string
|
@@ -444,13 +441,51 @@ export namespace Prisma {
|
|
444
441
|
* Utility Types
|
445
442
|
*/
|
446
443
|
|
444
|
+
/**
|
445
|
+
* From https://github.com/sindresorhus/type-fest/
|
446
|
+
* Matches a JSON object.
|
447
|
+
* This type can be useful to enforce some input to be JSON-compatible or as a super-type to be extended from.
|
448
|
+
*/
|
449
|
+
export type JsonObject = {[Key in string]?: JsonValue}
|
450
|
+
|
451
|
+
/**
|
452
|
+
* From https://github.com/sindresorhus/type-fest/
|
453
|
+
* Matches a JSON array.
|
454
|
+
*/
|
455
|
+
export interface JsonArray extends Array<JsonValue> {}
|
456
|
+
|
457
|
+
/**
|
458
|
+
* From https://github.com/sindresorhus/type-fest/
|
459
|
+
* Matches any valid JSON value.
|
460
|
+
*/
|
461
|
+
export type JsonValue = string | number | boolean | JsonObject | JsonArray | null
|
462
|
+
|
463
|
+
/**
|
464
|
+
* Matches a JSON object.
|
465
|
+
* Unlike `JsonObject`, this type allows undefined and read-only properties.
|
466
|
+
*/
|
467
|
+
export type InputJsonObject = {readonly [Key in string]?: InputJsonValue | null}
|
468
|
+
|
469
|
+
/**
|
470
|
+
* Matches a JSON array.
|
471
|
+
* Unlike `JsonArray`, readonly arrays are assignable to this type.
|
472
|
+
*/
|
473
|
+
export interface InputJsonArray extends ReadonlyArray<InputJsonValue | null> {}
|
447
474
|
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
475
|
+
/**
|
476
|
+
* Matches any valid value that can be used as an input for operations like
|
477
|
+
* create and update as the value of a JSON field. Unlike `JsonValue`, this
|
478
|
+
* type allows read-only arrays and read-only object properties and disallows
|
479
|
+
* `null` at the top level.
|
480
|
+
*
|
481
|
+
* `null` cannot be used as the value of a JSON field because its meaning
|
482
|
+
* would be ambiguous. Use `Prisma.JsonNull` to store the JSON null value or
|
483
|
+
* `Prisma.DbNull` to clear the JSON value and set the field to the database
|
484
|
+
* NULL value instead.
|
485
|
+
*
|
486
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-by-null-values
|
487
|
+
*/
|
488
|
+
export type InputJsonValue = string | number | boolean | InputJsonObject | InputJsonArray | { toJSON(): unknown }
|
454
489
|
|
455
490
|
/**
|
456
491
|
* Types of the values used to represent different kinds of `null` values when working with JSON fields.
|
@@ -833,82 +868,83 @@ export namespace Prisma {
|
|
833
868
|
db?: Datasource
|
834
869
|
}
|
835
870
|
|
836
|
-
|
837
|
-
|
871
|
+
|
872
|
+
interface TypeMapCb extends $Utils.Fn<{extArgs: $Extensions.InternalArgs}, $Utils.Record<string, any>> {
|
873
|
+
returns: Prisma.TypeMap<this['params']['extArgs']>
|
838
874
|
}
|
839
875
|
|
840
|
-
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs
|
876
|
+
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
841
877
|
meta: {
|
842
|
-
modelProps:
|
878
|
+
modelProps: 'account' | 'profile' | 'location' | 'comment' | 'tag' | 'tagGroup' | 'event' | 'eventFolder' | 'message' | 'cannedResponse' | 'enums'
|
843
879
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
844
|
-
}
|
880
|
+
},
|
845
881
|
model: {
|
846
882
|
Account: {
|
847
883
|
payload: Prisma.$AccountPayload<ExtArgs>
|
848
884
|
fields: Prisma.AccountFieldRefs
|
849
885
|
operations: {
|
850
886
|
findUnique: {
|
851
|
-
args: Prisma.AccountFindUniqueArgs<ExtArgs
|
887
|
+
args: Prisma.AccountFindUniqueArgs<ExtArgs>,
|
852
888
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload> | null
|
853
889
|
}
|
854
890
|
findUniqueOrThrow: {
|
855
|
-
args: Prisma.AccountFindUniqueOrThrowArgs<ExtArgs
|
891
|
+
args: Prisma.AccountFindUniqueOrThrowArgs<ExtArgs>,
|
856
892
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
857
893
|
}
|
858
894
|
findFirst: {
|
859
|
-
args: Prisma.AccountFindFirstArgs<ExtArgs
|
895
|
+
args: Prisma.AccountFindFirstArgs<ExtArgs>,
|
860
896
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload> | null
|
861
897
|
}
|
862
898
|
findFirstOrThrow: {
|
863
|
-
args: Prisma.AccountFindFirstOrThrowArgs<ExtArgs
|
899
|
+
args: Prisma.AccountFindFirstOrThrowArgs<ExtArgs>,
|
864
900
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
865
901
|
}
|
866
902
|
findMany: {
|
867
|
-
args: Prisma.AccountFindManyArgs<ExtArgs
|
903
|
+
args: Prisma.AccountFindManyArgs<ExtArgs>,
|
868
904
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>[]
|
869
905
|
}
|
870
906
|
create: {
|
871
|
-
args: Prisma.AccountCreateArgs<ExtArgs
|
907
|
+
args: Prisma.AccountCreateArgs<ExtArgs>,
|
872
908
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
873
909
|
}
|
874
910
|
createMany: {
|
875
|
-
args: Prisma.AccountCreateManyArgs<ExtArgs
|
876
|
-
result: BatchPayload
|
911
|
+
args: Prisma.AccountCreateManyArgs<ExtArgs>,
|
912
|
+
result: Prisma.BatchPayload
|
877
913
|
}
|
878
914
|
createManyAndReturn: {
|
879
|
-
args: Prisma.AccountCreateManyAndReturnArgs<ExtArgs
|
915
|
+
args: Prisma.AccountCreateManyAndReturnArgs<ExtArgs>,
|
880
916
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>[]
|
881
917
|
}
|
882
918
|
delete: {
|
883
|
-
args: Prisma.AccountDeleteArgs<ExtArgs
|
919
|
+
args: Prisma.AccountDeleteArgs<ExtArgs>,
|
884
920
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
885
921
|
}
|
886
922
|
update: {
|
887
|
-
args: Prisma.AccountUpdateArgs<ExtArgs
|
923
|
+
args: Prisma.AccountUpdateArgs<ExtArgs>,
|
888
924
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
889
925
|
}
|
890
926
|
deleteMany: {
|
891
|
-
args: Prisma.AccountDeleteManyArgs<ExtArgs
|
892
|
-
result: BatchPayload
|
927
|
+
args: Prisma.AccountDeleteManyArgs<ExtArgs>,
|
928
|
+
result: Prisma.BatchPayload
|
893
929
|
}
|
894
930
|
updateMany: {
|
895
|
-
args: Prisma.AccountUpdateManyArgs<ExtArgs
|
896
|
-
result: BatchPayload
|
931
|
+
args: Prisma.AccountUpdateManyArgs<ExtArgs>,
|
932
|
+
result: Prisma.BatchPayload
|
897
933
|
}
|
898
934
|
upsert: {
|
899
|
-
args: Prisma.AccountUpsertArgs<ExtArgs
|
935
|
+
args: Prisma.AccountUpsertArgs<ExtArgs>,
|
900
936
|
result: $Utils.PayloadToResult<Prisma.$AccountPayload>
|
901
937
|
}
|
902
938
|
aggregate: {
|
903
|
-
args: Prisma.AccountAggregateArgs<ExtArgs
|
939
|
+
args: Prisma.AccountAggregateArgs<ExtArgs>,
|
904
940
|
result: $Utils.Optional<AggregateAccount>
|
905
941
|
}
|
906
942
|
groupBy: {
|
907
|
-
args: Prisma.AccountGroupByArgs<ExtArgs
|
943
|
+
args: Prisma.AccountGroupByArgs<ExtArgs>,
|
908
944
|
result: $Utils.Optional<AccountGroupByOutputType>[]
|
909
945
|
}
|
910
946
|
count: {
|
911
|
-
args: Prisma.AccountCountArgs<ExtArgs
|
947
|
+
args: Prisma.AccountCountArgs<ExtArgs>,
|
912
948
|
result: $Utils.Optional<AccountCountAggregateOutputType> | number
|
913
949
|
}
|
914
950
|
}
|
@@ -918,67 +954,67 @@ export namespace Prisma {
|
|
918
954
|
fields: Prisma.ProfileFieldRefs
|
919
955
|
operations: {
|
920
956
|
findUnique: {
|
921
|
-
args: Prisma.ProfileFindUniqueArgs<ExtArgs
|
957
|
+
args: Prisma.ProfileFindUniqueArgs<ExtArgs>,
|
922
958
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload> | null
|
923
959
|
}
|
924
960
|
findUniqueOrThrow: {
|
925
|
-
args: Prisma.ProfileFindUniqueOrThrowArgs<ExtArgs
|
961
|
+
args: Prisma.ProfileFindUniqueOrThrowArgs<ExtArgs>,
|
926
962
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
927
963
|
}
|
928
964
|
findFirst: {
|
929
|
-
args: Prisma.ProfileFindFirstArgs<ExtArgs
|
965
|
+
args: Prisma.ProfileFindFirstArgs<ExtArgs>,
|
930
966
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload> | null
|
931
967
|
}
|
932
968
|
findFirstOrThrow: {
|
933
|
-
args: Prisma.ProfileFindFirstOrThrowArgs<ExtArgs
|
969
|
+
args: Prisma.ProfileFindFirstOrThrowArgs<ExtArgs>,
|
934
970
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
935
971
|
}
|
936
972
|
findMany: {
|
937
|
-
args: Prisma.ProfileFindManyArgs<ExtArgs
|
973
|
+
args: Prisma.ProfileFindManyArgs<ExtArgs>,
|
938
974
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>[]
|
939
975
|
}
|
940
976
|
create: {
|
941
|
-
args: Prisma.ProfileCreateArgs<ExtArgs
|
977
|
+
args: Prisma.ProfileCreateArgs<ExtArgs>,
|
942
978
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
943
979
|
}
|
944
980
|
createMany: {
|
945
|
-
args: Prisma.ProfileCreateManyArgs<ExtArgs
|
946
|
-
result: BatchPayload
|
981
|
+
args: Prisma.ProfileCreateManyArgs<ExtArgs>,
|
982
|
+
result: Prisma.BatchPayload
|
947
983
|
}
|
948
984
|
createManyAndReturn: {
|
949
|
-
args: Prisma.ProfileCreateManyAndReturnArgs<ExtArgs
|
985
|
+
args: Prisma.ProfileCreateManyAndReturnArgs<ExtArgs>,
|
950
986
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>[]
|
951
987
|
}
|
952
988
|
delete: {
|
953
|
-
args: Prisma.ProfileDeleteArgs<ExtArgs
|
989
|
+
args: Prisma.ProfileDeleteArgs<ExtArgs>,
|
954
990
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
955
991
|
}
|
956
992
|
update: {
|
957
|
-
args: Prisma.ProfileUpdateArgs<ExtArgs
|
993
|
+
args: Prisma.ProfileUpdateArgs<ExtArgs>,
|
958
994
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
959
995
|
}
|
960
996
|
deleteMany: {
|
961
|
-
args: Prisma.ProfileDeleteManyArgs<ExtArgs
|
962
|
-
result: BatchPayload
|
997
|
+
args: Prisma.ProfileDeleteManyArgs<ExtArgs>,
|
998
|
+
result: Prisma.BatchPayload
|
963
999
|
}
|
964
1000
|
updateMany: {
|
965
|
-
args: Prisma.ProfileUpdateManyArgs<ExtArgs
|
966
|
-
result: BatchPayload
|
1001
|
+
args: Prisma.ProfileUpdateManyArgs<ExtArgs>,
|
1002
|
+
result: Prisma.BatchPayload
|
967
1003
|
}
|
968
1004
|
upsert: {
|
969
|
-
args: Prisma.ProfileUpsertArgs<ExtArgs
|
1005
|
+
args: Prisma.ProfileUpsertArgs<ExtArgs>,
|
970
1006
|
result: $Utils.PayloadToResult<Prisma.$ProfilePayload>
|
971
1007
|
}
|
972
1008
|
aggregate: {
|
973
|
-
args: Prisma.ProfileAggregateArgs<ExtArgs
|
1009
|
+
args: Prisma.ProfileAggregateArgs<ExtArgs>,
|
974
1010
|
result: $Utils.Optional<AggregateProfile>
|
975
1011
|
}
|
976
1012
|
groupBy: {
|
977
|
-
args: Prisma.ProfileGroupByArgs<ExtArgs
|
1013
|
+
args: Prisma.ProfileGroupByArgs<ExtArgs>,
|
978
1014
|
result: $Utils.Optional<ProfileGroupByOutputType>[]
|
979
1015
|
}
|
980
1016
|
count: {
|
981
|
-
args: Prisma.ProfileCountArgs<ExtArgs
|
1017
|
+
args: Prisma.ProfileCountArgs<ExtArgs>,
|
982
1018
|
result: $Utils.Optional<ProfileCountAggregateOutputType> | number
|
983
1019
|
}
|
984
1020
|
}
|
@@ -988,67 +1024,67 @@ export namespace Prisma {
|
|
988
1024
|
fields: Prisma.LocationFieldRefs
|
989
1025
|
operations: {
|
990
1026
|
findUnique: {
|
991
|
-
args: Prisma.LocationFindUniqueArgs<ExtArgs
|
1027
|
+
args: Prisma.LocationFindUniqueArgs<ExtArgs>,
|
992
1028
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload> | null
|
993
1029
|
}
|
994
1030
|
findUniqueOrThrow: {
|
995
|
-
args: Prisma.LocationFindUniqueOrThrowArgs<ExtArgs
|
1031
|
+
args: Prisma.LocationFindUniqueOrThrowArgs<ExtArgs>,
|
996
1032
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
997
1033
|
}
|
998
1034
|
findFirst: {
|
999
|
-
args: Prisma.LocationFindFirstArgs<ExtArgs
|
1035
|
+
args: Prisma.LocationFindFirstArgs<ExtArgs>,
|
1000
1036
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload> | null
|
1001
1037
|
}
|
1002
1038
|
findFirstOrThrow: {
|
1003
|
-
args: Prisma.LocationFindFirstOrThrowArgs<ExtArgs
|
1039
|
+
args: Prisma.LocationFindFirstOrThrowArgs<ExtArgs>,
|
1004
1040
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
1005
1041
|
}
|
1006
1042
|
findMany: {
|
1007
|
-
args: Prisma.LocationFindManyArgs<ExtArgs
|
1043
|
+
args: Prisma.LocationFindManyArgs<ExtArgs>,
|
1008
1044
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>[]
|
1009
1045
|
}
|
1010
1046
|
create: {
|
1011
|
-
args: Prisma.LocationCreateArgs<ExtArgs
|
1047
|
+
args: Prisma.LocationCreateArgs<ExtArgs>,
|
1012
1048
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
1013
1049
|
}
|
1014
1050
|
createMany: {
|
1015
|
-
args: Prisma.LocationCreateManyArgs<ExtArgs
|
1016
|
-
result: BatchPayload
|
1051
|
+
args: Prisma.LocationCreateManyArgs<ExtArgs>,
|
1052
|
+
result: Prisma.BatchPayload
|
1017
1053
|
}
|
1018
1054
|
createManyAndReturn: {
|
1019
|
-
args: Prisma.LocationCreateManyAndReturnArgs<ExtArgs
|
1055
|
+
args: Prisma.LocationCreateManyAndReturnArgs<ExtArgs>,
|
1020
1056
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>[]
|
1021
1057
|
}
|
1022
1058
|
delete: {
|
1023
|
-
args: Prisma.LocationDeleteArgs<ExtArgs
|
1059
|
+
args: Prisma.LocationDeleteArgs<ExtArgs>,
|
1024
1060
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
1025
1061
|
}
|
1026
1062
|
update: {
|
1027
|
-
args: Prisma.LocationUpdateArgs<ExtArgs
|
1063
|
+
args: Prisma.LocationUpdateArgs<ExtArgs>,
|
1028
1064
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
1029
1065
|
}
|
1030
1066
|
deleteMany: {
|
1031
|
-
args: Prisma.LocationDeleteManyArgs<ExtArgs
|
1032
|
-
result: BatchPayload
|
1067
|
+
args: Prisma.LocationDeleteManyArgs<ExtArgs>,
|
1068
|
+
result: Prisma.BatchPayload
|
1033
1069
|
}
|
1034
1070
|
updateMany: {
|
1035
|
-
args: Prisma.LocationUpdateManyArgs<ExtArgs
|
1036
|
-
result: BatchPayload
|
1071
|
+
args: Prisma.LocationUpdateManyArgs<ExtArgs>,
|
1072
|
+
result: Prisma.BatchPayload
|
1037
1073
|
}
|
1038
1074
|
upsert: {
|
1039
|
-
args: Prisma.LocationUpsertArgs<ExtArgs
|
1075
|
+
args: Prisma.LocationUpsertArgs<ExtArgs>,
|
1040
1076
|
result: $Utils.PayloadToResult<Prisma.$LocationPayload>
|
1041
1077
|
}
|
1042
1078
|
aggregate: {
|
1043
|
-
args: Prisma.LocationAggregateArgs<ExtArgs
|
1079
|
+
args: Prisma.LocationAggregateArgs<ExtArgs>,
|
1044
1080
|
result: $Utils.Optional<AggregateLocation>
|
1045
1081
|
}
|
1046
1082
|
groupBy: {
|
1047
|
-
args: Prisma.LocationGroupByArgs<ExtArgs
|
1083
|
+
args: Prisma.LocationGroupByArgs<ExtArgs>,
|
1048
1084
|
result: $Utils.Optional<LocationGroupByOutputType>[]
|
1049
1085
|
}
|
1050
1086
|
count: {
|
1051
|
-
args: Prisma.LocationCountArgs<ExtArgs
|
1087
|
+
args: Prisma.LocationCountArgs<ExtArgs>,
|
1052
1088
|
result: $Utils.Optional<LocationCountAggregateOutputType> | number
|
1053
1089
|
}
|
1054
1090
|
}
|
@@ -1058,67 +1094,67 @@ export namespace Prisma {
|
|
1058
1094
|
fields: Prisma.CommentFieldRefs
|
1059
1095
|
operations: {
|
1060
1096
|
findUnique: {
|
1061
|
-
args: Prisma.CommentFindUniqueArgs<ExtArgs
|
1097
|
+
args: Prisma.CommentFindUniqueArgs<ExtArgs>,
|
1062
1098
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload> | null
|
1063
1099
|
}
|
1064
1100
|
findUniqueOrThrow: {
|
1065
|
-
args: Prisma.CommentFindUniqueOrThrowArgs<ExtArgs
|
1101
|
+
args: Prisma.CommentFindUniqueOrThrowArgs<ExtArgs>,
|
1066
1102
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1067
1103
|
}
|
1068
1104
|
findFirst: {
|
1069
|
-
args: Prisma.CommentFindFirstArgs<ExtArgs
|
1105
|
+
args: Prisma.CommentFindFirstArgs<ExtArgs>,
|
1070
1106
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload> | null
|
1071
1107
|
}
|
1072
1108
|
findFirstOrThrow: {
|
1073
|
-
args: Prisma.CommentFindFirstOrThrowArgs<ExtArgs
|
1109
|
+
args: Prisma.CommentFindFirstOrThrowArgs<ExtArgs>,
|
1074
1110
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1075
1111
|
}
|
1076
1112
|
findMany: {
|
1077
|
-
args: Prisma.CommentFindManyArgs<ExtArgs
|
1113
|
+
args: Prisma.CommentFindManyArgs<ExtArgs>,
|
1078
1114
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>[]
|
1079
1115
|
}
|
1080
1116
|
create: {
|
1081
|
-
args: Prisma.CommentCreateArgs<ExtArgs
|
1117
|
+
args: Prisma.CommentCreateArgs<ExtArgs>,
|
1082
1118
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1083
1119
|
}
|
1084
1120
|
createMany: {
|
1085
|
-
args: Prisma.CommentCreateManyArgs<ExtArgs
|
1086
|
-
result: BatchPayload
|
1121
|
+
args: Prisma.CommentCreateManyArgs<ExtArgs>,
|
1122
|
+
result: Prisma.BatchPayload
|
1087
1123
|
}
|
1088
1124
|
createManyAndReturn: {
|
1089
|
-
args: Prisma.CommentCreateManyAndReturnArgs<ExtArgs
|
1125
|
+
args: Prisma.CommentCreateManyAndReturnArgs<ExtArgs>,
|
1090
1126
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>[]
|
1091
1127
|
}
|
1092
1128
|
delete: {
|
1093
|
-
args: Prisma.CommentDeleteArgs<ExtArgs
|
1129
|
+
args: Prisma.CommentDeleteArgs<ExtArgs>,
|
1094
1130
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1095
1131
|
}
|
1096
1132
|
update: {
|
1097
|
-
args: Prisma.CommentUpdateArgs<ExtArgs
|
1133
|
+
args: Prisma.CommentUpdateArgs<ExtArgs>,
|
1098
1134
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1099
1135
|
}
|
1100
1136
|
deleteMany: {
|
1101
|
-
args: Prisma.CommentDeleteManyArgs<ExtArgs
|
1102
|
-
result: BatchPayload
|
1137
|
+
args: Prisma.CommentDeleteManyArgs<ExtArgs>,
|
1138
|
+
result: Prisma.BatchPayload
|
1103
1139
|
}
|
1104
1140
|
updateMany: {
|
1105
|
-
args: Prisma.CommentUpdateManyArgs<ExtArgs
|
1106
|
-
result: BatchPayload
|
1141
|
+
args: Prisma.CommentUpdateManyArgs<ExtArgs>,
|
1142
|
+
result: Prisma.BatchPayload
|
1107
1143
|
}
|
1108
1144
|
upsert: {
|
1109
|
-
args: Prisma.CommentUpsertArgs<ExtArgs
|
1145
|
+
args: Prisma.CommentUpsertArgs<ExtArgs>,
|
1110
1146
|
result: $Utils.PayloadToResult<Prisma.$CommentPayload>
|
1111
1147
|
}
|
1112
1148
|
aggregate: {
|
1113
|
-
args: Prisma.CommentAggregateArgs<ExtArgs
|
1149
|
+
args: Prisma.CommentAggregateArgs<ExtArgs>,
|
1114
1150
|
result: $Utils.Optional<AggregateComment>
|
1115
1151
|
}
|
1116
1152
|
groupBy: {
|
1117
|
-
args: Prisma.CommentGroupByArgs<ExtArgs
|
1153
|
+
args: Prisma.CommentGroupByArgs<ExtArgs>,
|
1118
1154
|
result: $Utils.Optional<CommentGroupByOutputType>[]
|
1119
1155
|
}
|
1120
1156
|
count: {
|
1121
|
-
args: Prisma.CommentCountArgs<ExtArgs
|
1157
|
+
args: Prisma.CommentCountArgs<ExtArgs>,
|
1122
1158
|
result: $Utils.Optional<CommentCountAggregateOutputType> | number
|
1123
1159
|
}
|
1124
1160
|
}
|
@@ -1128,67 +1164,67 @@ export namespace Prisma {
|
|
1128
1164
|
fields: Prisma.TagFieldRefs
|
1129
1165
|
operations: {
|
1130
1166
|
findUnique: {
|
1131
|
-
args: Prisma.TagFindUniqueArgs<ExtArgs
|
1167
|
+
args: Prisma.TagFindUniqueArgs<ExtArgs>,
|
1132
1168
|
result: $Utils.PayloadToResult<Prisma.$TagPayload> | null
|
1133
1169
|
}
|
1134
1170
|
findUniqueOrThrow: {
|
1135
|
-
args: Prisma.TagFindUniqueOrThrowArgs<ExtArgs
|
1171
|
+
args: Prisma.TagFindUniqueOrThrowArgs<ExtArgs>,
|
1136
1172
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1137
1173
|
}
|
1138
1174
|
findFirst: {
|
1139
|
-
args: Prisma.TagFindFirstArgs<ExtArgs
|
1175
|
+
args: Prisma.TagFindFirstArgs<ExtArgs>,
|
1140
1176
|
result: $Utils.PayloadToResult<Prisma.$TagPayload> | null
|
1141
1177
|
}
|
1142
1178
|
findFirstOrThrow: {
|
1143
|
-
args: Prisma.TagFindFirstOrThrowArgs<ExtArgs
|
1179
|
+
args: Prisma.TagFindFirstOrThrowArgs<ExtArgs>,
|
1144
1180
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1145
1181
|
}
|
1146
1182
|
findMany: {
|
1147
|
-
args: Prisma.TagFindManyArgs<ExtArgs
|
1183
|
+
args: Prisma.TagFindManyArgs<ExtArgs>,
|
1148
1184
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>[]
|
1149
1185
|
}
|
1150
1186
|
create: {
|
1151
|
-
args: Prisma.TagCreateArgs<ExtArgs
|
1187
|
+
args: Prisma.TagCreateArgs<ExtArgs>,
|
1152
1188
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1153
1189
|
}
|
1154
1190
|
createMany: {
|
1155
|
-
args: Prisma.TagCreateManyArgs<ExtArgs
|
1156
|
-
result: BatchPayload
|
1191
|
+
args: Prisma.TagCreateManyArgs<ExtArgs>,
|
1192
|
+
result: Prisma.BatchPayload
|
1157
1193
|
}
|
1158
1194
|
createManyAndReturn: {
|
1159
|
-
args: Prisma.TagCreateManyAndReturnArgs<ExtArgs
|
1195
|
+
args: Prisma.TagCreateManyAndReturnArgs<ExtArgs>,
|
1160
1196
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>[]
|
1161
1197
|
}
|
1162
1198
|
delete: {
|
1163
|
-
args: Prisma.TagDeleteArgs<ExtArgs
|
1199
|
+
args: Prisma.TagDeleteArgs<ExtArgs>,
|
1164
1200
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1165
1201
|
}
|
1166
1202
|
update: {
|
1167
|
-
args: Prisma.TagUpdateArgs<ExtArgs
|
1203
|
+
args: Prisma.TagUpdateArgs<ExtArgs>,
|
1168
1204
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1169
1205
|
}
|
1170
1206
|
deleteMany: {
|
1171
|
-
args: Prisma.TagDeleteManyArgs<ExtArgs
|
1172
|
-
result: BatchPayload
|
1207
|
+
args: Prisma.TagDeleteManyArgs<ExtArgs>,
|
1208
|
+
result: Prisma.BatchPayload
|
1173
1209
|
}
|
1174
1210
|
updateMany: {
|
1175
|
-
args: Prisma.TagUpdateManyArgs<ExtArgs
|
1176
|
-
result: BatchPayload
|
1211
|
+
args: Prisma.TagUpdateManyArgs<ExtArgs>,
|
1212
|
+
result: Prisma.BatchPayload
|
1177
1213
|
}
|
1178
1214
|
upsert: {
|
1179
|
-
args: Prisma.TagUpsertArgs<ExtArgs
|
1215
|
+
args: Prisma.TagUpsertArgs<ExtArgs>,
|
1180
1216
|
result: $Utils.PayloadToResult<Prisma.$TagPayload>
|
1181
1217
|
}
|
1182
1218
|
aggregate: {
|
1183
|
-
args: Prisma.TagAggregateArgs<ExtArgs
|
1219
|
+
args: Prisma.TagAggregateArgs<ExtArgs>,
|
1184
1220
|
result: $Utils.Optional<AggregateTag>
|
1185
1221
|
}
|
1186
1222
|
groupBy: {
|
1187
|
-
args: Prisma.TagGroupByArgs<ExtArgs
|
1223
|
+
args: Prisma.TagGroupByArgs<ExtArgs>,
|
1188
1224
|
result: $Utils.Optional<TagGroupByOutputType>[]
|
1189
1225
|
}
|
1190
1226
|
count: {
|
1191
|
-
args: Prisma.TagCountArgs<ExtArgs
|
1227
|
+
args: Prisma.TagCountArgs<ExtArgs>,
|
1192
1228
|
result: $Utils.Optional<TagCountAggregateOutputType> | number
|
1193
1229
|
}
|
1194
1230
|
}
|
@@ -1198,67 +1234,67 @@ export namespace Prisma {
|
|
1198
1234
|
fields: Prisma.TagGroupFieldRefs
|
1199
1235
|
operations: {
|
1200
1236
|
findUnique: {
|
1201
|
-
args: Prisma.TagGroupFindUniqueArgs<ExtArgs
|
1237
|
+
args: Prisma.TagGroupFindUniqueArgs<ExtArgs>,
|
1202
1238
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload> | null
|
1203
1239
|
}
|
1204
1240
|
findUniqueOrThrow: {
|
1205
|
-
args: Prisma.TagGroupFindUniqueOrThrowArgs<ExtArgs
|
1241
|
+
args: Prisma.TagGroupFindUniqueOrThrowArgs<ExtArgs>,
|
1206
1242
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1207
1243
|
}
|
1208
1244
|
findFirst: {
|
1209
|
-
args: Prisma.TagGroupFindFirstArgs<ExtArgs
|
1245
|
+
args: Prisma.TagGroupFindFirstArgs<ExtArgs>,
|
1210
1246
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload> | null
|
1211
1247
|
}
|
1212
1248
|
findFirstOrThrow: {
|
1213
|
-
args: Prisma.TagGroupFindFirstOrThrowArgs<ExtArgs
|
1249
|
+
args: Prisma.TagGroupFindFirstOrThrowArgs<ExtArgs>,
|
1214
1250
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1215
1251
|
}
|
1216
1252
|
findMany: {
|
1217
|
-
args: Prisma.TagGroupFindManyArgs<ExtArgs
|
1253
|
+
args: Prisma.TagGroupFindManyArgs<ExtArgs>,
|
1218
1254
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>[]
|
1219
1255
|
}
|
1220
1256
|
create: {
|
1221
|
-
args: Prisma.TagGroupCreateArgs<ExtArgs
|
1257
|
+
args: Prisma.TagGroupCreateArgs<ExtArgs>,
|
1222
1258
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1223
1259
|
}
|
1224
1260
|
createMany: {
|
1225
|
-
args: Prisma.TagGroupCreateManyArgs<ExtArgs
|
1226
|
-
result: BatchPayload
|
1261
|
+
args: Prisma.TagGroupCreateManyArgs<ExtArgs>,
|
1262
|
+
result: Prisma.BatchPayload
|
1227
1263
|
}
|
1228
1264
|
createManyAndReturn: {
|
1229
|
-
args: Prisma.TagGroupCreateManyAndReturnArgs<ExtArgs
|
1265
|
+
args: Prisma.TagGroupCreateManyAndReturnArgs<ExtArgs>,
|
1230
1266
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>[]
|
1231
1267
|
}
|
1232
1268
|
delete: {
|
1233
|
-
args: Prisma.TagGroupDeleteArgs<ExtArgs
|
1269
|
+
args: Prisma.TagGroupDeleteArgs<ExtArgs>,
|
1234
1270
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1235
1271
|
}
|
1236
1272
|
update: {
|
1237
|
-
args: Prisma.TagGroupUpdateArgs<ExtArgs
|
1273
|
+
args: Prisma.TagGroupUpdateArgs<ExtArgs>,
|
1238
1274
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1239
1275
|
}
|
1240
1276
|
deleteMany: {
|
1241
|
-
args: Prisma.TagGroupDeleteManyArgs<ExtArgs
|
1242
|
-
result: BatchPayload
|
1277
|
+
args: Prisma.TagGroupDeleteManyArgs<ExtArgs>,
|
1278
|
+
result: Prisma.BatchPayload
|
1243
1279
|
}
|
1244
1280
|
updateMany: {
|
1245
|
-
args: Prisma.TagGroupUpdateManyArgs<ExtArgs
|
1246
|
-
result: BatchPayload
|
1281
|
+
args: Prisma.TagGroupUpdateManyArgs<ExtArgs>,
|
1282
|
+
result: Prisma.BatchPayload
|
1247
1283
|
}
|
1248
1284
|
upsert: {
|
1249
|
-
args: Prisma.TagGroupUpsertArgs<ExtArgs
|
1285
|
+
args: Prisma.TagGroupUpsertArgs<ExtArgs>,
|
1250
1286
|
result: $Utils.PayloadToResult<Prisma.$TagGroupPayload>
|
1251
1287
|
}
|
1252
1288
|
aggregate: {
|
1253
|
-
args: Prisma.TagGroupAggregateArgs<ExtArgs
|
1289
|
+
args: Prisma.TagGroupAggregateArgs<ExtArgs>,
|
1254
1290
|
result: $Utils.Optional<AggregateTagGroup>
|
1255
1291
|
}
|
1256
1292
|
groupBy: {
|
1257
|
-
args: Prisma.TagGroupGroupByArgs<ExtArgs
|
1293
|
+
args: Prisma.TagGroupGroupByArgs<ExtArgs>,
|
1258
1294
|
result: $Utils.Optional<TagGroupGroupByOutputType>[]
|
1259
1295
|
}
|
1260
1296
|
count: {
|
1261
|
-
args: Prisma.TagGroupCountArgs<ExtArgs
|
1297
|
+
args: Prisma.TagGroupCountArgs<ExtArgs>,
|
1262
1298
|
result: $Utils.Optional<TagGroupCountAggregateOutputType> | number
|
1263
1299
|
}
|
1264
1300
|
}
|
@@ -1268,67 +1304,67 @@ export namespace Prisma {
|
|
1268
1304
|
fields: Prisma.EventFieldRefs
|
1269
1305
|
operations: {
|
1270
1306
|
findUnique: {
|
1271
|
-
args: Prisma.EventFindUniqueArgs<ExtArgs
|
1307
|
+
args: Prisma.EventFindUniqueArgs<ExtArgs>,
|
1272
1308
|
result: $Utils.PayloadToResult<Prisma.$EventPayload> | null
|
1273
1309
|
}
|
1274
1310
|
findUniqueOrThrow: {
|
1275
|
-
args: Prisma.EventFindUniqueOrThrowArgs<ExtArgs
|
1311
|
+
args: Prisma.EventFindUniqueOrThrowArgs<ExtArgs>,
|
1276
1312
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1277
1313
|
}
|
1278
1314
|
findFirst: {
|
1279
|
-
args: Prisma.EventFindFirstArgs<ExtArgs
|
1315
|
+
args: Prisma.EventFindFirstArgs<ExtArgs>,
|
1280
1316
|
result: $Utils.PayloadToResult<Prisma.$EventPayload> | null
|
1281
1317
|
}
|
1282
1318
|
findFirstOrThrow: {
|
1283
|
-
args: Prisma.EventFindFirstOrThrowArgs<ExtArgs
|
1319
|
+
args: Prisma.EventFindFirstOrThrowArgs<ExtArgs>,
|
1284
1320
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1285
1321
|
}
|
1286
1322
|
findMany: {
|
1287
|
-
args: Prisma.EventFindManyArgs<ExtArgs
|
1323
|
+
args: Prisma.EventFindManyArgs<ExtArgs>,
|
1288
1324
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>[]
|
1289
1325
|
}
|
1290
1326
|
create: {
|
1291
|
-
args: Prisma.EventCreateArgs<ExtArgs
|
1327
|
+
args: Prisma.EventCreateArgs<ExtArgs>,
|
1292
1328
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1293
1329
|
}
|
1294
1330
|
createMany: {
|
1295
|
-
args: Prisma.EventCreateManyArgs<ExtArgs
|
1296
|
-
result: BatchPayload
|
1331
|
+
args: Prisma.EventCreateManyArgs<ExtArgs>,
|
1332
|
+
result: Prisma.BatchPayload
|
1297
1333
|
}
|
1298
1334
|
createManyAndReturn: {
|
1299
|
-
args: Prisma.EventCreateManyAndReturnArgs<ExtArgs
|
1335
|
+
args: Prisma.EventCreateManyAndReturnArgs<ExtArgs>,
|
1300
1336
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>[]
|
1301
1337
|
}
|
1302
1338
|
delete: {
|
1303
|
-
args: Prisma.EventDeleteArgs<ExtArgs
|
1339
|
+
args: Prisma.EventDeleteArgs<ExtArgs>,
|
1304
1340
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1305
1341
|
}
|
1306
1342
|
update: {
|
1307
|
-
args: Prisma.EventUpdateArgs<ExtArgs
|
1343
|
+
args: Prisma.EventUpdateArgs<ExtArgs>,
|
1308
1344
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1309
1345
|
}
|
1310
1346
|
deleteMany: {
|
1311
|
-
args: Prisma.EventDeleteManyArgs<ExtArgs
|
1312
|
-
result: BatchPayload
|
1347
|
+
args: Prisma.EventDeleteManyArgs<ExtArgs>,
|
1348
|
+
result: Prisma.BatchPayload
|
1313
1349
|
}
|
1314
1350
|
updateMany: {
|
1315
|
-
args: Prisma.EventUpdateManyArgs<ExtArgs
|
1316
|
-
result: BatchPayload
|
1351
|
+
args: Prisma.EventUpdateManyArgs<ExtArgs>,
|
1352
|
+
result: Prisma.BatchPayload
|
1317
1353
|
}
|
1318
1354
|
upsert: {
|
1319
|
-
args: Prisma.EventUpsertArgs<ExtArgs
|
1355
|
+
args: Prisma.EventUpsertArgs<ExtArgs>,
|
1320
1356
|
result: $Utils.PayloadToResult<Prisma.$EventPayload>
|
1321
1357
|
}
|
1322
1358
|
aggregate: {
|
1323
|
-
args: Prisma.EventAggregateArgs<ExtArgs
|
1359
|
+
args: Prisma.EventAggregateArgs<ExtArgs>,
|
1324
1360
|
result: $Utils.Optional<AggregateEvent>
|
1325
1361
|
}
|
1326
1362
|
groupBy: {
|
1327
|
-
args: Prisma.EventGroupByArgs<ExtArgs
|
1363
|
+
args: Prisma.EventGroupByArgs<ExtArgs>,
|
1328
1364
|
result: $Utils.Optional<EventGroupByOutputType>[]
|
1329
1365
|
}
|
1330
1366
|
count: {
|
1331
|
-
args: Prisma.EventCountArgs<ExtArgs
|
1367
|
+
args: Prisma.EventCountArgs<ExtArgs>,
|
1332
1368
|
result: $Utils.Optional<EventCountAggregateOutputType> | number
|
1333
1369
|
}
|
1334
1370
|
}
|
@@ -1338,67 +1374,67 @@ export namespace Prisma {
|
|
1338
1374
|
fields: Prisma.EventFolderFieldRefs
|
1339
1375
|
operations: {
|
1340
1376
|
findUnique: {
|
1341
|
-
args: Prisma.EventFolderFindUniqueArgs<ExtArgs
|
1377
|
+
args: Prisma.EventFolderFindUniqueArgs<ExtArgs>,
|
1342
1378
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload> | null
|
1343
1379
|
}
|
1344
1380
|
findUniqueOrThrow: {
|
1345
|
-
args: Prisma.EventFolderFindUniqueOrThrowArgs<ExtArgs
|
1381
|
+
args: Prisma.EventFolderFindUniqueOrThrowArgs<ExtArgs>,
|
1346
1382
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1347
1383
|
}
|
1348
1384
|
findFirst: {
|
1349
|
-
args: Prisma.EventFolderFindFirstArgs<ExtArgs
|
1385
|
+
args: Prisma.EventFolderFindFirstArgs<ExtArgs>,
|
1350
1386
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload> | null
|
1351
1387
|
}
|
1352
1388
|
findFirstOrThrow: {
|
1353
|
-
args: Prisma.EventFolderFindFirstOrThrowArgs<ExtArgs
|
1389
|
+
args: Prisma.EventFolderFindFirstOrThrowArgs<ExtArgs>,
|
1354
1390
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1355
1391
|
}
|
1356
1392
|
findMany: {
|
1357
|
-
args: Prisma.EventFolderFindManyArgs<ExtArgs
|
1393
|
+
args: Prisma.EventFolderFindManyArgs<ExtArgs>,
|
1358
1394
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>[]
|
1359
1395
|
}
|
1360
1396
|
create: {
|
1361
|
-
args: Prisma.EventFolderCreateArgs<ExtArgs
|
1397
|
+
args: Prisma.EventFolderCreateArgs<ExtArgs>,
|
1362
1398
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1363
1399
|
}
|
1364
1400
|
createMany: {
|
1365
|
-
args: Prisma.EventFolderCreateManyArgs<ExtArgs
|
1366
|
-
result: BatchPayload
|
1401
|
+
args: Prisma.EventFolderCreateManyArgs<ExtArgs>,
|
1402
|
+
result: Prisma.BatchPayload
|
1367
1403
|
}
|
1368
1404
|
createManyAndReturn: {
|
1369
|
-
args: Prisma.EventFolderCreateManyAndReturnArgs<ExtArgs
|
1405
|
+
args: Prisma.EventFolderCreateManyAndReturnArgs<ExtArgs>,
|
1370
1406
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>[]
|
1371
1407
|
}
|
1372
1408
|
delete: {
|
1373
|
-
args: Prisma.EventFolderDeleteArgs<ExtArgs
|
1409
|
+
args: Prisma.EventFolderDeleteArgs<ExtArgs>,
|
1374
1410
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1375
1411
|
}
|
1376
1412
|
update: {
|
1377
|
-
args: Prisma.EventFolderUpdateArgs<ExtArgs
|
1413
|
+
args: Prisma.EventFolderUpdateArgs<ExtArgs>,
|
1378
1414
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1379
1415
|
}
|
1380
1416
|
deleteMany: {
|
1381
|
-
args: Prisma.EventFolderDeleteManyArgs<ExtArgs
|
1382
|
-
result: BatchPayload
|
1417
|
+
args: Prisma.EventFolderDeleteManyArgs<ExtArgs>,
|
1418
|
+
result: Prisma.BatchPayload
|
1383
1419
|
}
|
1384
1420
|
updateMany: {
|
1385
|
-
args: Prisma.EventFolderUpdateManyArgs<ExtArgs
|
1386
|
-
result: BatchPayload
|
1421
|
+
args: Prisma.EventFolderUpdateManyArgs<ExtArgs>,
|
1422
|
+
result: Prisma.BatchPayload
|
1387
1423
|
}
|
1388
1424
|
upsert: {
|
1389
|
-
args: Prisma.EventFolderUpsertArgs<ExtArgs
|
1425
|
+
args: Prisma.EventFolderUpsertArgs<ExtArgs>,
|
1390
1426
|
result: $Utils.PayloadToResult<Prisma.$EventFolderPayload>
|
1391
1427
|
}
|
1392
1428
|
aggregate: {
|
1393
|
-
args: Prisma.EventFolderAggregateArgs<ExtArgs
|
1429
|
+
args: Prisma.EventFolderAggregateArgs<ExtArgs>,
|
1394
1430
|
result: $Utils.Optional<AggregateEventFolder>
|
1395
1431
|
}
|
1396
1432
|
groupBy: {
|
1397
|
-
args: Prisma.EventFolderGroupByArgs<ExtArgs
|
1433
|
+
args: Prisma.EventFolderGroupByArgs<ExtArgs>,
|
1398
1434
|
result: $Utils.Optional<EventFolderGroupByOutputType>[]
|
1399
1435
|
}
|
1400
1436
|
count: {
|
1401
|
-
args: Prisma.EventFolderCountArgs<ExtArgs
|
1437
|
+
args: Prisma.EventFolderCountArgs<ExtArgs>,
|
1402
1438
|
result: $Utils.Optional<EventFolderCountAggregateOutputType> | number
|
1403
1439
|
}
|
1404
1440
|
}
|
@@ -1408,67 +1444,67 @@ export namespace Prisma {
|
|
1408
1444
|
fields: Prisma.MessageFieldRefs
|
1409
1445
|
operations: {
|
1410
1446
|
findUnique: {
|
1411
|
-
args: Prisma.MessageFindUniqueArgs<ExtArgs
|
1447
|
+
args: Prisma.MessageFindUniqueArgs<ExtArgs>,
|
1412
1448
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload> | null
|
1413
1449
|
}
|
1414
1450
|
findUniqueOrThrow: {
|
1415
|
-
args: Prisma.MessageFindUniqueOrThrowArgs<ExtArgs
|
1451
|
+
args: Prisma.MessageFindUniqueOrThrowArgs<ExtArgs>,
|
1416
1452
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1417
1453
|
}
|
1418
1454
|
findFirst: {
|
1419
|
-
args: Prisma.MessageFindFirstArgs<ExtArgs
|
1455
|
+
args: Prisma.MessageFindFirstArgs<ExtArgs>,
|
1420
1456
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload> | null
|
1421
1457
|
}
|
1422
1458
|
findFirstOrThrow: {
|
1423
|
-
args: Prisma.MessageFindFirstOrThrowArgs<ExtArgs
|
1459
|
+
args: Prisma.MessageFindFirstOrThrowArgs<ExtArgs>,
|
1424
1460
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1425
1461
|
}
|
1426
1462
|
findMany: {
|
1427
|
-
args: Prisma.MessageFindManyArgs<ExtArgs
|
1463
|
+
args: Prisma.MessageFindManyArgs<ExtArgs>,
|
1428
1464
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>[]
|
1429
1465
|
}
|
1430
1466
|
create: {
|
1431
|
-
args: Prisma.MessageCreateArgs<ExtArgs
|
1467
|
+
args: Prisma.MessageCreateArgs<ExtArgs>,
|
1432
1468
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1433
1469
|
}
|
1434
1470
|
createMany: {
|
1435
|
-
args: Prisma.MessageCreateManyArgs<ExtArgs
|
1436
|
-
result: BatchPayload
|
1471
|
+
args: Prisma.MessageCreateManyArgs<ExtArgs>,
|
1472
|
+
result: Prisma.BatchPayload
|
1437
1473
|
}
|
1438
1474
|
createManyAndReturn: {
|
1439
|
-
args: Prisma.MessageCreateManyAndReturnArgs<ExtArgs
|
1475
|
+
args: Prisma.MessageCreateManyAndReturnArgs<ExtArgs>,
|
1440
1476
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>[]
|
1441
1477
|
}
|
1442
1478
|
delete: {
|
1443
|
-
args: Prisma.MessageDeleteArgs<ExtArgs
|
1479
|
+
args: Prisma.MessageDeleteArgs<ExtArgs>,
|
1444
1480
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1445
1481
|
}
|
1446
1482
|
update: {
|
1447
|
-
args: Prisma.MessageUpdateArgs<ExtArgs
|
1483
|
+
args: Prisma.MessageUpdateArgs<ExtArgs>,
|
1448
1484
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1449
1485
|
}
|
1450
1486
|
deleteMany: {
|
1451
|
-
args: Prisma.MessageDeleteManyArgs<ExtArgs
|
1452
|
-
result: BatchPayload
|
1487
|
+
args: Prisma.MessageDeleteManyArgs<ExtArgs>,
|
1488
|
+
result: Prisma.BatchPayload
|
1453
1489
|
}
|
1454
1490
|
updateMany: {
|
1455
|
-
args: Prisma.MessageUpdateManyArgs<ExtArgs
|
1456
|
-
result: BatchPayload
|
1491
|
+
args: Prisma.MessageUpdateManyArgs<ExtArgs>,
|
1492
|
+
result: Prisma.BatchPayload
|
1457
1493
|
}
|
1458
1494
|
upsert: {
|
1459
|
-
args: Prisma.MessageUpsertArgs<ExtArgs
|
1495
|
+
args: Prisma.MessageUpsertArgs<ExtArgs>,
|
1460
1496
|
result: $Utils.PayloadToResult<Prisma.$MessagePayload>
|
1461
1497
|
}
|
1462
1498
|
aggregate: {
|
1463
|
-
args: Prisma.MessageAggregateArgs<ExtArgs
|
1499
|
+
args: Prisma.MessageAggregateArgs<ExtArgs>,
|
1464
1500
|
result: $Utils.Optional<AggregateMessage>
|
1465
1501
|
}
|
1466
1502
|
groupBy: {
|
1467
|
-
args: Prisma.MessageGroupByArgs<ExtArgs
|
1503
|
+
args: Prisma.MessageGroupByArgs<ExtArgs>,
|
1468
1504
|
result: $Utils.Optional<MessageGroupByOutputType>[]
|
1469
1505
|
}
|
1470
1506
|
count: {
|
1471
|
-
args: Prisma.MessageCountArgs<ExtArgs
|
1507
|
+
args: Prisma.MessageCountArgs<ExtArgs>,
|
1472
1508
|
result: $Utils.Optional<MessageCountAggregateOutputType> | number
|
1473
1509
|
}
|
1474
1510
|
}
|
@@ -1478,67 +1514,67 @@ export namespace Prisma {
|
|
1478
1514
|
fields: Prisma.CannedResponseFieldRefs
|
1479
1515
|
operations: {
|
1480
1516
|
findUnique: {
|
1481
|
-
args: Prisma.CannedResponseFindUniqueArgs<ExtArgs
|
1517
|
+
args: Prisma.CannedResponseFindUniqueArgs<ExtArgs>,
|
1482
1518
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload> | null
|
1483
1519
|
}
|
1484
1520
|
findUniqueOrThrow: {
|
1485
|
-
args: Prisma.CannedResponseFindUniqueOrThrowArgs<ExtArgs
|
1521
|
+
args: Prisma.CannedResponseFindUniqueOrThrowArgs<ExtArgs>,
|
1486
1522
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1487
1523
|
}
|
1488
1524
|
findFirst: {
|
1489
|
-
args: Prisma.CannedResponseFindFirstArgs<ExtArgs
|
1525
|
+
args: Prisma.CannedResponseFindFirstArgs<ExtArgs>,
|
1490
1526
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload> | null
|
1491
1527
|
}
|
1492
1528
|
findFirstOrThrow: {
|
1493
|
-
args: Prisma.CannedResponseFindFirstOrThrowArgs<ExtArgs
|
1529
|
+
args: Prisma.CannedResponseFindFirstOrThrowArgs<ExtArgs>,
|
1494
1530
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1495
1531
|
}
|
1496
1532
|
findMany: {
|
1497
|
-
args: Prisma.CannedResponseFindManyArgs<ExtArgs
|
1533
|
+
args: Prisma.CannedResponseFindManyArgs<ExtArgs>,
|
1498
1534
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>[]
|
1499
1535
|
}
|
1500
1536
|
create: {
|
1501
|
-
args: Prisma.CannedResponseCreateArgs<ExtArgs
|
1537
|
+
args: Prisma.CannedResponseCreateArgs<ExtArgs>,
|
1502
1538
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1503
1539
|
}
|
1504
1540
|
createMany: {
|
1505
|
-
args: Prisma.CannedResponseCreateManyArgs<ExtArgs
|
1506
|
-
result: BatchPayload
|
1541
|
+
args: Prisma.CannedResponseCreateManyArgs<ExtArgs>,
|
1542
|
+
result: Prisma.BatchPayload
|
1507
1543
|
}
|
1508
1544
|
createManyAndReturn: {
|
1509
|
-
args: Prisma.CannedResponseCreateManyAndReturnArgs<ExtArgs
|
1545
|
+
args: Prisma.CannedResponseCreateManyAndReturnArgs<ExtArgs>,
|
1510
1546
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>[]
|
1511
1547
|
}
|
1512
1548
|
delete: {
|
1513
|
-
args: Prisma.CannedResponseDeleteArgs<ExtArgs
|
1549
|
+
args: Prisma.CannedResponseDeleteArgs<ExtArgs>,
|
1514
1550
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1515
1551
|
}
|
1516
1552
|
update: {
|
1517
|
-
args: Prisma.CannedResponseUpdateArgs<ExtArgs
|
1553
|
+
args: Prisma.CannedResponseUpdateArgs<ExtArgs>,
|
1518
1554
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1519
1555
|
}
|
1520
1556
|
deleteMany: {
|
1521
|
-
args: Prisma.CannedResponseDeleteManyArgs<ExtArgs
|
1522
|
-
result: BatchPayload
|
1557
|
+
args: Prisma.CannedResponseDeleteManyArgs<ExtArgs>,
|
1558
|
+
result: Prisma.BatchPayload
|
1523
1559
|
}
|
1524
1560
|
updateMany: {
|
1525
|
-
args: Prisma.CannedResponseUpdateManyArgs<ExtArgs
|
1526
|
-
result: BatchPayload
|
1561
|
+
args: Prisma.CannedResponseUpdateManyArgs<ExtArgs>,
|
1562
|
+
result: Prisma.BatchPayload
|
1527
1563
|
}
|
1528
1564
|
upsert: {
|
1529
|
-
args: Prisma.CannedResponseUpsertArgs<ExtArgs
|
1565
|
+
args: Prisma.CannedResponseUpsertArgs<ExtArgs>,
|
1530
1566
|
result: $Utils.PayloadToResult<Prisma.$CannedResponsePayload>
|
1531
1567
|
}
|
1532
1568
|
aggregate: {
|
1533
|
-
args: Prisma.CannedResponseAggregateArgs<ExtArgs
|
1569
|
+
args: Prisma.CannedResponseAggregateArgs<ExtArgs>,
|
1534
1570
|
result: $Utils.Optional<AggregateCannedResponse>
|
1535
1571
|
}
|
1536
1572
|
groupBy: {
|
1537
|
-
args: Prisma.CannedResponseGroupByArgs<ExtArgs
|
1573
|
+
args: Prisma.CannedResponseGroupByArgs<ExtArgs>,
|
1538
1574
|
result: $Utils.Optional<CannedResponseGroupByOutputType>[]
|
1539
1575
|
}
|
1540
1576
|
count: {
|
1541
|
-
args: Prisma.CannedResponseCountArgs<ExtArgs
|
1577
|
+
args: Prisma.CannedResponseCountArgs<ExtArgs>,
|
1542
1578
|
result: $Utils.Optional<CannedResponseCountAggregateOutputType> | number
|
1543
1579
|
}
|
1544
1580
|
}
|
@@ -1548,67 +1584,67 @@ export namespace Prisma {
|
|
1548
1584
|
fields: Prisma.EnumsFieldRefs
|
1549
1585
|
operations: {
|
1550
1586
|
findUnique: {
|
1551
|
-
args: Prisma.EnumsFindUniqueArgs<ExtArgs
|
1587
|
+
args: Prisma.EnumsFindUniqueArgs<ExtArgs>,
|
1552
1588
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload> | null
|
1553
1589
|
}
|
1554
1590
|
findUniqueOrThrow: {
|
1555
|
-
args: Prisma.EnumsFindUniqueOrThrowArgs<ExtArgs
|
1591
|
+
args: Prisma.EnumsFindUniqueOrThrowArgs<ExtArgs>,
|
1556
1592
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1557
1593
|
}
|
1558
1594
|
findFirst: {
|
1559
|
-
args: Prisma.EnumsFindFirstArgs<ExtArgs
|
1595
|
+
args: Prisma.EnumsFindFirstArgs<ExtArgs>,
|
1560
1596
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload> | null
|
1561
1597
|
}
|
1562
1598
|
findFirstOrThrow: {
|
1563
|
-
args: Prisma.EnumsFindFirstOrThrowArgs<ExtArgs
|
1599
|
+
args: Prisma.EnumsFindFirstOrThrowArgs<ExtArgs>,
|
1564
1600
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1565
1601
|
}
|
1566
1602
|
findMany: {
|
1567
|
-
args: Prisma.EnumsFindManyArgs<ExtArgs
|
1603
|
+
args: Prisma.EnumsFindManyArgs<ExtArgs>,
|
1568
1604
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>[]
|
1569
1605
|
}
|
1570
1606
|
create: {
|
1571
|
-
args: Prisma.EnumsCreateArgs<ExtArgs
|
1607
|
+
args: Prisma.EnumsCreateArgs<ExtArgs>,
|
1572
1608
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1573
1609
|
}
|
1574
1610
|
createMany: {
|
1575
|
-
args: Prisma.EnumsCreateManyArgs<ExtArgs
|
1576
|
-
result: BatchPayload
|
1611
|
+
args: Prisma.EnumsCreateManyArgs<ExtArgs>,
|
1612
|
+
result: Prisma.BatchPayload
|
1577
1613
|
}
|
1578
1614
|
createManyAndReturn: {
|
1579
|
-
args: Prisma.EnumsCreateManyAndReturnArgs<ExtArgs
|
1615
|
+
args: Prisma.EnumsCreateManyAndReturnArgs<ExtArgs>,
|
1580
1616
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>[]
|
1581
1617
|
}
|
1582
1618
|
delete: {
|
1583
|
-
args: Prisma.EnumsDeleteArgs<ExtArgs
|
1619
|
+
args: Prisma.EnumsDeleteArgs<ExtArgs>,
|
1584
1620
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1585
1621
|
}
|
1586
1622
|
update: {
|
1587
|
-
args: Prisma.EnumsUpdateArgs<ExtArgs
|
1623
|
+
args: Prisma.EnumsUpdateArgs<ExtArgs>,
|
1588
1624
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1589
1625
|
}
|
1590
1626
|
deleteMany: {
|
1591
|
-
args: Prisma.EnumsDeleteManyArgs<ExtArgs
|
1592
|
-
result: BatchPayload
|
1627
|
+
args: Prisma.EnumsDeleteManyArgs<ExtArgs>,
|
1628
|
+
result: Prisma.BatchPayload
|
1593
1629
|
}
|
1594
1630
|
updateMany: {
|
1595
|
-
args: Prisma.EnumsUpdateManyArgs<ExtArgs
|
1596
|
-
result: BatchPayload
|
1631
|
+
args: Prisma.EnumsUpdateManyArgs<ExtArgs>,
|
1632
|
+
result: Prisma.BatchPayload
|
1597
1633
|
}
|
1598
1634
|
upsert: {
|
1599
|
-
args: Prisma.EnumsUpsertArgs<ExtArgs
|
1635
|
+
args: Prisma.EnumsUpsertArgs<ExtArgs>,
|
1600
1636
|
result: $Utils.PayloadToResult<Prisma.$EnumsPayload>
|
1601
1637
|
}
|
1602
1638
|
aggregate: {
|
1603
|
-
args: Prisma.EnumsAggregateArgs<ExtArgs
|
1639
|
+
args: Prisma.EnumsAggregateArgs<ExtArgs>,
|
1604
1640
|
result: $Utils.Optional<AggregateEnums>
|
1605
1641
|
}
|
1606
1642
|
groupBy: {
|
1607
|
-
args: Prisma.EnumsGroupByArgs<ExtArgs
|
1643
|
+
args: Prisma.EnumsGroupByArgs<ExtArgs>,
|
1608
1644
|
result: $Utils.Optional<EnumsGroupByOutputType>[]
|
1609
1645
|
}
|
1610
1646
|
count: {
|
1611
|
-
args: Prisma.EnumsCountArgs<ExtArgs
|
1647
|
+
args: Prisma.EnumsCountArgs<ExtArgs>,
|
1612
1648
|
result: $Utils.Optional<EnumsCountAggregateOutputType> | number
|
1613
1649
|
}
|
1614
1650
|
}
|
@@ -1618,15 +1654,11 @@ export namespace Prisma {
|
|
1618
1654
|
other: {
|
1619
1655
|
payload: any
|
1620
1656
|
operations: {
|
1621
|
-
$executeRaw: {
|
1622
|
-
args: [query: TemplateStringsArray | Prisma.Sql, ...values: any[]],
|
1623
|
-
result: any
|
1624
|
-
}
|
1625
1657
|
$executeRawUnsafe: {
|
1626
1658
|
args: [query: string, ...values: any[]],
|
1627
1659
|
result: any
|
1628
1660
|
}
|
1629
|
-
$
|
1661
|
+
$executeRaw: {
|
1630
1662
|
args: [query: TemplateStringsArray | Prisma.Sql, ...values: any[]],
|
1631
1663
|
result: any
|
1632
1664
|
}
|
@@ -1634,10 +1666,14 @@ export namespace Prisma {
|
|
1634
1666
|
args: [query: string, ...values: any[]],
|
1635
1667
|
result: any
|
1636
1668
|
}
|
1669
|
+
$queryRaw: {
|
1670
|
+
args: [query: TemplateStringsArray | Prisma.Sql, ...values: any[]],
|
1671
|
+
result: any
|
1672
|
+
}
|
1637
1673
|
}
|
1638
1674
|
}
|
1639
1675
|
}
|
1640
|
-
export const defineExtension: $Extensions.ExtendsHook<
|
1676
|
+
export const defineExtension: $Extensions.ExtendsHook<'define', Prisma.TypeMapCb, $Extensions.DefaultArgs>
|
1641
1677
|
export type DefaultPrismaClient = PrismaClient
|
1642
1678
|
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal'
|
1643
1679
|
export interface PrismaClientOptions {
|
@@ -1682,7 +1718,6 @@ export namespace Prisma {
|
|
1682
1718
|
}
|
1683
1719
|
}
|
1684
1720
|
|
1685
|
-
|
1686
1721
|
/* Types for Logging */
|
1687
1722
|
export type LogLevel = 'info' | 'query' | 'warn' | 'error'
|
1688
1723
|
export type LogDefinition = {
|
@@ -2253,17 +2288,6 @@ export namespace Prisma {
|
|
2253
2288
|
_count?: boolean | AccountCountOutputTypeDefaultArgs<ExtArgs>
|
2254
2289
|
}, ExtArgs["result"]["account"]>
|
2255
2290
|
|
2256
|
-
export type AccountSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
2257
|
-
id?: boolean
|
2258
|
-
username?: boolean
|
2259
|
-
password?: boolean
|
2260
|
-
role?: boolean
|
2261
|
-
isGlobalFilterActive?: boolean
|
2262
|
-
fcmToken?: boolean
|
2263
|
-
created_at?: boolean
|
2264
|
-
updated_at?: boolean
|
2265
|
-
}, ExtArgs["result"]["account"]>
|
2266
|
-
|
2267
2291
|
export type AccountSelectScalar = {
|
2268
2292
|
id?: boolean
|
2269
2293
|
username?: boolean
|
@@ -2275,6 +2299,7 @@ export namespace Prisma {
|
|
2275
2299
|
updated_at?: boolean
|
2276
2300
|
}
|
2277
2301
|
|
2302
|
+
|
2278
2303
|
export type AccountInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2279
2304
|
comments?: boolean | Account$commentsArgs<ExtArgs>
|
2280
2305
|
solvableComments?: boolean | Account$solvableCommentsArgs<ExtArgs>
|
@@ -2282,7 +2307,7 @@ export namespace Prisma {
|
|
2282
2307
|
globalFilter?: boolean | Account$globalFilterArgs<ExtArgs>
|
2283
2308
|
_count?: boolean | AccountCountOutputTypeDefaultArgs<ExtArgs>
|
2284
2309
|
}
|
2285
|
-
|
2310
|
+
|
2286
2311
|
|
2287
2312
|
export type $AccountPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2288
2313
|
name: "Account"
|
@@ -2305,6 +2330,7 @@ export namespace Prisma {
|
|
2305
2330
|
composites: {}
|
2306
2331
|
}
|
2307
2332
|
|
2333
|
+
|
2308
2334
|
type AccountGetPayload<S extends boolean | null | undefined | AccountDefaultArgs> = $Result.GetResult<Prisma.$AccountPayload, S>
|
2309
2335
|
|
2310
2336
|
type AccountCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -2324,8 +2350,10 @@ export namespace Prisma {
|
|
2324
2350
|
* // ... provide filter here
|
2325
2351
|
* }
|
2326
2352
|
* })
|
2327
|
-
|
2328
|
-
findUnique<T extends AccountFindUniqueArgs
|
2353
|
+
**/
|
2354
|
+
findUnique<T extends AccountFindUniqueArgs<ExtArgs>>(
|
2355
|
+
args: SelectSubset<T, AccountFindUniqueArgs<ExtArgs>>
|
2356
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
2329
2357
|
|
2330
2358
|
/**
|
2331
2359
|
* Find one Account that matches the filter or throw an error with `error.code='P2025'`
|
@@ -2338,8 +2366,10 @@ export namespace Prisma {
|
|
2338
2366
|
* // ... provide filter here
|
2339
2367
|
* }
|
2340
2368
|
* })
|
2341
|
-
|
2342
|
-
findUniqueOrThrow<T extends AccountFindUniqueOrThrowArgs
|
2369
|
+
**/
|
2370
|
+
findUniqueOrThrow<T extends AccountFindUniqueOrThrowArgs<ExtArgs>>(
|
2371
|
+
args?: SelectSubset<T, AccountFindUniqueOrThrowArgs<ExtArgs>>
|
2372
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
2343
2373
|
|
2344
2374
|
/**
|
2345
2375
|
* Find the first Account that matches the filter.
|
@@ -2353,8 +2383,10 @@ export namespace Prisma {
|
|
2353
2383
|
* // ... provide filter here
|
2354
2384
|
* }
|
2355
2385
|
* })
|
2356
|
-
|
2357
|
-
findFirst<T extends AccountFindFirstArgs
|
2386
|
+
**/
|
2387
|
+
findFirst<T extends AccountFindFirstArgs<ExtArgs>>(
|
2388
|
+
args?: SelectSubset<T, AccountFindFirstArgs<ExtArgs>>
|
2389
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
2358
2390
|
|
2359
2391
|
/**
|
2360
2392
|
* Find the first Account that matches the filter or
|
@@ -2369,8 +2401,10 @@ export namespace Prisma {
|
|
2369
2401
|
* // ... provide filter here
|
2370
2402
|
* }
|
2371
2403
|
* })
|
2372
|
-
|
2373
|
-
findFirstOrThrow<T extends AccountFindFirstOrThrowArgs
|
2404
|
+
**/
|
2405
|
+
findFirstOrThrow<T extends AccountFindFirstOrThrowArgs<ExtArgs>>(
|
2406
|
+
args?: SelectSubset<T, AccountFindFirstOrThrowArgs<ExtArgs>>
|
2407
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
2374
2408
|
|
2375
2409
|
/**
|
2376
2410
|
* Find zero or more Accounts that matches the filter.
|
@@ -2387,8 +2421,10 @@ export namespace Prisma {
|
|
2387
2421
|
* // Only select the `id`
|
2388
2422
|
* const accountWithIdOnly = await prisma.account.findMany({ select: { id: true } })
|
2389
2423
|
*
|
2390
|
-
|
2391
|
-
findMany<T extends AccountFindManyArgs
|
2424
|
+
**/
|
2425
|
+
findMany<T extends AccountFindManyArgs<ExtArgs>>(
|
2426
|
+
args?: SelectSubset<T, AccountFindManyArgs<ExtArgs>>
|
2427
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findMany'>>
|
2392
2428
|
|
2393
2429
|
/**
|
2394
2430
|
* Create a Account.
|
@@ -2401,8 +2437,10 @@ export namespace Prisma {
|
|
2401
2437
|
* }
|
2402
2438
|
* })
|
2403
2439
|
*
|
2404
|
-
|
2405
|
-
create<T extends AccountCreateArgs
|
2440
|
+
**/
|
2441
|
+
create<T extends AccountCreateArgs<ExtArgs>>(
|
2442
|
+
args: SelectSubset<T, AccountCreateArgs<ExtArgs>>
|
2443
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
2406
2444
|
|
2407
2445
|
/**
|
2408
2446
|
* Create many Accounts.
|
@@ -2415,8 +2453,10 @@ export namespace Prisma {
|
|
2415
2453
|
* ]
|
2416
2454
|
* })
|
2417
2455
|
*
|
2418
|
-
|
2419
|
-
createMany<T extends AccountCreateManyArgs
|
2456
|
+
**/
|
2457
|
+
createMany<T extends AccountCreateManyArgs<ExtArgs>>(
|
2458
|
+
args?: SelectSubset<T, AccountCreateManyArgs<ExtArgs>>
|
2459
|
+
): Prisma.PrismaPromise<BatchPayload>
|
2420
2460
|
|
2421
2461
|
/**
|
2422
2462
|
* Create many Accounts and returns the data saved in the database.
|
@@ -2439,8 +2479,10 @@ export namespace Prisma {
|
|
2439
2479
|
* Note, that providing `undefined` is treated as the value not being there.
|
2440
2480
|
* Read more here: https://pris.ly/d/null-undefined
|
2441
2481
|
*
|
2442
|
-
|
2443
|
-
createManyAndReturn<T extends AccountCreateManyAndReturnArgs
|
2482
|
+
**/
|
2483
|
+
createManyAndReturn<T extends AccountCreateManyAndReturnArgs<ExtArgs>>(
|
2484
|
+
args?: SelectSubset<T, AccountCreateManyAndReturnArgs<ExtArgs>>
|
2485
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
2444
2486
|
|
2445
2487
|
/**
|
2446
2488
|
* Delete a Account.
|
@@ -2453,8 +2495,10 @@ export namespace Prisma {
|
|
2453
2495
|
* }
|
2454
2496
|
* })
|
2455
2497
|
*
|
2456
|
-
|
2457
|
-
delete<T extends AccountDeleteArgs
|
2498
|
+
**/
|
2499
|
+
delete<T extends AccountDeleteArgs<ExtArgs>>(
|
2500
|
+
args: SelectSubset<T, AccountDeleteArgs<ExtArgs>>
|
2501
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
2458
2502
|
|
2459
2503
|
/**
|
2460
2504
|
* Update one Account.
|
@@ -2470,8 +2514,10 @@ export namespace Prisma {
|
|
2470
2514
|
* }
|
2471
2515
|
* })
|
2472
2516
|
*
|
2473
|
-
|
2474
|
-
update<T extends AccountUpdateArgs
|
2517
|
+
**/
|
2518
|
+
update<T extends AccountUpdateArgs<ExtArgs>>(
|
2519
|
+
args: SelectSubset<T, AccountUpdateArgs<ExtArgs>>
|
2520
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
2475
2521
|
|
2476
2522
|
/**
|
2477
2523
|
* Delete zero or more Accounts.
|
@@ -2484,8 +2530,10 @@ export namespace Prisma {
|
|
2484
2530
|
* }
|
2485
2531
|
* })
|
2486
2532
|
*
|
2487
|
-
|
2488
|
-
deleteMany<T extends AccountDeleteManyArgs
|
2533
|
+
**/
|
2534
|
+
deleteMany<T extends AccountDeleteManyArgs<ExtArgs>>(
|
2535
|
+
args?: SelectSubset<T, AccountDeleteManyArgs<ExtArgs>>
|
2536
|
+
): Prisma.PrismaPromise<BatchPayload>
|
2489
2537
|
|
2490
2538
|
/**
|
2491
2539
|
* Update zero or more Accounts.
|
@@ -2503,8 +2551,10 @@ export namespace Prisma {
|
|
2503
2551
|
* }
|
2504
2552
|
* })
|
2505
2553
|
*
|
2506
|
-
|
2507
|
-
updateMany<T extends AccountUpdateManyArgs
|
2554
|
+
**/
|
2555
|
+
updateMany<T extends AccountUpdateManyArgs<ExtArgs>>(
|
2556
|
+
args: SelectSubset<T, AccountUpdateManyArgs<ExtArgs>>
|
2557
|
+
): Prisma.PrismaPromise<BatchPayload>
|
2508
2558
|
|
2509
2559
|
/**
|
2510
2560
|
* Create or update one Account.
|
@@ -2522,9 +2572,10 @@ export namespace Prisma {
|
|
2522
2572
|
* // ... the filter for the Account we want to update
|
2523
2573
|
* }
|
2524
2574
|
* })
|
2525
|
-
|
2526
|
-
upsert<T extends AccountUpsertArgs
|
2527
|
-
|
2575
|
+
**/
|
2576
|
+
upsert<T extends AccountUpsertArgs<ExtArgs>>(
|
2577
|
+
args: SelectSubset<T, AccountUpsertArgs<ExtArgs>>
|
2578
|
+
): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
2528
2579
|
|
2529
2580
|
/**
|
2530
2581
|
* Count the number of Accounts.
|
@@ -2664,36 +2715,40 @@ export namespace Prisma {
|
|
2664
2715
|
* https://github.com/prisma/prisma-client-js/issues/707
|
2665
2716
|
*/
|
2666
2717
|
export interface Prisma__AccountClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
2667
|
-
readonly [Symbol.toStringTag]:
|
2668
|
-
|
2669
|
-
|
2670
|
-
|
2671
|
-
|
2718
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
2719
|
+
|
2720
|
+
comments<T extends Account$commentsArgs<ExtArgs> = {}>(args?: Subset<T, Account$commentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
2721
|
+
|
2722
|
+
solvableComments<T extends Account$solvableCommentsArgs<ExtArgs> = {}>(args?: Subset<T, Account$solvableCommentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
2723
|
+
|
2724
|
+
tags<T extends Account$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Account$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
2725
|
+
|
2726
|
+
globalFilter<T extends Account$globalFilterArgs<ExtArgs> = {}>(args?: Subset<T, Account$globalFilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
2727
|
+
|
2672
2728
|
/**
|
2673
2729
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
2674
2730
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
2675
2731
|
* @param onrejected The callback to execute when the Promise is rejected.
|
2676
2732
|
* @returns A Promise for the completion of which ever callback is executed.
|
2677
2733
|
*/
|
2678
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
2734
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
2679
2735
|
/**
|
2680
2736
|
* Attaches a callback for only the rejection of the Promise.
|
2681
2737
|
* @param onrejected The callback to execute when the Promise is rejected.
|
2682
2738
|
* @returns A Promise for the completion of the callback.
|
2683
2739
|
*/
|
2684
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
2740
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
2685
2741
|
/**
|
2686
2742
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
2687
2743
|
* resolved value cannot be modified from the callback.
|
2688
2744
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
2689
2745
|
* @returns A Promise for the completion of the callback.
|
2690
2746
|
*/
|
2691
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
2747
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
2692
2748
|
}
|
2693
2749
|
|
2694
2750
|
|
2695
2751
|
|
2696
|
-
|
2697
2752
|
/**
|
2698
2753
|
* Fields of the Account model
|
2699
2754
|
*/
|
@@ -2921,7 +2976,11 @@ export namespace Prisma {
|
|
2921
2976
|
/**
|
2922
2977
|
* Select specific fields to fetch from the Account
|
2923
2978
|
*/
|
2924
|
-
select?:
|
2979
|
+
select?: AccountSelect<ExtArgs> | null
|
2980
|
+
/**
|
2981
|
+
* Choose, which related nodes to fetch as well
|
2982
|
+
*/
|
2983
|
+
include?: AccountInclude<ExtArgs> | null
|
2925
2984
|
/**
|
2926
2985
|
* The data used to create many Accounts.
|
2927
2986
|
*/
|
@@ -3428,30 +3487,6 @@ export namespace Prisma {
|
|
3428
3487
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
3429
3488
|
}, ExtArgs["result"]["profile"]>
|
3430
3489
|
|
3431
|
-
export type ProfileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
3432
|
-
id?: boolean
|
3433
|
-
shortId?: boolean
|
3434
|
-
phoneNumber?: boolean
|
3435
|
-
secondaryPhoneNumber?: boolean
|
3436
|
-
fullName?: boolean
|
3437
|
-
firstName?: boolean
|
3438
|
-
gender?: boolean
|
3439
|
-
birthDate?: boolean
|
3440
|
-
profilePictureUrl?: boolean
|
3441
|
-
instagram?: boolean
|
3442
|
-
mail?: boolean
|
3443
|
-
dni?: boolean
|
3444
|
-
alternativeNames?: boolean
|
3445
|
-
birthLocationId?: boolean
|
3446
|
-
residenceLocationId?: boolean
|
3447
|
-
isInTrash?: boolean
|
3448
|
-
movedToTrashDate?: boolean
|
3449
|
-
created_at?: boolean
|
3450
|
-
updated_at?: boolean
|
3451
|
-
birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
|
3452
|
-
residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
|
3453
|
-
}, ExtArgs["result"]["profile"]>
|
3454
|
-
|
3455
3490
|
export type ProfileSelectScalar = {
|
3456
3491
|
id?: boolean
|
3457
3492
|
shortId?: boolean
|
@@ -3474,6 +3509,7 @@ export namespace Prisma {
|
|
3474
3509
|
updated_at?: boolean
|
3475
3510
|
}
|
3476
3511
|
|
3512
|
+
|
3477
3513
|
export type ProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
3478
3514
|
comments?: boolean | Profile$commentsArgs<ExtArgs>
|
3479
3515
|
messages?: boolean | Profile$messagesArgs<ExtArgs>
|
@@ -3482,10 +3518,7 @@ export namespace Prisma {
|
|
3482
3518
|
residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
|
3483
3519
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
3484
3520
|
}
|
3485
|
-
|
3486
|
-
birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
|
3487
|
-
residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
|
3488
|
-
}
|
3521
|
+
|
3489
3522
|
|
3490
3523
|
export type $ProfilePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
3491
3524
|
name: "Profile"
|
@@ -3520,6 +3553,7 @@ export namespace Prisma {
|
|
3520
3553
|
composites: {}
|
3521
3554
|
}
|
3522
3555
|
|
3556
|
+
|
3523
3557
|
type ProfileGetPayload<S extends boolean | null | undefined | ProfileDefaultArgs> = $Result.GetResult<Prisma.$ProfilePayload, S>
|
3524
3558
|
|
3525
3559
|
type ProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -3539,8 +3573,10 @@ export namespace Prisma {
|
|
3539
3573
|
* // ... provide filter here
|
3540
3574
|
* }
|
3541
3575
|
* })
|
3542
|
-
|
3543
|
-
findUnique<T extends ProfileFindUniqueArgs
|
3576
|
+
**/
|
3577
|
+
findUnique<T extends ProfileFindUniqueArgs<ExtArgs>>(
|
3578
|
+
args: SelectSubset<T, ProfileFindUniqueArgs<ExtArgs>>
|
3579
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
3544
3580
|
|
3545
3581
|
/**
|
3546
3582
|
* Find one Profile that matches the filter or throw an error with `error.code='P2025'`
|
@@ -3553,8 +3589,10 @@ export namespace Prisma {
|
|
3553
3589
|
* // ... provide filter here
|
3554
3590
|
* }
|
3555
3591
|
* })
|
3556
|
-
|
3557
|
-
findUniqueOrThrow<T extends ProfileFindUniqueOrThrowArgs
|
3592
|
+
**/
|
3593
|
+
findUniqueOrThrow<T extends ProfileFindUniqueOrThrowArgs<ExtArgs>>(
|
3594
|
+
args?: SelectSubset<T, ProfileFindUniqueOrThrowArgs<ExtArgs>>
|
3595
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
3558
3596
|
|
3559
3597
|
/**
|
3560
3598
|
* Find the first Profile that matches the filter.
|
@@ -3568,8 +3606,10 @@ export namespace Prisma {
|
|
3568
3606
|
* // ... provide filter here
|
3569
3607
|
* }
|
3570
3608
|
* })
|
3571
|
-
|
3572
|
-
findFirst<T extends ProfileFindFirstArgs
|
3609
|
+
**/
|
3610
|
+
findFirst<T extends ProfileFindFirstArgs<ExtArgs>>(
|
3611
|
+
args?: SelectSubset<T, ProfileFindFirstArgs<ExtArgs>>
|
3612
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
3573
3613
|
|
3574
3614
|
/**
|
3575
3615
|
* Find the first Profile that matches the filter or
|
@@ -3584,8 +3624,10 @@ export namespace Prisma {
|
|
3584
3624
|
* // ... provide filter here
|
3585
3625
|
* }
|
3586
3626
|
* })
|
3587
|
-
|
3588
|
-
findFirstOrThrow<T extends ProfileFindFirstOrThrowArgs
|
3627
|
+
**/
|
3628
|
+
findFirstOrThrow<T extends ProfileFindFirstOrThrowArgs<ExtArgs>>(
|
3629
|
+
args?: SelectSubset<T, ProfileFindFirstOrThrowArgs<ExtArgs>>
|
3630
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
3589
3631
|
|
3590
3632
|
/**
|
3591
3633
|
* Find zero or more Profiles that matches the filter.
|
@@ -3602,8 +3644,10 @@ export namespace Prisma {
|
|
3602
3644
|
* // Only select the `id`
|
3603
3645
|
* const profileWithIdOnly = await prisma.profile.findMany({ select: { id: true } })
|
3604
3646
|
*
|
3605
|
-
|
3606
|
-
findMany<T extends ProfileFindManyArgs
|
3647
|
+
**/
|
3648
|
+
findMany<T extends ProfileFindManyArgs<ExtArgs>>(
|
3649
|
+
args?: SelectSubset<T, ProfileFindManyArgs<ExtArgs>>
|
3650
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findMany'>>
|
3607
3651
|
|
3608
3652
|
/**
|
3609
3653
|
* Create a Profile.
|
@@ -3616,8 +3660,10 @@ export namespace Prisma {
|
|
3616
3660
|
* }
|
3617
3661
|
* })
|
3618
3662
|
*
|
3619
|
-
|
3620
|
-
create<T extends ProfileCreateArgs
|
3663
|
+
**/
|
3664
|
+
create<T extends ProfileCreateArgs<ExtArgs>>(
|
3665
|
+
args: SelectSubset<T, ProfileCreateArgs<ExtArgs>>
|
3666
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
3621
3667
|
|
3622
3668
|
/**
|
3623
3669
|
* Create many Profiles.
|
@@ -3630,8 +3676,10 @@ export namespace Prisma {
|
|
3630
3676
|
* ]
|
3631
3677
|
* })
|
3632
3678
|
*
|
3633
|
-
|
3634
|
-
createMany<T extends ProfileCreateManyArgs
|
3679
|
+
**/
|
3680
|
+
createMany<T extends ProfileCreateManyArgs<ExtArgs>>(
|
3681
|
+
args?: SelectSubset<T, ProfileCreateManyArgs<ExtArgs>>
|
3682
|
+
): Prisma.PrismaPromise<BatchPayload>
|
3635
3683
|
|
3636
3684
|
/**
|
3637
3685
|
* Create many Profiles and returns the data saved in the database.
|
@@ -3654,8 +3702,10 @@ export namespace Prisma {
|
|
3654
3702
|
* Note, that providing `undefined` is treated as the value not being there.
|
3655
3703
|
* Read more here: https://pris.ly/d/null-undefined
|
3656
3704
|
*
|
3657
|
-
|
3658
|
-
createManyAndReturn<T extends ProfileCreateManyAndReturnArgs
|
3705
|
+
**/
|
3706
|
+
createManyAndReturn<T extends ProfileCreateManyAndReturnArgs<ExtArgs>>(
|
3707
|
+
args?: SelectSubset<T, ProfileCreateManyAndReturnArgs<ExtArgs>>
|
3708
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'createManyAndReturn'>>
|
3659
3709
|
|
3660
3710
|
/**
|
3661
3711
|
* Delete a Profile.
|
@@ -3668,8 +3718,10 @@ export namespace Prisma {
|
|
3668
3718
|
* }
|
3669
3719
|
* })
|
3670
3720
|
*
|
3671
|
-
|
3672
|
-
delete<T extends ProfileDeleteArgs
|
3721
|
+
**/
|
3722
|
+
delete<T extends ProfileDeleteArgs<ExtArgs>>(
|
3723
|
+
args: SelectSubset<T, ProfileDeleteArgs<ExtArgs>>
|
3724
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
3673
3725
|
|
3674
3726
|
/**
|
3675
3727
|
* Update one Profile.
|
@@ -3685,8 +3737,10 @@ export namespace Prisma {
|
|
3685
3737
|
* }
|
3686
3738
|
* })
|
3687
3739
|
*
|
3688
|
-
|
3689
|
-
update<T extends ProfileUpdateArgs
|
3740
|
+
**/
|
3741
|
+
update<T extends ProfileUpdateArgs<ExtArgs>>(
|
3742
|
+
args: SelectSubset<T, ProfileUpdateArgs<ExtArgs>>
|
3743
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
3690
3744
|
|
3691
3745
|
/**
|
3692
3746
|
* Delete zero or more Profiles.
|
@@ -3699,8 +3753,10 @@ export namespace Prisma {
|
|
3699
3753
|
* }
|
3700
3754
|
* })
|
3701
3755
|
*
|
3702
|
-
|
3703
|
-
deleteMany<T extends ProfileDeleteManyArgs
|
3756
|
+
**/
|
3757
|
+
deleteMany<T extends ProfileDeleteManyArgs<ExtArgs>>(
|
3758
|
+
args?: SelectSubset<T, ProfileDeleteManyArgs<ExtArgs>>
|
3759
|
+
): Prisma.PrismaPromise<BatchPayload>
|
3704
3760
|
|
3705
3761
|
/**
|
3706
3762
|
* Update zero or more Profiles.
|
@@ -3718,8 +3774,10 @@ export namespace Prisma {
|
|
3718
3774
|
* }
|
3719
3775
|
* })
|
3720
3776
|
*
|
3721
|
-
|
3722
|
-
updateMany<T extends ProfileUpdateManyArgs
|
3777
|
+
**/
|
3778
|
+
updateMany<T extends ProfileUpdateManyArgs<ExtArgs>>(
|
3779
|
+
args: SelectSubset<T, ProfileUpdateManyArgs<ExtArgs>>
|
3780
|
+
): Prisma.PrismaPromise<BatchPayload>
|
3723
3781
|
|
3724
3782
|
/**
|
3725
3783
|
* Create or update one Profile.
|
@@ -3737,9 +3795,10 @@ export namespace Prisma {
|
|
3737
3795
|
* // ... the filter for the Profile we want to update
|
3738
3796
|
* }
|
3739
3797
|
* })
|
3740
|
-
|
3741
|
-
upsert<T extends ProfileUpsertArgs
|
3742
|
-
|
3798
|
+
**/
|
3799
|
+
upsert<T extends ProfileUpsertArgs<ExtArgs>>(
|
3800
|
+
args: SelectSubset<T, ProfileUpsertArgs<ExtArgs>>
|
3801
|
+
): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
3743
3802
|
|
3744
3803
|
/**
|
3745
3804
|
* Count the number of Profiles.
|
@@ -3879,37 +3938,42 @@ export namespace Prisma {
|
|
3879
3938
|
* https://github.com/prisma/prisma-client-js/issues/707
|
3880
3939
|
*/
|
3881
3940
|
export interface Prisma__ProfileClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
3882
|
-
readonly [Symbol.toStringTag]:
|
3883
|
-
|
3884
|
-
|
3885
|
-
|
3886
|
-
|
3887
|
-
|
3941
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
3942
|
+
|
3943
|
+
comments<T extends Profile$commentsArgs<ExtArgs> = {}>(args?: Subset<T, Profile$commentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
3944
|
+
|
3945
|
+
messages<T extends Profile$messagesArgs<ExtArgs> = {}>(args?: Subset<T, Profile$messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findMany'> | Null>;
|
3946
|
+
|
3947
|
+
tags<T extends Profile$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Profile$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
3948
|
+
|
3949
|
+
birthLocation<T extends Profile$birthLocationArgs<ExtArgs> = {}>(args?: Subset<T, Profile$birthLocationArgs<ExtArgs>>): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
3950
|
+
|
3951
|
+
residenceLocation<T extends Profile$residenceLocationArgs<ExtArgs> = {}>(args?: Subset<T, Profile$residenceLocationArgs<ExtArgs>>): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
3952
|
+
|
3888
3953
|
/**
|
3889
3954
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
3890
3955
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
3891
3956
|
* @param onrejected The callback to execute when the Promise is rejected.
|
3892
3957
|
* @returns A Promise for the completion of which ever callback is executed.
|
3893
3958
|
*/
|
3894
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
3959
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
3895
3960
|
/**
|
3896
3961
|
* Attaches a callback for only the rejection of the Promise.
|
3897
3962
|
* @param onrejected The callback to execute when the Promise is rejected.
|
3898
3963
|
* @returns A Promise for the completion of the callback.
|
3899
3964
|
*/
|
3900
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
3965
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
3901
3966
|
/**
|
3902
3967
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
3903
3968
|
* resolved value cannot be modified from the callback.
|
3904
3969
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
3905
3970
|
* @returns A Promise for the completion of the callback.
|
3906
3971
|
*/
|
3907
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
3972
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
3908
3973
|
}
|
3909
3974
|
|
3910
3975
|
|
3911
3976
|
|
3912
|
-
|
3913
3977
|
/**
|
3914
3978
|
* Fields of the Profile model
|
3915
3979
|
*/
|
@@ -4148,16 +4212,16 @@ export namespace Prisma {
|
|
4148
4212
|
/**
|
4149
4213
|
* Select specific fields to fetch from the Profile
|
4150
4214
|
*/
|
4151
|
-
select?:
|
4215
|
+
select?: ProfileSelect<ExtArgs> | null
|
4216
|
+
/**
|
4217
|
+
* Choose, which related nodes to fetch as well
|
4218
|
+
*/
|
4219
|
+
include?: ProfileInclude<ExtArgs> | null
|
4152
4220
|
/**
|
4153
4221
|
* The data used to create many Profiles.
|
4154
4222
|
*/
|
4155
4223
|
data: ProfileCreateManyInput | ProfileCreateManyInput[]
|
4156
4224
|
skipDuplicates?: boolean
|
4157
|
-
/**
|
4158
|
-
* Choose, which related nodes to fetch as well
|
4159
|
-
*/
|
4160
|
-
include?: ProfileIncludeCreateManyAndReturn<ExtArgs> | null
|
4161
4225
|
}
|
4162
4226
|
|
4163
4227
|
/**
|
@@ -4586,17 +4650,6 @@ export namespace Prisma {
|
|
4586
4650
|
_count?: boolean | LocationCountOutputTypeDefaultArgs<ExtArgs>
|
4587
4651
|
}, ExtArgs["result"]["location"]>
|
4588
4652
|
|
4589
|
-
export type LocationSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
4590
|
-
id?: boolean
|
4591
|
-
latitude?: boolean
|
4592
|
-
longitude?: boolean
|
4593
|
-
country?: boolean
|
4594
|
-
state?: boolean
|
4595
|
-
city?: boolean
|
4596
|
-
created_at?: boolean
|
4597
|
-
updated_at?: boolean
|
4598
|
-
}, ExtArgs["result"]["location"]>
|
4599
|
-
|
4600
4653
|
export type LocationSelectScalar = {
|
4601
4654
|
id?: boolean
|
4602
4655
|
latitude?: boolean
|
@@ -4608,12 +4661,13 @@ export namespace Prisma {
|
|
4608
4661
|
updated_at?: boolean
|
4609
4662
|
}
|
4610
4663
|
|
4664
|
+
|
4611
4665
|
export type LocationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
4612
4666
|
birthProfiles?: boolean | Location$birthProfilesArgs<ExtArgs>
|
4613
4667
|
residenceProfiles?: boolean | Location$residenceProfilesArgs<ExtArgs>
|
4614
4668
|
_count?: boolean | LocationCountOutputTypeDefaultArgs<ExtArgs>
|
4615
4669
|
}
|
4616
|
-
|
4670
|
+
|
4617
4671
|
|
4618
4672
|
export type $LocationPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
4619
4673
|
name: "Location"
|
@@ -4634,6 +4688,7 @@ export namespace Prisma {
|
|
4634
4688
|
composites: {}
|
4635
4689
|
}
|
4636
4690
|
|
4691
|
+
|
4637
4692
|
type LocationGetPayload<S extends boolean | null | undefined | LocationDefaultArgs> = $Result.GetResult<Prisma.$LocationPayload, S>
|
4638
4693
|
|
4639
4694
|
type LocationCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -4653,8 +4708,10 @@ export namespace Prisma {
|
|
4653
4708
|
* // ... provide filter here
|
4654
4709
|
* }
|
4655
4710
|
* })
|
4656
|
-
|
4657
|
-
findUnique<T extends LocationFindUniqueArgs
|
4711
|
+
**/
|
4712
|
+
findUnique<T extends LocationFindUniqueArgs<ExtArgs>>(
|
4713
|
+
args: SelectSubset<T, LocationFindUniqueArgs<ExtArgs>>
|
4714
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
4658
4715
|
|
4659
4716
|
/**
|
4660
4717
|
* Find one Location that matches the filter or throw an error with `error.code='P2025'`
|
@@ -4667,8 +4724,10 @@ export namespace Prisma {
|
|
4667
4724
|
* // ... provide filter here
|
4668
4725
|
* }
|
4669
4726
|
* })
|
4670
|
-
|
4671
|
-
findUniqueOrThrow<T extends LocationFindUniqueOrThrowArgs
|
4727
|
+
**/
|
4728
|
+
findUniqueOrThrow<T extends LocationFindUniqueOrThrowArgs<ExtArgs>>(
|
4729
|
+
args?: SelectSubset<T, LocationFindUniqueOrThrowArgs<ExtArgs>>
|
4730
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
4672
4731
|
|
4673
4732
|
/**
|
4674
4733
|
* Find the first Location that matches the filter.
|
@@ -4682,8 +4741,10 @@ export namespace Prisma {
|
|
4682
4741
|
* // ... provide filter here
|
4683
4742
|
* }
|
4684
4743
|
* })
|
4685
|
-
|
4686
|
-
findFirst<T extends LocationFindFirstArgs
|
4744
|
+
**/
|
4745
|
+
findFirst<T extends LocationFindFirstArgs<ExtArgs>>(
|
4746
|
+
args?: SelectSubset<T, LocationFindFirstArgs<ExtArgs>>
|
4747
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
4687
4748
|
|
4688
4749
|
/**
|
4689
4750
|
* Find the first Location that matches the filter or
|
@@ -4698,8 +4759,10 @@ export namespace Prisma {
|
|
4698
4759
|
* // ... provide filter here
|
4699
4760
|
* }
|
4700
4761
|
* })
|
4701
|
-
|
4702
|
-
findFirstOrThrow<T extends LocationFindFirstOrThrowArgs
|
4762
|
+
**/
|
4763
|
+
findFirstOrThrow<T extends LocationFindFirstOrThrowArgs<ExtArgs>>(
|
4764
|
+
args?: SelectSubset<T, LocationFindFirstOrThrowArgs<ExtArgs>>
|
4765
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
4703
4766
|
|
4704
4767
|
/**
|
4705
4768
|
* Find zero or more Locations that matches the filter.
|
@@ -4716,8 +4779,10 @@ export namespace Prisma {
|
|
4716
4779
|
* // Only select the `id`
|
4717
4780
|
* const locationWithIdOnly = await prisma.location.findMany({ select: { id: true } })
|
4718
4781
|
*
|
4719
|
-
|
4720
|
-
findMany<T extends LocationFindManyArgs
|
4782
|
+
**/
|
4783
|
+
findMany<T extends LocationFindManyArgs<ExtArgs>>(
|
4784
|
+
args?: SelectSubset<T, LocationFindManyArgs<ExtArgs>>
|
4785
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'findMany'>>
|
4721
4786
|
|
4722
4787
|
/**
|
4723
4788
|
* Create a Location.
|
@@ -4730,8 +4795,10 @@ export namespace Prisma {
|
|
4730
4795
|
* }
|
4731
4796
|
* })
|
4732
4797
|
*
|
4733
|
-
|
4734
|
-
create<T extends LocationCreateArgs
|
4798
|
+
**/
|
4799
|
+
create<T extends LocationCreateArgs<ExtArgs>>(
|
4800
|
+
args: SelectSubset<T, LocationCreateArgs<ExtArgs>>
|
4801
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
4735
4802
|
|
4736
4803
|
/**
|
4737
4804
|
* Create many Locations.
|
@@ -4744,8 +4811,10 @@ export namespace Prisma {
|
|
4744
4811
|
* ]
|
4745
4812
|
* })
|
4746
4813
|
*
|
4747
|
-
|
4748
|
-
createMany<T extends LocationCreateManyArgs
|
4814
|
+
**/
|
4815
|
+
createMany<T extends LocationCreateManyArgs<ExtArgs>>(
|
4816
|
+
args?: SelectSubset<T, LocationCreateManyArgs<ExtArgs>>
|
4817
|
+
): Prisma.PrismaPromise<BatchPayload>
|
4749
4818
|
|
4750
4819
|
/**
|
4751
4820
|
* Create many Locations and returns the data saved in the database.
|
@@ -4768,8 +4837,10 @@ export namespace Prisma {
|
|
4768
4837
|
* Note, that providing `undefined` is treated as the value not being there.
|
4769
4838
|
* Read more here: https://pris.ly/d/null-undefined
|
4770
4839
|
*
|
4771
|
-
|
4772
|
-
createManyAndReturn<T extends LocationCreateManyAndReturnArgs
|
4840
|
+
**/
|
4841
|
+
createManyAndReturn<T extends LocationCreateManyAndReturnArgs<ExtArgs>>(
|
4842
|
+
args?: SelectSubset<T, LocationCreateManyAndReturnArgs<ExtArgs>>
|
4843
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
4773
4844
|
|
4774
4845
|
/**
|
4775
4846
|
* Delete a Location.
|
@@ -4782,8 +4853,10 @@ export namespace Prisma {
|
|
4782
4853
|
* }
|
4783
4854
|
* })
|
4784
4855
|
*
|
4785
|
-
|
4786
|
-
delete<T extends LocationDeleteArgs
|
4856
|
+
**/
|
4857
|
+
delete<T extends LocationDeleteArgs<ExtArgs>>(
|
4858
|
+
args: SelectSubset<T, LocationDeleteArgs<ExtArgs>>
|
4859
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
4787
4860
|
|
4788
4861
|
/**
|
4789
4862
|
* Update one Location.
|
@@ -4799,8 +4872,10 @@ export namespace Prisma {
|
|
4799
4872
|
* }
|
4800
4873
|
* })
|
4801
4874
|
*
|
4802
|
-
|
4803
|
-
update<T extends LocationUpdateArgs
|
4875
|
+
**/
|
4876
|
+
update<T extends LocationUpdateArgs<ExtArgs>>(
|
4877
|
+
args: SelectSubset<T, LocationUpdateArgs<ExtArgs>>
|
4878
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
4804
4879
|
|
4805
4880
|
/**
|
4806
4881
|
* Delete zero or more Locations.
|
@@ -4813,8 +4888,10 @@ export namespace Prisma {
|
|
4813
4888
|
* }
|
4814
4889
|
* })
|
4815
4890
|
*
|
4816
|
-
|
4817
|
-
deleteMany<T extends LocationDeleteManyArgs
|
4891
|
+
**/
|
4892
|
+
deleteMany<T extends LocationDeleteManyArgs<ExtArgs>>(
|
4893
|
+
args?: SelectSubset<T, LocationDeleteManyArgs<ExtArgs>>
|
4894
|
+
): Prisma.PrismaPromise<BatchPayload>
|
4818
4895
|
|
4819
4896
|
/**
|
4820
4897
|
* Update zero or more Locations.
|
@@ -4832,8 +4909,10 @@ export namespace Prisma {
|
|
4832
4909
|
* }
|
4833
4910
|
* })
|
4834
4911
|
*
|
4835
|
-
|
4836
|
-
updateMany<T extends LocationUpdateManyArgs
|
4912
|
+
**/
|
4913
|
+
updateMany<T extends LocationUpdateManyArgs<ExtArgs>>(
|
4914
|
+
args: SelectSubset<T, LocationUpdateManyArgs<ExtArgs>>
|
4915
|
+
): Prisma.PrismaPromise<BatchPayload>
|
4837
4916
|
|
4838
4917
|
/**
|
4839
4918
|
* Create or update one Location.
|
@@ -4851,9 +4930,10 @@ export namespace Prisma {
|
|
4851
4930
|
* // ... the filter for the Location we want to update
|
4852
4931
|
* }
|
4853
4932
|
* })
|
4854
|
-
|
4855
|
-
upsert<T extends LocationUpsertArgs
|
4856
|
-
|
4933
|
+
**/
|
4934
|
+
upsert<T extends LocationUpsertArgs<ExtArgs>>(
|
4935
|
+
args: SelectSubset<T, LocationUpsertArgs<ExtArgs>>
|
4936
|
+
): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
4857
4937
|
|
4858
4938
|
/**
|
4859
4939
|
* Count the number of Locations.
|
@@ -4993,34 +5073,36 @@ export namespace Prisma {
|
|
4993
5073
|
* https://github.com/prisma/prisma-client-js/issues/707
|
4994
5074
|
*/
|
4995
5075
|
export interface Prisma__LocationClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
4996
|
-
readonly [Symbol.toStringTag]:
|
4997
|
-
|
4998
|
-
|
5076
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
5077
|
+
|
5078
|
+
birthProfiles<T extends Location$birthProfilesArgs<ExtArgs> = {}>(args?: Subset<T, Location$birthProfilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findMany'> | Null>;
|
5079
|
+
|
5080
|
+
residenceProfiles<T extends Location$residenceProfilesArgs<ExtArgs> = {}>(args?: Subset<T, Location$residenceProfilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findMany'> | Null>;
|
5081
|
+
|
4999
5082
|
/**
|
5000
5083
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
5001
5084
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
5002
5085
|
* @param onrejected The callback to execute when the Promise is rejected.
|
5003
5086
|
* @returns A Promise for the completion of which ever callback is executed.
|
5004
5087
|
*/
|
5005
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
5088
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
5006
5089
|
/**
|
5007
5090
|
* Attaches a callback for only the rejection of the Promise.
|
5008
5091
|
* @param onrejected The callback to execute when the Promise is rejected.
|
5009
5092
|
* @returns A Promise for the completion of the callback.
|
5010
5093
|
*/
|
5011
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
5094
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
5012
5095
|
/**
|
5013
5096
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
5014
5097
|
* resolved value cannot be modified from the callback.
|
5015
5098
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
5016
5099
|
* @returns A Promise for the completion of the callback.
|
5017
5100
|
*/
|
5018
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
5101
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
5019
5102
|
}
|
5020
5103
|
|
5021
5104
|
|
5022
5105
|
|
5023
|
-
|
5024
5106
|
/**
|
5025
5107
|
* Fields of the Location model
|
5026
5108
|
*/
|
@@ -5248,7 +5330,11 @@ export namespace Prisma {
|
|
5248
5330
|
/**
|
5249
5331
|
* Select specific fields to fetch from the Location
|
5250
5332
|
*/
|
5251
|
-
select?:
|
5333
|
+
select?: LocationSelect<ExtArgs> | null
|
5334
|
+
/**
|
5335
|
+
* Choose, which related nodes to fetch as well
|
5336
|
+
*/
|
5337
|
+
include?: LocationInclude<ExtArgs> | null
|
5252
5338
|
/**
|
5253
5339
|
* The data used to create many Locations.
|
5254
5340
|
*/
|
@@ -5610,22 +5696,6 @@ export namespace Prisma {
|
|
5610
5696
|
solvedBy?: boolean | Comment$solvedByArgs<ExtArgs>
|
5611
5697
|
}, ExtArgs["result"]["comment"]>
|
5612
5698
|
|
5613
|
-
export type CommentSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
5614
|
-
id?: boolean
|
5615
|
-
content?: boolean
|
5616
|
-
createdBy?: boolean
|
5617
|
-
profileId?: boolean
|
5618
|
-
isSolvable?: boolean
|
5619
|
-
isSolved?: boolean
|
5620
|
-
solvedAt?: boolean
|
5621
|
-
solvedById?: boolean
|
5622
|
-
created_at?: boolean
|
5623
|
-
updated_at?: boolean
|
5624
|
-
account?: boolean | AccountDefaultArgs<ExtArgs>
|
5625
|
-
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
5626
|
-
solvedBy?: boolean | Comment$solvedByArgs<ExtArgs>
|
5627
|
-
}, ExtArgs["result"]["comment"]>
|
5628
|
-
|
5629
5699
|
export type CommentSelectScalar = {
|
5630
5700
|
id?: boolean
|
5631
5701
|
content?: boolean
|
@@ -5639,16 +5709,13 @@ export namespace Prisma {
|
|
5639
5709
|
updated_at?: boolean
|
5640
5710
|
}
|
5641
5711
|
|
5712
|
+
|
5642
5713
|
export type CommentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
5643
5714
|
account?: boolean | AccountDefaultArgs<ExtArgs>
|
5644
5715
|
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
5645
5716
|
solvedBy?: boolean | Comment$solvedByArgs<ExtArgs>
|
5646
5717
|
}
|
5647
|
-
|
5648
|
-
account?: boolean | AccountDefaultArgs<ExtArgs>
|
5649
|
-
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
5650
|
-
solvedBy?: boolean | Comment$solvedByArgs<ExtArgs>
|
5651
|
-
}
|
5718
|
+
|
5652
5719
|
|
5653
5720
|
export type $CommentPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
5654
5721
|
name: "Comment"
|
@@ -5672,6 +5739,7 @@ export namespace Prisma {
|
|
5672
5739
|
composites: {}
|
5673
5740
|
}
|
5674
5741
|
|
5742
|
+
|
5675
5743
|
type CommentGetPayload<S extends boolean | null | undefined | CommentDefaultArgs> = $Result.GetResult<Prisma.$CommentPayload, S>
|
5676
5744
|
|
5677
5745
|
type CommentCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -5691,8 +5759,10 @@ export namespace Prisma {
|
|
5691
5759
|
* // ... provide filter here
|
5692
5760
|
* }
|
5693
5761
|
* })
|
5694
|
-
|
5695
|
-
findUnique<T extends CommentFindUniqueArgs
|
5762
|
+
**/
|
5763
|
+
findUnique<T extends CommentFindUniqueArgs<ExtArgs>>(
|
5764
|
+
args: SelectSubset<T, CommentFindUniqueArgs<ExtArgs>>
|
5765
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
5696
5766
|
|
5697
5767
|
/**
|
5698
5768
|
* Find one Comment that matches the filter or throw an error with `error.code='P2025'`
|
@@ -5705,8 +5775,10 @@ export namespace Prisma {
|
|
5705
5775
|
* // ... provide filter here
|
5706
5776
|
* }
|
5707
5777
|
* })
|
5708
|
-
|
5709
|
-
findUniqueOrThrow<T extends CommentFindUniqueOrThrowArgs
|
5778
|
+
**/
|
5779
|
+
findUniqueOrThrow<T extends CommentFindUniqueOrThrowArgs<ExtArgs>>(
|
5780
|
+
args?: SelectSubset<T, CommentFindUniqueOrThrowArgs<ExtArgs>>
|
5781
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
5710
5782
|
|
5711
5783
|
/**
|
5712
5784
|
* Find the first Comment that matches the filter.
|
@@ -5720,8 +5792,10 @@ export namespace Prisma {
|
|
5720
5792
|
* // ... provide filter here
|
5721
5793
|
* }
|
5722
5794
|
* })
|
5723
|
-
|
5724
|
-
findFirst<T extends CommentFindFirstArgs
|
5795
|
+
**/
|
5796
|
+
findFirst<T extends CommentFindFirstArgs<ExtArgs>>(
|
5797
|
+
args?: SelectSubset<T, CommentFindFirstArgs<ExtArgs>>
|
5798
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
5725
5799
|
|
5726
5800
|
/**
|
5727
5801
|
* Find the first Comment that matches the filter or
|
@@ -5736,8 +5810,10 @@ export namespace Prisma {
|
|
5736
5810
|
* // ... provide filter here
|
5737
5811
|
* }
|
5738
5812
|
* })
|
5739
|
-
|
5740
|
-
findFirstOrThrow<T extends CommentFindFirstOrThrowArgs
|
5813
|
+
**/
|
5814
|
+
findFirstOrThrow<T extends CommentFindFirstOrThrowArgs<ExtArgs>>(
|
5815
|
+
args?: SelectSubset<T, CommentFindFirstOrThrowArgs<ExtArgs>>
|
5816
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
5741
5817
|
|
5742
5818
|
/**
|
5743
5819
|
* Find zero or more Comments that matches the filter.
|
@@ -5754,8 +5830,10 @@ export namespace Prisma {
|
|
5754
5830
|
* // Only select the `id`
|
5755
5831
|
* const commentWithIdOnly = await prisma.comment.findMany({ select: { id: true } })
|
5756
5832
|
*
|
5757
|
-
|
5758
|
-
findMany<T extends CommentFindManyArgs
|
5833
|
+
**/
|
5834
|
+
findMany<T extends CommentFindManyArgs<ExtArgs>>(
|
5835
|
+
args?: SelectSubset<T, CommentFindManyArgs<ExtArgs>>
|
5836
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'findMany'>>
|
5759
5837
|
|
5760
5838
|
/**
|
5761
5839
|
* Create a Comment.
|
@@ -5768,8 +5846,10 @@ export namespace Prisma {
|
|
5768
5846
|
* }
|
5769
5847
|
* })
|
5770
5848
|
*
|
5771
|
-
|
5772
|
-
create<T extends CommentCreateArgs
|
5849
|
+
**/
|
5850
|
+
create<T extends CommentCreateArgs<ExtArgs>>(
|
5851
|
+
args: SelectSubset<T, CommentCreateArgs<ExtArgs>>
|
5852
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
5773
5853
|
|
5774
5854
|
/**
|
5775
5855
|
* Create many Comments.
|
@@ -5782,8 +5862,10 @@ export namespace Prisma {
|
|
5782
5862
|
* ]
|
5783
5863
|
* })
|
5784
5864
|
*
|
5785
|
-
|
5786
|
-
createMany<T extends CommentCreateManyArgs
|
5865
|
+
**/
|
5866
|
+
createMany<T extends CommentCreateManyArgs<ExtArgs>>(
|
5867
|
+
args?: SelectSubset<T, CommentCreateManyArgs<ExtArgs>>
|
5868
|
+
): Prisma.PrismaPromise<BatchPayload>
|
5787
5869
|
|
5788
5870
|
/**
|
5789
5871
|
* Create many Comments and returns the data saved in the database.
|
@@ -5806,8 +5888,10 @@ export namespace Prisma {
|
|
5806
5888
|
* Note, that providing `undefined` is treated as the value not being there.
|
5807
5889
|
* Read more here: https://pris.ly/d/null-undefined
|
5808
5890
|
*
|
5809
|
-
|
5810
|
-
createManyAndReturn<T extends CommentCreateManyAndReturnArgs
|
5891
|
+
**/
|
5892
|
+
createManyAndReturn<T extends CommentCreateManyAndReturnArgs<ExtArgs>>(
|
5893
|
+
args?: SelectSubset<T, CommentCreateManyAndReturnArgs<ExtArgs>>
|
5894
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
5811
5895
|
|
5812
5896
|
/**
|
5813
5897
|
* Delete a Comment.
|
@@ -5820,8 +5904,10 @@ export namespace Prisma {
|
|
5820
5904
|
* }
|
5821
5905
|
* })
|
5822
5906
|
*
|
5823
|
-
|
5824
|
-
delete<T extends CommentDeleteArgs
|
5907
|
+
**/
|
5908
|
+
delete<T extends CommentDeleteArgs<ExtArgs>>(
|
5909
|
+
args: SelectSubset<T, CommentDeleteArgs<ExtArgs>>
|
5910
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
5825
5911
|
|
5826
5912
|
/**
|
5827
5913
|
* Update one Comment.
|
@@ -5837,8 +5923,10 @@ export namespace Prisma {
|
|
5837
5923
|
* }
|
5838
5924
|
* })
|
5839
5925
|
*
|
5840
|
-
|
5841
|
-
update<T extends CommentUpdateArgs
|
5926
|
+
**/
|
5927
|
+
update<T extends CommentUpdateArgs<ExtArgs>>(
|
5928
|
+
args: SelectSubset<T, CommentUpdateArgs<ExtArgs>>
|
5929
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
5842
5930
|
|
5843
5931
|
/**
|
5844
5932
|
* Delete zero or more Comments.
|
@@ -5851,8 +5939,10 @@ export namespace Prisma {
|
|
5851
5939
|
* }
|
5852
5940
|
* })
|
5853
5941
|
*
|
5854
|
-
|
5855
|
-
deleteMany<T extends CommentDeleteManyArgs
|
5942
|
+
**/
|
5943
|
+
deleteMany<T extends CommentDeleteManyArgs<ExtArgs>>(
|
5944
|
+
args?: SelectSubset<T, CommentDeleteManyArgs<ExtArgs>>
|
5945
|
+
): Prisma.PrismaPromise<BatchPayload>
|
5856
5946
|
|
5857
5947
|
/**
|
5858
5948
|
* Update zero or more Comments.
|
@@ -5870,8 +5960,10 @@ export namespace Prisma {
|
|
5870
5960
|
* }
|
5871
5961
|
* })
|
5872
5962
|
*
|
5873
|
-
|
5874
|
-
updateMany<T extends CommentUpdateManyArgs
|
5963
|
+
**/
|
5964
|
+
updateMany<T extends CommentUpdateManyArgs<ExtArgs>>(
|
5965
|
+
args: SelectSubset<T, CommentUpdateManyArgs<ExtArgs>>
|
5966
|
+
): Prisma.PrismaPromise<BatchPayload>
|
5875
5967
|
|
5876
5968
|
/**
|
5877
5969
|
* Create or update one Comment.
|
@@ -5889,9 +5981,10 @@ export namespace Prisma {
|
|
5889
5981
|
* // ... the filter for the Comment we want to update
|
5890
5982
|
* }
|
5891
5983
|
* })
|
5892
|
-
|
5893
|
-
upsert<T extends CommentUpsertArgs
|
5894
|
-
|
5984
|
+
**/
|
5985
|
+
upsert<T extends CommentUpsertArgs<ExtArgs>>(
|
5986
|
+
args: SelectSubset<T, CommentUpsertArgs<ExtArgs>>
|
5987
|
+
): Prisma__CommentClient<$Result.GetResult<Prisma.$CommentPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
5895
5988
|
|
5896
5989
|
/**
|
5897
5990
|
* Count the number of Comments.
|
@@ -6031,35 +6124,38 @@ export namespace Prisma {
|
|
6031
6124
|
* https://github.com/prisma/prisma-client-js/issues/707
|
6032
6125
|
*/
|
6033
6126
|
export interface Prisma__CommentClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
6034
|
-
readonly [Symbol.toStringTag]:
|
6035
|
-
|
6036
|
-
|
6037
|
-
|
6038
|
-
|
6039
|
-
|
6127
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
6128
|
+
|
6129
|
+
account<T extends AccountDefaultArgs<ExtArgs> = {}>(args?: Subset<T, AccountDefaultArgs<ExtArgs>>): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
6130
|
+
|
6131
|
+
profile<T extends ProfileDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ProfileDefaultArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
6132
|
+
|
6133
|
+
solvedBy<T extends Comment$solvedByArgs<ExtArgs> = {}>(args?: Subset<T, Comment$solvedByArgs<ExtArgs>>): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
6134
|
+
|
6135
|
+
/**
|
6136
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
6040
6137
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
6041
6138
|
* @param onrejected The callback to execute when the Promise is rejected.
|
6042
6139
|
* @returns A Promise for the completion of which ever callback is executed.
|
6043
6140
|
*/
|
6044
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
6141
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
6045
6142
|
/**
|
6046
6143
|
* Attaches a callback for only the rejection of the Promise.
|
6047
6144
|
* @param onrejected The callback to execute when the Promise is rejected.
|
6048
6145
|
* @returns A Promise for the completion of the callback.
|
6049
6146
|
*/
|
6050
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
6147
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
6051
6148
|
/**
|
6052
6149
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
6053
6150
|
* resolved value cannot be modified from the callback.
|
6054
6151
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
6055
6152
|
* @returns A Promise for the completion of the callback.
|
6056
6153
|
*/
|
6057
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
6154
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
6058
6155
|
}
|
6059
6156
|
|
6060
6157
|
|
6061
6158
|
|
6062
|
-
|
6063
6159
|
/**
|
6064
6160
|
* Fields of the Comment model
|
6065
6161
|
*/
|
@@ -6289,16 +6385,16 @@ export namespace Prisma {
|
|
6289
6385
|
/**
|
6290
6386
|
* Select specific fields to fetch from the Comment
|
6291
6387
|
*/
|
6292
|
-
select?:
|
6388
|
+
select?: CommentSelect<ExtArgs> | null
|
6389
|
+
/**
|
6390
|
+
* Choose, which related nodes to fetch as well
|
6391
|
+
*/
|
6392
|
+
include?: CommentInclude<ExtArgs> | null
|
6293
6393
|
/**
|
6294
6394
|
* The data used to create many Comments.
|
6295
6395
|
*/
|
6296
6396
|
data: CommentCreateManyInput | CommentCreateManyInput[]
|
6297
6397
|
skipDuplicates?: boolean
|
6298
|
-
/**
|
6299
|
-
* Choose, which related nodes to fetch as well
|
6300
|
-
*/
|
6301
|
-
include?: CommentIncludeCreateManyAndReturn<ExtArgs> | null
|
6302
6398
|
}
|
6303
6399
|
|
6304
6400
|
/**
|
@@ -6602,16 +6698,6 @@ export namespace Prisma {
|
|
6602
6698
|
_count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
|
6603
6699
|
}, ExtArgs["result"]["tag"]>
|
6604
6700
|
|
6605
|
-
export type TagSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
6606
|
-
id?: boolean
|
6607
|
-
name?: boolean
|
6608
|
-
type?: boolean
|
6609
|
-
groupId?: boolean
|
6610
|
-
created_at?: boolean
|
6611
|
-
updated_at?: boolean
|
6612
|
-
group?: boolean | TagGroupDefaultArgs<ExtArgs>
|
6613
|
-
}, ExtArgs["result"]["tag"]>
|
6614
|
-
|
6615
6701
|
export type TagSelectScalar = {
|
6616
6702
|
id?: boolean
|
6617
6703
|
name?: boolean
|
@@ -6621,6 +6707,7 @@ export namespace Prisma {
|
|
6621
6707
|
updated_at?: boolean
|
6622
6708
|
}
|
6623
6709
|
|
6710
|
+
|
6624
6711
|
export type TagInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
6625
6712
|
group?: boolean | TagGroupDefaultArgs<ExtArgs>
|
6626
6713
|
assistedEvent?: boolean | Tag$assistedEventArgs<ExtArgs>
|
@@ -6630,9 +6717,7 @@ export namespace Prisma {
|
|
6630
6717
|
accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
|
6631
6718
|
_count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
|
6632
6719
|
}
|
6633
|
-
|
6634
|
-
group?: boolean | TagGroupDefaultArgs<ExtArgs>
|
6635
|
-
}
|
6720
|
+
|
6636
6721
|
|
6637
6722
|
export type $TagPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
6638
6723
|
name: "Tag"
|
@@ -6655,6 +6740,7 @@ export namespace Prisma {
|
|
6655
6740
|
composites: {}
|
6656
6741
|
}
|
6657
6742
|
|
6743
|
+
|
6658
6744
|
type TagGetPayload<S extends boolean | null | undefined | TagDefaultArgs> = $Result.GetResult<Prisma.$TagPayload, S>
|
6659
6745
|
|
6660
6746
|
type TagCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -6674,8 +6760,10 @@ export namespace Prisma {
|
|
6674
6760
|
* // ... provide filter here
|
6675
6761
|
* }
|
6676
6762
|
* })
|
6677
|
-
|
6678
|
-
findUnique<T extends TagFindUniqueArgs
|
6763
|
+
**/
|
6764
|
+
findUnique<T extends TagFindUniqueArgs<ExtArgs>>(
|
6765
|
+
args: SelectSubset<T, TagFindUniqueArgs<ExtArgs>>
|
6766
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
6679
6767
|
|
6680
6768
|
/**
|
6681
6769
|
* Find one Tag that matches the filter or throw an error with `error.code='P2025'`
|
@@ -6688,8 +6776,10 @@ export namespace Prisma {
|
|
6688
6776
|
* // ... provide filter here
|
6689
6777
|
* }
|
6690
6778
|
* })
|
6691
|
-
|
6692
|
-
findUniqueOrThrow<T extends TagFindUniqueOrThrowArgs
|
6779
|
+
**/
|
6780
|
+
findUniqueOrThrow<T extends TagFindUniqueOrThrowArgs<ExtArgs>>(
|
6781
|
+
args?: SelectSubset<T, TagFindUniqueOrThrowArgs<ExtArgs>>
|
6782
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
6693
6783
|
|
6694
6784
|
/**
|
6695
6785
|
* Find the first Tag that matches the filter.
|
@@ -6703,8 +6793,10 @@ export namespace Prisma {
|
|
6703
6793
|
* // ... provide filter here
|
6704
6794
|
* }
|
6705
6795
|
* })
|
6706
|
-
|
6707
|
-
findFirst<T extends TagFindFirstArgs
|
6796
|
+
**/
|
6797
|
+
findFirst<T extends TagFindFirstArgs<ExtArgs>>(
|
6798
|
+
args?: SelectSubset<T, TagFindFirstArgs<ExtArgs>>
|
6799
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
6708
6800
|
|
6709
6801
|
/**
|
6710
6802
|
* Find the first Tag that matches the filter or
|
@@ -6719,8 +6811,10 @@ export namespace Prisma {
|
|
6719
6811
|
* // ... provide filter here
|
6720
6812
|
* }
|
6721
6813
|
* })
|
6722
|
-
|
6723
|
-
findFirstOrThrow<T extends TagFindFirstOrThrowArgs
|
6814
|
+
**/
|
6815
|
+
findFirstOrThrow<T extends TagFindFirstOrThrowArgs<ExtArgs>>(
|
6816
|
+
args?: SelectSubset<T, TagFindFirstOrThrowArgs<ExtArgs>>
|
6817
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
6724
6818
|
|
6725
6819
|
/**
|
6726
6820
|
* Find zero or more Tags that matches the filter.
|
@@ -6737,8 +6831,10 @@ export namespace Prisma {
|
|
6737
6831
|
* // Only select the `id`
|
6738
6832
|
* const tagWithIdOnly = await prisma.tag.findMany({ select: { id: true } })
|
6739
6833
|
*
|
6740
|
-
|
6741
|
-
findMany<T extends TagFindManyArgs
|
6834
|
+
**/
|
6835
|
+
findMany<T extends TagFindManyArgs<ExtArgs>>(
|
6836
|
+
args?: SelectSubset<T, TagFindManyArgs<ExtArgs>>
|
6837
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findMany'>>
|
6742
6838
|
|
6743
6839
|
/**
|
6744
6840
|
* Create a Tag.
|
@@ -6751,8 +6847,10 @@ export namespace Prisma {
|
|
6751
6847
|
* }
|
6752
6848
|
* })
|
6753
6849
|
*
|
6754
|
-
|
6755
|
-
create<T extends TagCreateArgs
|
6850
|
+
**/
|
6851
|
+
create<T extends TagCreateArgs<ExtArgs>>(
|
6852
|
+
args: SelectSubset<T, TagCreateArgs<ExtArgs>>
|
6853
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
6756
6854
|
|
6757
6855
|
/**
|
6758
6856
|
* Create many Tags.
|
@@ -6765,8 +6863,10 @@ export namespace Prisma {
|
|
6765
6863
|
* ]
|
6766
6864
|
* })
|
6767
6865
|
*
|
6768
|
-
|
6769
|
-
createMany<T extends TagCreateManyArgs
|
6866
|
+
**/
|
6867
|
+
createMany<T extends TagCreateManyArgs<ExtArgs>>(
|
6868
|
+
args?: SelectSubset<T, TagCreateManyArgs<ExtArgs>>
|
6869
|
+
): Prisma.PrismaPromise<BatchPayload>
|
6770
6870
|
|
6771
6871
|
/**
|
6772
6872
|
* Create many Tags and returns the data saved in the database.
|
@@ -6789,8 +6889,10 @@ export namespace Prisma {
|
|
6789
6889
|
* Note, that providing `undefined` is treated as the value not being there.
|
6790
6890
|
* Read more here: https://pris.ly/d/null-undefined
|
6791
6891
|
*
|
6792
|
-
|
6793
|
-
createManyAndReturn<T extends TagCreateManyAndReturnArgs
|
6892
|
+
**/
|
6893
|
+
createManyAndReturn<T extends TagCreateManyAndReturnArgs<ExtArgs>>(
|
6894
|
+
args?: SelectSubset<T, TagCreateManyAndReturnArgs<ExtArgs>>
|
6895
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
6794
6896
|
|
6795
6897
|
/**
|
6796
6898
|
* Delete a Tag.
|
@@ -6803,8 +6905,10 @@ export namespace Prisma {
|
|
6803
6905
|
* }
|
6804
6906
|
* })
|
6805
6907
|
*
|
6806
|
-
|
6807
|
-
delete<T extends TagDeleteArgs
|
6908
|
+
**/
|
6909
|
+
delete<T extends TagDeleteArgs<ExtArgs>>(
|
6910
|
+
args: SelectSubset<T, TagDeleteArgs<ExtArgs>>
|
6911
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
6808
6912
|
|
6809
6913
|
/**
|
6810
6914
|
* Update one Tag.
|
@@ -6820,8 +6924,10 @@ export namespace Prisma {
|
|
6820
6924
|
* }
|
6821
6925
|
* })
|
6822
6926
|
*
|
6823
|
-
|
6824
|
-
update<T extends TagUpdateArgs
|
6927
|
+
**/
|
6928
|
+
update<T extends TagUpdateArgs<ExtArgs>>(
|
6929
|
+
args: SelectSubset<T, TagUpdateArgs<ExtArgs>>
|
6930
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
6825
6931
|
|
6826
6932
|
/**
|
6827
6933
|
* Delete zero or more Tags.
|
@@ -6834,8 +6940,10 @@ export namespace Prisma {
|
|
6834
6940
|
* }
|
6835
6941
|
* })
|
6836
6942
|
*
|
6837
|
-
|
6838
|
-
deleteMany<T extends TagDeleteManyArgs
|
6943
|
+
**/
|
6944
|
+
deleteMany<T extends TagDeleteManyArgs<ExtArgs>>(
|
6945
|
+
args?: SelectSubset<T, TagDeleteManyArgs<ExtArgs>>
|
6946
|
+
): Prisma.PrismaPromise<BatchPayload>
|
6839
6947
|
|
6840
6948
|
/**
|
6841
6949
|
* Update zero or more Tags.
|
@@ -6853,8 +6961,10 @@ export namespace Prisma {
|
|
6853
6961
|
* }
|
6854
6962
|
* })
|
6855
6963
|
*
|
6856
|
-
|
6857
|
-
updateMany<T extends TagUpdateManyArgs
|
6964
|
+
**/
|
6965
|
+
updateMany<T extends TagUpdateManyArgs<ExtArgs>>(
|
6966
|
+
args: SelectSubset<T, TagUpdateManyArgs<ExtArgs>>
|
6967
|
+
): Prisma.PrismaPromise<BatchPayload>
|
6858
6968
|
|
6859
6969
|
/**
|
6860
6970
|
* Create or update one Tag.
|
@@ -6872,9 +6982,10 @@ export namespace Prisma {
|
|
6872
6982
|
* // ... the filter for the Tag we want to update
|
6873
6983
|
* }
|
6874
6984
|
* })
|
6875
|
-
|
6876
|
-
upsert<T extends TagUpsertArgs
|
6877
|
-
|
6985
|
+
**/
|
6986
|
+
upsert<T extends TagUpsertArgs<ExtArgs>>(
|
6987
|
+
args: SelectSubset<T, TagUpsertArgs<ExtArgs>>
|
6988
|
+
): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
6878
6989
|
|
6879
6990
|
/**
|
6880
6991
|
* Count the number of Tags.
|
@@ -7014,38 +7125,44 @@ export namespace Prisma {
|
|
7014
7125
|
* https://github.com/prisma/prisma-client-js/issues/707
|
7015
7126
|
*/
|
7016
7127
|
export interface Prisma__TagClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
7017
|
-
readonly [Symbol.toStringTag]:
|
7018
|
-
|
7019
|
-
|
7020
|
-
|
7021
|
-
|
7022
|
-
|
7023
|
-
|
7128
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
7129
|
+
|
7130
|
+
group<T extends TagGroupDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagGroupDefaultArgs<ExtArgs>>): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
7131
|
+
|
7132
|
+
assistedEvent<T extends Tag$assistedEventArgs<ExtArgs> = {}>(args?: Subset<T, Tag$assistedEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
7133
|
+
|
7134
|
+
confirmedEvent<T extends Tag$confirmedEventArgs<ExtArgs> = {}>(args?: Subset<T, Tag$confirmedEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
7135
|
+
|
7136
|
+
accounts<T extends Tag$accountsArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findMany'> | Null>;
|
7137
|
+
|
7138
|
+
profiles<T extends Tag$profilesArgs<ExtArgs> = {}>(args?: Subset<T, Tag$profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findMany'> | Null>;
|
7139
|
+
|
7140
|
+
accountsGlobalFilter<T extends Tag$accountsGlobalFilterArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsGlobalFilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, 'findMany'> | Null>;
|
7141
|
+
|
7024
7142
|
/**
|
7025
7143
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
7026
7144
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
7027
7145
|
* @param onrejected The callback to execute when the Promise is rejected.
|
7028
7146
|
* @returns A Promise for the completion of which ever callback is executed.
|
7029
7147
|
*/
|
7030
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
7148
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
7031
7149
|
/**
|
7032
7150
|
* Attaches a callback for only the rejection of the Promise.
|
7033
7151
|
* @param onrejected The callback to execute when the Promise is rejected.
|
7034
7152
|
* @returns A Promise for the completion of the callback.
|
7035
7153
|
*/
|
7036
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
7154
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
7037
7155
|
/**
|
7038
7156
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
7039
7157
|
* resolved value cannot be modified from the callback.
|
7040
7158
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
7041
7159
|
* @returns A Promise for the completion of the callback.
|
7042
7160
|
*/
|
7043
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
7161
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
7044
7162
|
}
|
7045
7163
|
|
7046
7164
|
|
7047
7165
|
|
7048
|
-
|
7049
7166
|
/**
|
7050
7167
|
* Fields of the Tag model
|
7051
7168
|
*/
|
@@ -7271,16 +7388,16 @@ export namespace Prisma {
|
|
7271
7388
|
/**
|
7272
7389
|
* Select specific fields to fetch from the Tag
|
7273
7390
|
*/
|
7274
|
-
select?:
|
7391
|
+
select?: TagSelect<ExtArgs> | null
|
7392
|
+
/**
|
7393
|
+
* Choose, which related nodes to fetch as well
|
7394
|
+
*/
|
7395
|
+
include?: TagInclude<ExtArgs> | null
|
7275
7396
|
/**
|
7276
7397
|
* The data used to create many Tags.
|
7277
7398
|
*/
|
7278
7399
|
data: TagCreateManyInput | TagCreateManyInput[]
|
7279
7400
|
skipDuplicates?: boolean
|
7280
|
-
/**
|
7281
|
-
* Choose, which related nodes to fetch as well
|
7282
|
-
*/
|
7283
|
-
include?: TagIncludeCreateManyAndReturn<ExtArgs> | null
|
7284
7401
|
}
|
7285
7402
|
|
7286
7403
|
/**
|
@@ -7654,15 +7771,6 @@ export namespace Prisma {
|
|
7654
7771
|
_count?: boolean | TagGroupCountOutputTypeDefaultArgs<ExtArgs>
|
7655
7772
|
}, ExtArgs["result"]["tagGroup"]>
|
7656
7773
|
|
7657
|
-
export type TagGroupSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
7658
|
-
id?: boolean
|
7659
|
-
name?: boolean
|
7660
|
-
color?: boolean
|
7661
|
-
isExclusive?: boolean
|
7662
|
-
created_at?: boolean
|
7663
|
-
updated_at?: boolean
|
7664
|
-
}, ExtArgs["result"]["tagGroup"]>
|
7665
|
-
|
7666
7774
|
export type TagGroupSelectScalar = {
|
7667
7775
|
id?: boolean
|
7668
7776
|
name?: boolean
|
@@ -7672,11 +7780,12 @@ export namespace Prisma {
|
|
7672
7780
|
updated_at?: boolean
|
7673
7781
|
}
|
7674
7782
|
|
7783
|
+
|
7675
7784
|
export type TagGroupInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7676
7785
|
tags?: boolean | TagGroup$tagsArgs<ExtArgs>
|
7677
7786
|
_count?: boolean | TagGroupCountOutputTypeDefaultArgs<ExtArgs>
|
7678
7787
|
}
|
7679
|
-
|
7788
|
+
|
7680
7789
|
|
7681
7790
|
export type $TagGroupPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7682
7791
|
name: "TagGroup"
|
@@ -7694,6 +7803,7 @@ export namespace Prisma {
|
|
7694
7803
|
composites: {}
|
7695
7804
|
}
|
7696
7805
|
|
7806
|
+
|
7697
7807
|
type TagGroupGetPayload<S extends boolean | null | undefined | TagGroupDefaultArgs> = $Result.GetResult<Prisma.$TagGroupPayload, S>
|
7698
7808
|
|
7699
7809
|
type TagGroupCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -7713,8 +7823,10 @@ export namespace Prisma {
|
|
7713
7823
|
* // ... provide filter here
|
7714
7824
|
* }
|
7715
7825
|
* })
|
7716
|
-
|
7717
|
-
findUnique<T extends TagGroupFindUniqueArgs
|
7826
|
+
**/
|
7827
|
+
findUnique<T extends TagGroupFindUniqueArgs<ExtArgs>>(
|
7828
|
+
args: SelectSubset<T, TagGroupFindUniqueArgs<ExtArgs>>
|
7829
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
7718
7830
|
|
7719
7831
|
/**
|
7720
7832
|
* Find one TagGroup that matches the filter or throw an error with `error.code='P2025'`
|
@@ -7727,8 +7839,10 @@ export namespace Prisma {
|
|
7727
7839
|
* // ... provide filter here
|
7728
7840
|
* }
|
7729
7841
|
* })
|
7730
|
-
|
7731
|
-
findUniqueOrThrow<T extends TagGroupFindUniqueOrThrowArgs
|
7842
|
+
**/
|
7843
|
+
findUniqueOrThrow<T extends TagGroupFindUniqueOrThrowArgs<ExtArgs>>(
|
7844
|
+
args?: SelectSubset<T, TagGroupFindUniqueOrThrowArgs<ExtArgs>>
|
7845
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
7732
7846
|
|
7733
7847
|
/**
|
7734
7848
|
* Find the first TagGroup that matches the filter.
|
@@ -7742,8 +7856,10 @@ export namespace Prisma {
|
|
7742
7856
|
* // ... provide filter here
|
7743
7857
|
* }
|
7744
7858
|
* })
|
7745
|
-
|
7746
|
-
findFirst<T extends TagGroupFindFirstArgs
|
7859
|
+
**/
|
7860
|
+
findFirst<T extends TagGroupFindFirstArgs<ExtArgs>>(
|
7861
|
+
args?: SelectSubset<T, TagGroupFindFirstArgs<ExtArgs>>
|
7862
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
7747
7863
|
|
7748
7864
|
/**
|
7749
7865
|
* Find the first TagGroup that matches the filter or
|
@@ -7758,8 +7874,10 @@ export namespace Prisma {
|
|
7758
7874
|
* // ... provide filter here
|
7759
7875
|
* }
|
7760
7876
|
* })
|
7761
|
-
|
7762
|
-
findFirstOrThrow<T extends TagGroupFindFirstOrThrowArgs
|
7877
|
+
**/
|
7878
|
+
findFirstOrThrow<T extends TagGroupFindFirstOrThrowArgs<ExtArgs>>(
|
7879
|
+
args?: SelectSubset<T, TagGroupFindFirstOrThrowArgs<ExtArgs>>
|
7880
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
7763
7881
|
|
7764
7882
|
/**
|
7765
7883
|
* Find zero or more TagGroups that matches the filter.
|
@@ -7776,8 +7894,10 @@ export namespace Prisma {
|
|
7776
7894
|
* // Only select the `id`
|
7777
7895
|
* const tagGroupWithIdOnly = await prisma.tagGroup.findMany({ select: { id: true } })
|
7778
7896
|
*
|
7779
|
-
|
7780
|
-
findMany<T extends TagGroupFindManyArgs
|
7897
|
+
**/
|
7898
|
+
findMany<T extends TagGroupFindManyArgs<ExtArgs>>(
|
7899
|
+
args?: SelectSubset<T, TagGroupFindManyArgs<ExtArgs>>
|
7900
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'findMany'>>
|
7781
7901
|
|
7782
7902
|
/**
|
7783
7903
|
* Create a TagGroup.
|
@@ -7790,8 +7910,10 @@ export namespace Prisma {
|
|
7790
7910
|
* }
|
7791
7911
|
* })
|
7792
7912
|
*
|
7793
|
-
|
7794
|
-
create<T extends TagGroupCreateArgs
|
7913
|
+
**/
|
7914
|
+
create<T extends TagGroupCreateArgs<ExtArgs>>(
|
7915
|
+
args: SelectSubset<T, TagGroupCreateArgs<ExtArgs>>
|
7916
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
7795
7917
|
|
7796
7918
|
/**
|
7797
7919
|
* Create many TagGroups.
|
@@ -7804,8 +7926,10 @@ export namespace Prisma {
|
|
7804
7926
|
* ]
|
7805
7927
|
* })
|
7806
7928
|
*
|
7807
|
-
|
7808
|
-
createMany<T extends TagGroupCreateManyArgs
|
7929
|
+
**/
|
7930
|
+
createMany<T extends TagGroupCreateManyArgs<ExtArgs>>(
|
7931
|
+
args?: SelectSubset<T, TagGroupCreateManyArgs<ExtArgs>>
|
7932
|
+
): Prisma.PrismaPromise<BatchPayload>
|
7809
7933
|
|
7810
7934
|
/**
|
7811
7935
|
* Create many TagGroups and returns the data saved in the database.
|
@@ -7828,8 +7952,10 @@ export namespace Prisma {
|
|
7828
7952
|
* Note, that providing `undefined` is treated as the value not being there.
|
7829
7953
|
* Read more here: https://pris.ly/d/null-undefined
|
7830
7954
|
*
|
7831
|
-
|
7832
|
-
createManyAndReturn<T extends TagGroupCreateManyAndReturnArgs
|
7955
|
+
**/
|
7956
|
+
createManyAndReturn<T extends TagGroupCreateManyAndReturnArgs<ExtArgs>>(
|
7957
|
+
args?: SelectSubset<T, TagGroupCreateManyAndReturnArgs<ExtArgs>>
|
7958
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
7833
7959
|
|
7834
7960
|
/**
|
7835
7961
|
* Delete a TagGroup.
|
@@ -7842,8 +7968,10 @@ export namespace Prisma {
|
|
7842
7968
|
* }
|
7843
7969
|
* })
|
7844
7970
|
*
|
7845
|
-
|
7846
|
-
delete<T extends TagGroupDeleteArgs
|
7971
|
+
**/
|
7972
|
+
delete<T extends TagGroupDeleteArgs<ExtArgs>>(
|
7973
|
+
args: SelectSubset<T, TagGroupDeleteArgs<ExtArgs>>
|
7974
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
7847
7975
|
|
7848
7976
|
/**
|
7849
7977
|
* Update one TagGroup.
|
@@ -7859,8 +7987,10 @@ export namespace Prisma {
|
|
7859
7987
|
* }
|
7860
7988
|
* })
|
7861
7989
|
*
|
7862
|
-
|
7863
|
-
update<T extends TagGroupUpdateArgs
|
7990
|
+
**/
|
7991
|
+
update<T extends TagGroupUpdateArgs<ExtArgs>>(
|
7992
|
+
args: SelectSubset<T, TagGroupUpdateArgs<ExtArgs>>
|
7993
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
7864
7994
|
|
7865
7995
|
/**
|
7866
7996
|
* Delete zero or more TagGroups.
|
@@ -7873,8 +8003,10 @@ export namespace Prisma {
|
|
7873
8003
|
* }
|
7874
8004
|
* })
|
7875
8005
|
*
|
7876
|
-
|
7877
|
-
deleteMany<T extends TagGroupDeleteManyArgs
|
8006
|
+
**/
|
8007
|
+
deleteMany<T extends TagGroupDeleteManyArgs<ExtArgs>>(
|
8008
|
+
args?: SelectSubset<T, TagGroupDeleteManyArgs<ExtArgs>>
|
8009
|
+
): Prisma.PrismaPromise<BatchPayload>
|
7878
8010
|
|
7879
8011
|
/**
|
7880
8012
|
* Update zero or more TagGroups.
|
@@ -7892,8 +8024,10 @@ export namespace Prisma {
|
|
7892
8024
|
* }
|
7893
8025
|
* })
|
7894
8026
|
*
|
7895
|
-
|
7896
|
-
updateMany<T extends TagGroupUpdateManyArgs
|
8027
|
+
**/
|
8028
|
+
updateMany<T extends TagGroupUpdateManyArgs<ExtArgs>>(
|
8029
|
+
args: SelectSubset<T, TagGroupUpdateManyArgs<ExtArgs>>
|
8030
|
+
): Prisma.PrismaPromise<BatchPayload>
|
7897
8031
|
|
7898
8032
|
/**
|
7899
8033
|
* Create or update one TagGroup.
|
@@ -7911,9 +8045,10 @@ export namespace Prisma {
|
|
7911
8045
|
* // ... the filter for the TagGroup we want to update
|
7912
8046
|
* }
|
7913
8047
|
* })
|
7914
|
-
|
7915
|
-
upsert<T extends TagGroupUpsertArgs
|
7916
|
-
|
8048
|
+
**/
|
8049
|
+
upsert<T extends TagGroupUpsertArgs<ExtArgs>>(
|
8050
|
+
args: SelectSubset<T, TagGroupUpsertArgs<ExtArgs>>
|
8051
|
+
): Prisma__TagGroupClient<$Result.GetResult<Prisma.$TagGroupPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
7917
8052
|
|
7918
8053
|
/**
|
7919
8054
|
* Count the number of TagGroups.
|
@@ -8053,33 +8188,34 @@ export namespace Prisma {
|
|
8053
8188
|
* https://github.com/prisma/prisma-client-js/issues/707
|
8054
8189
|
*/
|
8055
8190
|
export interface Prisma__TagGroupClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
8056
|
-
readonly [Symbol.toStringTag]:
|
8057
|
-
|
8191
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
8192
|
+
|
8193
|
+
tags<T extends TagGroup$tagsArgs<ExtArgs> = {}>(args?: Subset<T, TagGroup$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
8194
|
+
|
8058
8195
|
/**
|
8059
8196
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
8060
8197
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
8061
8198
|
* @param onrejected The callback to execute when the Promise is rejected.
|
8062
8199
|
* @returns A Promise for the completion of which ever callback is executed.
|
8063
8200
|
*/
|
8064
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
8201
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
8065
8202
|
/**
|
8066
8203
|
* Attaches a callback for only the rejection of the Promise.
|
8067
8204
|
* @param onrejected The callback to execute when the Promise is rejected.
|
8068
8205
|
* @returns A Promise for the completion of the callback.
|
8069
8206
|
*/
|
8070
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
8207
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
8071
8208
|
/**
|
8072
8209
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
8073
8210
|
* resolved value cannot be modified from the callback.
|
8074
8211
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
8075
8212
|
* @returns A Promise for the completion of the callback.
|
8076
8213
|
*/
|
8077
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
8214
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
8078
8215
|
}
|
8079
8216
|
|
8080
8217
|
|
8081
8218
|
|
8082
|
-
|
8083
8219
|
/**
|
8084
8220
|
* Fields of the TagGroup model
|
8085
8221
|
*/
|
@@ -8305,7 +8441,11 @@ export namespace Prisma {
|
|
8305
8441
|
/**
|
8306
8442
|
* Select specific fields to fetch from the TagGroup
|
8307
8443
|
*/
|
8308
|
-
select?:
|
8444
|
+
select?: TagGroupSelect<ExtArgs> | null
|
8445
|
+
/**
|
8446
|
+
* Choose, which related nodes to fetch as well
|
8447
|
+
*/
|
8448
|
+
include?: TagGroupInclude<ExtArgs> | null
|
8309
8449
|
/**
|
8310
8450
|
* The data used to create many TagGroups.
|
8311
8451
|
*/
|
@@ -8650,23 +8790,6 @@ export namespace Prisma {
|
|
8650
8790
|
_count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
|
8651
8791
|
}, ExtArgs["result"]["event"]>
|
8652
8792
|
|
8653
|
-
export type EventSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
8654
|
-
id?: boolean
|
8655
|
-
name?: boolean
|
8656
|
-
date?: boolean
|
8657
|
-
location?: boolean
|
8658
|
-
folderId?: boolean
|
8659
|
-
tagAssistedId?: boolean
|
8660
|
-
tagConfirmedId?: boolean
|
8661
|
-
supraEventId?: boolean
|
8662
|
-
created_at?: boolean
|
8663
|
-
updated_at?: boolean
|
8664
|
-
folder?: boolean | Event$folderArgs<ExtArgs>
|
8665
|
-
tagAssisted?: boolean | TagDefaultArgs<ExtArgs>
|
8666
|
-
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
8667
|
-
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
8668
|
-
}, ExtArgs["result"]["event"]>
|
8669
|
-
|
8670
8793
|
export type EventSelectScalar = {
|
8671
8794
|
id?: boolean
|
8672
8795
|
name?: boolean
|
@@ -8680,6 +8803,7 @@ export namespace Prisma {
|
|
8680
8803
|
updated_at?: boolean
|
8681
8804
|
}
|
8682
8805
|
|
8806
|
+
|
8683
8807
|
export type EventInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8684
8808
|
folder?: boolean | Event$folderArgs<ExtArgs>
|
8685
8809
|
tagAssisted?: boolean | TagDefaultArgs<ExtArgs>
|
@@ -8688,12 +8812,7 @@ export namespace Prisma {
|
|
8688
8812
|
subEvents?: boolean | Event$subEventsArgs<ExtArgs>
|
8689
8813
|
_count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
|
8690
8814
|
}
|
8691
|
-
|
8692
|
-
folder?: boolean | Event$folderArgs<ExtArgs>
|
8693
|
-
tagAssisted?: boolean | TagDefaultArgs<ExtArgs>
|
8694
|
-
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
8695
|
-
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
8696
|
-
}
|
8815
|
+
|
8697
8816
|
|
8698
8817
|
export type $EventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8699
8818
|
name: "Event"
|
@@ -8719,6 +8838,7 @@ export namespace Prisma {
|
|
8719
8838
|
composites: {}
|
8720
8839
|
}
|
8721
8840
|
|
8841
|
+
|
8722
8842
|
type EventGetPayload<S extends boolean | null | undefined | EventDefaultArgs> = $Result.GetResult<Prisma.$EventPayload, S>
|
8723
8843
|
|
8724
8844
|
type EventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -8738,8 +8858,10 @@ export namespace Prisma {
|
|
8738
8858
|
* // ... provide filter here
|
8739
8859
|
* }
|
8740
8860
|
* })
|
8741
|
-
|
8742
|
-
findUnique<T extends EventFindUniqueArgs
|
8861
|
+
**/
|
8862
|
+
findUnique<T extends EventFindUniqueArgs<ExtArgs>>(
|
8863
|
+
args: SelectSubset<T, EventFindUniqueArgs<ExtArgs>>
|
8864
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
8743
8865
|
|
8744
8866
|
/**
|
8745
8867
|
* Find one Event that matches the filter or throw an error with `error.code='P2025'`
|
@@ -8752,8 +8874,10 @@ export namespace Prisma {
|
|
8752
8874
|
* // ... provide filter here
|
8753
8875
|
* }
|
8754
8876
|
* })
|
8755
|
-
|
8756
|
-
findUniqueOrThrow<T extends EventFindUniqueOrThrowArgs
|
8877
|
+
**/
|
8878
|
+
findUniqueOrThrow<T extends EventFindUniqueOrThrowArgs<ExtArgs>>(
|
8879
|
+
args?: SelectSubset<T, EventFindUniqueOrThrowArgs<ExtArgs>>
|
8880
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
8757
8881
|
|
8758
8882
|
/**
|
8759
8883
|
* Find the first Event that matches the filter.
|
@@ -8767,8 +8891,10 @@ export namespace Prisma {
|
|
8767
8891
|
* // ... provide filter here
|
8768
8892
|
* }
|
8769
8893
|
* })
|
8770
|
-
|
8771
|
-
findFirst<T extends EventFindFirstArgs
|
8894
|
+
**/
|
8895
|
+
findFirst<T extends EventFindFirstArgs<ExtArgs>>(
|
8896
|
+
args?: SelectSubset<T, EventFindFirstArgs<ExtArgs>>
|
8897
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
8772
8898
|
|
8773
8899
|
/**
|
8774
8900
|
* Find the first Event that matches the filter or
|
@@ -8783,8 +8909,10 @@ export namespace Prisma {
|
|
8783
8909
|
* // ... provide filter here
|
8784
8910
|
* }
|
8785
8911
|
* })
|
8786
|
-
|
8787
|
-
findFirstOrThrow<T extends EventFindFirstOrThrowArgs
|
8912
|
+
**/
|
8913
|
+
findFirstOrThrow<T extends EventFindFirstOrThrowArgs<ExtArgs>>(
|
8914
|
+
args?: SelectSubset<T, EventFindFirstOrThrowArgs<ExtArgs>>
|
8915
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
8788
8916
|
|
8789
8917
|
/**
|
8790
8918
|
* Find zero or more Events that matches the filter.
|
@@ -8801,8 +8929,10 @@ export namespace Prisma {
|
|
8801
8929
|
* // Only select the `id`
|
8802
8930
|
* const eventWithIdOnly = await prisma.event.findMany({ select: { id: true } })
|
8803
8931
|
*
|
8804
|
-
|
8805
|
-
findMany<T extends EventFindManyArgs
|
8932
|
+
**/
|
8933
|
+
findMany<T extends EventFindManyArgs<ExtArgs>>(
|
8934
|
+
args?: SelectSubset<T, EventFindManyArgs<ExtArgs>>
|
8935
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findMany'>>
|
8806
8936
|
|
8807
8937
|
/**
|
8808
8938
|
* Create a Event.
|
@@ -8815,8 +8945,10 @@ export namespace Prisma {
|
|
8815
8945
|
* }
|
8816
8946
|
* })
|
8817
8947
|
*
|
8818
|
-
|
8819
|
-
create<T extends EventCreateArgs
|
8948
|
+
**/
|
8949
|
+
create<T extends EventCreateArgs<ExtArgs>>(
|
8950
|
+
args: SelectSubset<T, EventCreateArgs<ExtArgs>>
|
8951
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
8820
8952
|
|
8821
8953
|
/**
|
8822
8954
|
* Create many Events.
|
@@ -8829,8 +8961,10 @@ export namespace Prisma {
|
|
8829
8961
|
* ]
|
8830
8962
|
* })
|
8831
8963
|
*
|
8832
|
-
|
8833
|
-
createMany<T extends EventCreateManyArgs
|
8964
|
+
**/
|
8965
|
+
createMany<T extends EventCreateManyArgs<ExtArgs>>(
|
8966
|
+
args?: SelectSubset<T, EventCreateManyArgs<ExtArgs>>
|
8967
|
+
): Prisma.PrismaPromise<BatchPayload>
|
8834
8968
|
|
8835
8969
|
/**
|
8836
8970
|
* Create many Events and returns the data saved in the database.
|
@@ -8853,8 +8987,10 @@ export namespace Prisma {
|
|
8853
8987
|
* Note, that providing `undefined` is treated as the value not being there.
|
8854
8988
|
* Read more here: https://pris.ly/d/null-undefined
|
8855
8989
|
*
|
8856
|
-
|
8857
|
-
createManyAndReturn<T extends EventCreateManyAndReturnArgs
|
8990
|
+
**/
|
8991
|
+
createManyAndReturn<T extends EventCreateManyAndReturnArgs<ExtArgs>>(
|
8992
|
+
args?: SelectSubset<T, EventCreateManyAndReturnArgs<ExtArgs>>
|
8993
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
8858
8994
|
|
8859
8995
|
/**
|
8860
8996
|
* Delete a Event.
|
@@ -8867,8 +9003,10 @@ export namespace Prisma {
|
|
8867
9003
|
* }
|
8868
9004
|
* })
|
8869
9005
|
*
|
8870
|
-
|
8871
|
-
delete<T extends EventDeleteArgs
|
9006
|
+
**/
|
9007
|
+
delete<T extends EventDeleteArgs<ExtArgs>>(
|
9008
|
+
args: SelectSubset<T, EventDeleteArgs<ExtArgs>>
|
9009
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
8872
9010
|
|
8873
9011
|
/**
|
8874
9012
|
* Update one Event.
|
@@ -8884,8 +9022,10 @@ export namespace Prisma {
|
|
8884
9022
|
* }
|
8885
9023
|
* })
|
8886
9024
|
*
|
8887
|
-
|
8888
|
-
update<T extends EventUpdateArgs
|
9025
|
+
**/
|
9026
|
+
update<T extends EventUpdateArgs<ExtArgs>>(
|
9027
|
+
args: SelectSubset<T, EventUpdateArgs<ExtArgs>>
|
9028
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
8889
9029
|
|
8890
9030
|
/**
|
8891
9031
|
* Delete zero or more Events.
|
@@ -8898,8 +9038,10 @@ export namespace Prisma {
|
|
8898
9038
|
* }
|
8899
9039
|
* })
|
8900
9040
|
*
|
8901
|
-
|
8902
|
-
deleteMany<T extends EventDeleteManyArgs
|
9041
|
+
**/
|
9042
|
+
deleteMany<T extends EventDeleteManyArgs<ExtArgs>>(
|
9043
|
+
args?: SelectSubset<T, EventDeleteManyArgs<ExtArgs>>
|
9044
|
+
): Prisma.PrismaPromise<BatchPayload>
|
8903
9045
|
|
8904
9046
|
/**
|
8905
9047
|
* Update zero or more Events.
|
@@ -8917,8 +9059,10 @@ export namespace Prisma {
|
|
8917
9059
|
* }
|
8918
9060
|
* })
|
8919
9061
|
*
|
8920
|
-
|
8921
|
-
updateMany<T extends EventUpdateManyArgs
|
9062
|
+
**/
|
9063
|
+
updateMany<T extends EventUpdateManyArgs<ExtArgs>>(
|
9064
|
+
args: SelectSubset<T, EventUpdateManyArgs<ExtArgs>>
|
9065
|
+
): Prisma.PrismaPromise<BatchPayload>
|
8922
9066
|
|
8923
9067
|
/**
|
8924
9068
|
* Create or update one Event.
|
@@ -8936,9 +9080,10 @@ export namespace Prisma {
|
|
8936
9080
|
* // ... the filter for the Event we want to update
|
8937
9081
|
* }
|
8938
9082
|
* })
|
8939
|
-
|
8940
|
-
upsert<T extends EventUpsertArgs
|
8941
|
-
|
9083
|
+
**/
|
9084
|
+
upsert<T extends EventUpsertArgs<ExtArgs>>(
|
9085
|
+
args: SelectSubset<T, EventUpsertArgs<ExtArgs>>
|
9086
|
+
): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
8942
9087
|
|
8943
9088
|
/**
|
8944
9089
|
* Count the number of Events.
|
@@ -9078,37 +9223,42 @@ export namespace Prisma {
|
|
9078
9223
|
* https://github.com/prisma/prisma-client-js/issues/707
|
9079
9224
|
*/
|
9080
9225
|
export interface Prisma__EventClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
9081
|
-
readonly [Symbol.toStringTag]:
|
9082
|
-
|
9083
|
-
|
9084
|
-
|
9085
|
-
|
9086
|
-
|
9226
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
9227
|
+
|
9228
|
+
folder<T extends Event$folderArgs<ExtArgs> = {}>(args?: Subset<T, Event$folderArgs<ExtArgs>>): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
9229
|
+
|
9230
|
+
tagAssisted<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
9231
|
+
|
9232
|
+
tagConfirmed<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
9233
|
+
|
9234
|
+
supraEvent<T extends Event$supraEventArgs<ExtArgs> = {}>(args?: Subset<T, Event$supraEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
9235
|
+
|
9236
|
+
subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
9237
|
+
|
9087
9238
|
/**
|
9088
9239
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
9089
9240
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
9090
9241
|
* @param onrejected The callback to execute when the Promise is rejected.
|
9091
9242
|
* @returns A Promise for the completion of which ever callback is executed.
|
9092
9243
|
*/
|
9093
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
9244
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
9094
9245
|
/**
|
9095
9246
|
* Attaches a callback for only the rejection of the Promise.
|
9096
9247
|
* @param onrejected The callback to execute when the Promise is rejected.
|
9097
9248
|
* @returns A Promise for the completion of the callback.
|
9098
9249
|
*/
|
9099
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
9250
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
9100
9251
|
/**
|
9101
9252
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
9102
9253
|
* resolved value cannot be modified from the callback.
|
9103
9254
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
9104
9255
|
* @returns A Promise for the completion of the callback.
|
9105
9256
|
*/
|
9106
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
9257
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
9107
9258
|
}
|
9108
9259
|
|
9109
9260
|
|
9110
9261
|
|
9111
|
-
|
9112
9262
|
/**
|
9113
9263
|
* Fields of the Event model
|
9114
9264
|
*/
|
@@ -9338,16 +9488,16 @@ export namespace Prisma {
|
|
9338
9488
|
/**
|
9339
9489
|
* Select specific fields to fetch from the Event
|
9340
9490
|
*/
|
9341
|
-
select?:
|
9491
|
+
select?: EventSelect<ExtArgs> | null
|
9492
|
+
/**
|
9493
|
+
* Choose, which related nodes to fetch as well
|
9494
|
+
*/
|
9495
|
+
include?: EventInclude<ExtArgs> | null
|
9342
9496
|
/**
|
9343
9497
|
* The data used to create many Events.
|
9344
9498
|
*/
|
9345
9499
|
data: EventCreateManyInput | EventCreateManyInput[]
|
9346
9500
|
skipDuplicates?: boolean
|
9347
|
-
/**
|
9348
|
-
* Choose, which related nodes to fetch as well
|
9349
|
-
*/
|
9350
|
-
include?: EventIncludeCreateManyAndReturn<ExtArgs> | null
|
9351
9501
|
}
|
9352
9502
|
|
9353
9503
|
/**
|
@@ -9673,14 +9823,6 @@ export namespace Prisma {
|
|
9673
9823
|
_count?: boolean | EventFolderCountOutputTypeDefaultArgs<ExtArgs>
|
9674
9824
|
}, ExtArgs["result"]["eventFolder"]>
|
9675
9825
|
|
9676
|
-
export type EventFolderSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
9677
|
-
id?: boolean
|
9678
|
-
name?: boolean
|
9679
|
-
color?: boolean
|
9680
|
-
created_at?: boolean
|
9681
|
-
updated_at?: boolean
|
9682
|
-
}, ExtArgs["result"]["eventFolder"]>
|
9683
|
-
|
9684
9826
|
export type EventFolderSelectScalar = {
|
9685
9827
|
id?: boolean
|
9686
9828
|
name?: boolean
|
@@ -9689,11 +9831,12 @@ export namespace Prisma {
|
|
9689
9831
|
updated_at?: boolean
|
9690
9832
|
}
|
9691
9833
|
|
9834
|
+
|
9692
9835
|
export type EventFolderInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
9693
9836
|
events?: boolean | EventFolder$eventsArgs<ExtArgs>
|
9694
9837
|
_count?: boolean | EventFolderCountOutputTypeDefaultArgs<ExtArgs>
|
9695
9838
|
}
|
9696
|
-
|
9839
|
+
|
9697
9840
|
|
9698
9841
|
export type $EventFolderPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
9699
9842
|
name: "EventFolder"
|
@@ -9710,6 +9853,7 @@ export namespace Prisma {
|
|
9710
9853
|
composites: {}
|
9711
9854
|
}
|
9712
9855
|
|
9856
|
+
|
9713
9857
|
type EventFolderGetPayload<S extends boolean | null | undefined | EventFolderDefaultArgs> = $Result.GetResult<Prisma.$EventFolderPayload, S>
|
9714
9858
|
|
9715
9859
|
type EventFolderCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -9729,8 +9873,10 @@ export namespace Prisma {
|
|
9729
9873
|
* // ... provide filter here
|
9730
9874
|
* }
|
9731
9875
|
* })
|
9732
|
-
|
9733
|
-
findUnique<T extends EventFolderFindUniqueArgs
|
9876
|
+
**/
|
9877
|
+
findUnique<T extends EventFolderFindUniqueArgs<ExtArgs>>(
|
9878
|
+
args: SelectSubset<T, EventFolderFindUniqueArgs<ExtArgs>>
|
9879
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
9734
9880
|
|
9735
9881
|
/**
|
9736
9882
|
* Find one EventFolder that matches the filter or throw an error with `error.code='P2025'`
|
@@ -9743,8 +9889,10 @@ export namespace Prisma {
|
|
9743
9889
|
* // ... provide filter here
|
9744
9890
|
* }
|
9745
9891
|
* })
|
9746
|
-
|
9747
|
-
findUniqueOrThrow<T extends EventFolderFindUniqueOrThrowArgs
|
9892
|
+
**/
|
9893
|
+
findUniqueOrThrow<T extends EventFolderFindUniqueOrThrowArgs<ExtArgs>>(
|
9894
|
+
args?: SelectSubset<T, EventFolderFindUniqueOrThrowArgs<ExtArgs>>
|
9895
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
9748
9896
|
|
9749
9897
|
/**
|
9750
9898
|
* Find the first EventFolder that matches the filter.
|
@@ -9758,8 +9906,10 @@ export namespace Prisma {
|
|
9758
9906
|
* // ... provide filter here
|
9759
9907
|
* }
|
9760
9908
|
* })
|
9761
|
-
|
9762
|
-
findFirst<T extends EventFolderFindFirstArgs
|
9909
|
+
**/
|
9910
|
+
findFirst<T extends EventFolderFindFirstArgs<ExtArgs>>(
|
9911
|
+
args?: SelectSubset<T, EventFolderFindFirstArgs<ExtArgs>>
|
9912
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
9763
9913
|
|
9764
9914
|
/**
|
9765
9915
|
* Find the first EventFolder that matches the filter or
|
@@ -9774,8 +9924,10 @@ export namespace Prisma {
|
|
9774
9924
|
* // ... provide filter here
|
9775
9925
|
* }
|
9776
9926
|
* })
|
9777
|
-
|
9778
|
-
findFirstOrThrow<T extends EventFolderFindFirstOrThrowArgs
|
9927
|
+
**/
|
9928
|
+
findFirstOrThrow<T extends EventFolderFindFirstOrThrowArgs<ExtArgs>>(
|
9929
|
+
args?: SelectSubset<T, EventFolderFindFirstOrThrowArgs<ExtArgs>>
|
9930
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
9779
9931
|
|
9780
9932
|
/**
|
9781
9933
|
* Find zero or more EventFolders that matches the filter.
|
@@ -9792,8 +9944,10 @@ export namespace Prisma {
|
|
9792
9944
|
* // Only select the `id`
|
9793
9945
|
* const eventFolderWithIdOnly = await prisma.eventFolder.findMany({ select: { id: true } })
|
9794
9946
|
*
|
9795
|
-
|
9796
|
-
findMany<T extends EventFolderFindManyArgs
|
9947
|
+
**/
|
9948
|
+
findMany<T extends EventFolderFindManyArgs<ExtArgs>>(
|
9949
|
+
args?: SelectSubset<T, EventFolderFindManyArgs<ExtArgs>>
|
9950
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'findMany'>>
|
9797
9951
|
|
9798
9952
|
/**
|
9799
9953
|
* Create a EventFolder.
|
@@ -9806,8 +9960,10 @@ export namespace Prisma {
|
|
9806
9960
|
* }
|
9807
9961
|
* })
|
9808
9962
|
*
|
9809
|
-
|
9810
|
-
create<T extends EventFolderCreateArgs
|
9963
|
+
**/
|
9964
|
+
create<T extends EventFolderCreateArgs<ExtArgs>>(
|
9965
|
+
args: SelectSubset<T, EventFolderCreateArgs<ExtArgs>>
|
9966
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
9811
9967
|
|
9812
9968
|
/**
|
9813
9969
|
* Create many EventFolders.
|
@@ -9820,8 +9976,10 @@ export namespace Prisma {
|
|
9820
9976
|
* ]
|
9821
9977
|
* })
|
9822
9978
|
*
|
9823
|
-
|
9824
|
-
createMany<T extends EventFolderCreateManyArgs
|
9979
|
+
**/
|
9980
|
+
createMany<T extends EventFolderCreateManyArgs<ExtArgs>>(
|
9981
|
+
args?: SelectSubset<T, EventFolderCreateManyArgs<ExtArgs>>
|
9982
|
+
): Prisma.PrismaPromise<BatchPayload>
|
9825
9983
|
|
9826
9984
|
/**
|
9827
9985
|
* Create many EventFolders and returns the data saved in the database.
|
@@ -9844,8 +10002,10 @@ export namespace Prisma {
|
|
9844
10002
|
* Note, that providing `undefined` is treated as the value not being there.
|
9845
10003
|
* Read more here: https://pris.ly/d/null-undefined
|
9846
10004
|
*
|
9847
|
-
|
9848
|
-
createManyAndReturn<T extends EventFolderCreateManyAndReturnArgs
|
10005
|
+
**/
|
10006
|
+
createManyAndReturn<T extends EventFolderCreateManyAndReturnArgs<ExtArgs>>(
|
10007
|
+
args?: SelectSubset<T, EventFolderCreateManyAndReturnArgs<ExtArgs>>
|
10008
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
9849
10009
|
|
9850
10010
|
/**
|
9851
10011
|
* Delete a EventFolder.
|
@@ -9858,8 +10018,10 @@ export namespace Prisma {
|
|
9858
10018
|
* }
|
9859
10019
|
* })
|
9860
10020
|
*
|
9861
|
-
|
9862
|
-
delete<T extends EventFolderDeleteArgs
|
10021
|
+
**/
|
10022
|
+
delete<T extends EventFolderDeleteArgs<ExtArgs>>(
|
10023
|
+
args: SelectSubset<T, EventFolderDeleteArgs<ExtArgs>>
|
10024
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
9863
10025
|
|
9864
10026
|
/**
|
9865
10027
|
* Update one EventFolder.
|
@@ -9875,8 +10037,10 @@ export namespace Prisma {
|
|
9875
10037
|
* }
|
9876
10038
|
* })
|
9877
10039
|
*
|
9878
|
-
|
9879
|
-
update<T extends EventFolderUpdateArgs
|
10040
|
+
**/
|
10041
|
+
update<T extends EventFolderUpdateArgs<ExtArgs>>(
|
10042
|
+
args: SelectSubset<T, EventFolderUpdateArgs<ExtArgs>>
|
10043
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
9880
10044
|
|
9881
10045
|
/**
|
9882
10046
|
* Delete zero or more EventFolders.
|
@@ -9889,8 +10053,10 @@ export namespace Prisma {
|
|
9889
10053
|
* }
|
9890
10054
|
* })
|
9891
10055
|
*
|
9892
|
-
|
9893
|
-
deleteMany<T extends EventFolderDeleteManyArgs
|
10056
|
+
**/
|
10057
|
+
deleteMany<T extends EventFolderDeleteManyArgs<ExtArgs>>(
|
10058
|
+
args?: SelectSubset<T, EventFolderDeleteManyArgs<ExtArgs>>
|
10059
|
+
): Prisma.PrismaPromise<BatchPayload>
|
9894
10060
|
|
9895
10061
|
/**
|
9896
10062
|
* Update zero or more EventFolders.
|
@@ -9908,8 +10074,10 @@ export namespace Prisma {
|
|
9908
10074
|
* }
|
9909
10075
|
* })
|
9910
10076
|
*
|
9911
|
-
|
9912
|
-
updateMany<T extends EventFolderUpdateManyArgs
|
10077
|
+
**/
|
10078
|
+
updateMany<T extends EventFolderUpdateManyArgs<ExtArgs>>(
|
10079
|
+
args: SelectSubset<T, EventFolderUpdateManyArgs<ExtArgs>>
|
10080
|
+
): Prisma.PrismaPromise<BatchPayload>
|
9913
10081
|
|
9914
10082
|
/**
|
9915
10083
|
* Create or update one EventFolder.
|
@@ -9927,9 +10095,10 @@ export namespace Prisma {
|
|
9927
10095
|
* // ... the filter for the EventFolder we want to update
|
9928
10096
|
* }
|
9929
10097
|
* })
|
9930
|
-
|
9931
|
-
upsert<T extends EventFolderUpsertArgs
|
9932
|
-
|
10098
|
+
**/
|
10099
|
+
upsert<T extends EventFolderUpsertArgs<ExtArgs>>(
|
10100
|
+
args: SelectSubset<T, EventFolderUpsertArgs<ExtArgs>>
|
10101
|
+
): Prisma__EventFolderClient<$Result.GetResult<Prisma.$EventFolderPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
9933
10102
|
|
9934
10103
|
/**
|
9935
10104
|
* Count the number of EventFolders.
|
@@ -10069,33 +10238,34 @@ export namespace Prisma {
|
|
10069
10238
|
* https://github.com/prisma/prisma-client-js/issues/707
|
10070
10239
|
*/
|
10071
10240
|
export interface Prisma__EventFolderClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
10072
|
-
readonly [Symbol.toStringTag]:
|
10073
|
-
|
10241
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
10242
|
+
|
10243
|
+
events<T extends EventFolder$eventsArgs<ExtArgs> = {}>(args?: Subset<T, EventFolder$eventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
10244
|
+
|
10074
10245
|
/**
|
10075
10246
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
10076
10247
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
10077
10248
|
* @param onrejected The callback to execute when the Promise is rejected.
|
10078
10249
|
* @returns A Promise for the completion of which ever callback is executed.
|
10079
10250
|
*/
|
10080
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
10251
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
10081
10252
|
/**
|
10082
10253
|
* Attaches a callback for only the rejection of the Promise.
|
10083
10254
|
* @param onrejected The callback to execute when the Promise is rejected.
|
10084
10255
|
* @returns A Promise for the completion of the callback.
|
10085
10256
|
*/
|
10086
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
10257
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
10087
10258
|
/**
|
10088
10259
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
10089
10260
|
* resolved value cannot be modified from the callback.
|
10090
10261
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
10091
10262
|
* @returns A Promise for the completion of the callback.
|
10092
10263
|
*/
|
10093
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
10264
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
10094
10265
|
}
|
10095
10266
|
|
10096
10267
|
|
10097
10268
|
|
10098
|
-
|
10099
10269
|
/**
|
10100
10270
|
* Fields of the EventFolder model
|
10101
10271
|
*/
|
@@ -10320,7 +10490,11 @@ export namespace Prisma {
|
|
10320
10490
|
/**
|
10321
10491
|
* Select specific fields to fetch from the EventFolder
|
10322
10492
|
*/
|
10323
|
-
select?:
|
10493
|
+
select?: EventFolderSelect<ExtArgs> | null
|
10494
|
+
/**
|
10495
|
+
* Choose, which related nodes to fetch as well
|
10496
|
+
*/
|
10497
|
+
include?: EventFolderInclude<ExtArgs> | null
|
10324
10498
|
/**
|
10325
10499
|
* The data used to create many EventFolders.
|
10326
10500
|
*/
|
@@ -10632,17 +10806,6 @@ export namespace Prisma {
|
|
10632
10806
|
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
10633
10807
|
}, ExtArgs["result"]["message"]>
|
10634
10808
|
|
10635
|
-
export type MessageSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
10636
|
-
id?: boolean
|
10637
|
-
wamId?: boolean
|
10638
|
-
message?: boolean
|
10639
|
-
profilePhoneNumber?: boolean
|
10640
|
-
state?: boolean
|
10641
|
-
created_at?: boolean
|
10642
|
-
updated_at?: boolean
|
10643
|
-
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
10644
|
-
}, ExtArgs["result"]["message"]>
|
10645
|
-
|
10646
10809
|
export type MessageSelectScalar = {
|
10647
10810
|
id?: boolean
|
10648
10811
|
wamId?: boolean
|
@@ -10653,12 +10816,11 @@ export namespace Prisma {
|
|
10653
10816
|
updated_at?: boolean
|
10654
10817
|
}
|
10655
10818
|
|
10819
|
+
|
10656
10820
|
export type MessageInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
10657
10821
|
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
10658
10822
|
}
|
10659
|
-
|
10660
|
-
profile?: boolean | ProfileDefaultArgs<ExtArgs>
|
10661
|
-
}
|
10823
|
+
|
10662
10824
|
|
10663
10825
|
export type $MessagePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
10664
10826
|
name: "Message"
|
@@ -10677,6 +10839,7 @@ export namespace Prisma {
|
|
10677
10839
|
composites: {}
|
10678
10840
|
}
|
10679
10841
|
|
10842
|
+
|
10680
10843
|
type MessageGetPayload<S extends boolean | null | undefined | MessageDefaultArgs> = $Result.GetResult<Prisma.$MessagePayload, S>
|
10681
10844
|
|
10682
10845
|
type MessageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -10696,8 +10859,10 @@ export namespace Prisma {
|
|
10696
10859
|
* // ... provide filter here
|
10697
10860
|
* }
|
10698
10861
|
* })
|
10699
|
-
|
10700
|
-
findUnique<T extends MessageFindUniqueArgs
|
10862
|
+
**/
|
10863
|
+
findUnique<T extends MessageFindUniqueArgs<ExtArgs>>(
|
10864
|
+
args: SelectSubset<T, MessageFindUniqueArgs<ExtArgs>>
|
10865
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
10701
10866
|
|
10702
10867
|
/**
|
10703
10868
|
* Find one Message that matches the filter or throw an error with `error.code='P2025'`
|
@@ -10710,8 +10875,10 @@ export namespace Prisma {
|
|
10710
10875
|
* // ... provide filter here
|
10711
10876
|
* }
|
10712
10877
|
* })
|
10713
|
-
|
10714
|
-
findUniqueOrThrow<T extends MessageFindUniqueOrThrowArgs
|
10878
|
+
**/
|
10879
|
+
findUniqueOrThrow<T extends MessageFindUniqueOrThrowArgs<ExtArgs>>(
|
10880
|
+
args?: SelectSubset<T, MessageFindUniqueOrThrowArgs<ExtArgs>>
|
10881
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
10715
10882
|
|
10716
10883
|
/**
|
10717
10884
|
* Find the first Message that matches the filter.
|
@@ -10725,8 +10892,10 @@ export namespace Prisma {
|
|
10725
10892
|
* // ... provide filter here
|
10726
10893
|
* }
|
10727
10894
|
* })
|
10728
|
-
|
10729
|
-
findFirst<T extends MessageFindFirstArgs
|
10895
|
+
**/
|
10896
|
+
findFirst<T extends MessageFindFirstArgs<ExtArgs>>(
|
10897
|
+
args?: SelectSubset<T, MessageFindFirstArgs<ExtArgs>>
|
10898
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
10730
10899
|
|
10731
10900
|
/**
|
10732
10901
|
* Find the first Message that matches the filter or
|
@@ -10741,8 +10910,10 @@ export namespace Prisma {
|
|
10741
10910
|
* // ... provide filter here
|
10742
10911
|
* }
|
10743
10912
|
* })
|
10744
|
-
|
10745
|
-
findFirstOrThrow<T extends MessageFindFirstOrThrowArgs
|
10913
|
+
**/
|
10914
|
+
findFirstOrThrow<T extends MessageFindFirstOrThrowArgs<ExtArgs>>(
|
10915
|
+
args?: SelectSubset<T, MessageFindFirstOrThrowArgs<ExtArgs>>
|
10916
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
10746
10917
|
|
10747
10918
|
/**
|
10748
10919
|
* Find zero or more Messages that matches the filter.
|
@@ -10759,8 +10930,10 @@ export namespace Prisma {
|
|
10759
10930
|
* // Only select the `id`
|
10760
10931
|
* const messageWithIdOnly = await prisma.message.findMany({ select: { id: true } })
|
10761
10932
|
*
|
10762
|
-
|
10763
|
-
findMany<T extends MessageFindManyArgs
|
10933
|
+
**/
|
10934
|
+
findMany<T extends MessageFindManyArgs<ExtArgs>>(
|
10935
|
+
args?: SelectSubset<T, MessageFindManyArgs<ExtArgs>>
|
10936
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'findMany'>>
|
10764
10937
|
|
10765
10938
|
/**
|
10766
10939
|
* Create a Message.
|
@@ -10773,8 +10946,10 @@ export namespace Prisma {
|
|
10773
10946
|
* }
|
10774
10947
|
* })
|
10775
10948
|
*
|
10776
|
-
|
10777
|
-
create<T extends MessageCreateArgs
|
10949
|
+
**/
|
10950
|
+
create<T extends MessageCreateArgs<ExtArgs>>(
|
10951
|
+
args: SelectSubset<T, MessageCreateArgs<ExtArgs>>
|
10952
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
10778
10953
|
|
10779
10954
|
/**
|
10780
10955
|
* Create many Messages.
|
@@ -10787,8 +10962,10 @@ export namespace Prisma {
|
|
10787
10962
|
* ]
|
10788
10963
|
* })
|
10789
10964
|
*
|
10790
|
-
|
10791
|
-
createMany<T extends MessageCreateManyArgs
|
10965
|
+
**/
|
10966
|
+
createMany<T extends MessageCreateManyArgs<ExtArgs>>(
|
10967
|
+
args?: SelectSubset<T, MessageCreateManyArgs<ExtArgs>>
|
10968
|
+
): Prisma.PrismaPromise<BatchPayload>
|
10792
10969
|
|
10793
10970
|
/**
|
10794
10971
|
* Create many Messages and returns the data saved in the database.
|
@@ -10811,8 +10988,10 @@ export namespace Prisma {
|
|
10811
10988
|
* Note, that providing `undefined` is treated as the value not being there.
|
10812
10989
|
* Read more here: https://pris.ly/d/null-undefined
|
10813
10990
|
*
|
10814
|
-
|
10815
|
-
createManyAndReturn<T extends MessageCreateManyAndReturnArgs
|
10991
|
+
**/
|
10992
|
+
createManyAndReturn<T extends MessageCreateManyAndReturnArgs<ExtArgs>>(
|
10993
|
+
args?: SelectSubset<T, MessageCreateManyAndReturnArgs<ExtArgs>>
|
10994
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'createManyAndReturn'>>
|
10816
10995
|
|
10817
10996
|
/**
|
10818
10997
|
* Delete a Message.
|
@@ -10825,8 +11004,10 @@ export namespace Prisma {
|
|
10825
11004
|
* }
|
10826
11005
|
* })
|
10827
11006
|
*
|
10828
|
-
|
10829
|
-
delete<T extends MessageDeleteArgs
|
11007
|
+
**/
|
11008
|
+
delete<T extends MessageDeleteArgs<ExtArgs>>(
|
11009
|
+
args: SelectSubset<T, MessageDeleteArgs<ExtArgs>>
|
11010
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
10830
11011
|
|
10831
11012
|
/**
|
10832
11013
|
* Update one Message.
|
@@ -10842,8 +11023,10 @@ export namespace Prisma {
|
|
10842
11023
|
* }
|
10843
11024
|
* })
|
10844
11025
|
*
|
10845
|
-
|
10846
|
-
update<T extends MessageUpdateArgs
|
11026
|
+
**/
|
11027
|
+
update<T extends MessageUpdateArgs<ExtArgs>>(
|
11028
|
+
args: SelectSubset<T, MessageUpdateArgs<ExtArgs>>
|
11029
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
10847
11030
|
|
10848
11031
|
/**
|
10849
11032
|
* Delete zero or more Messages.
|
@@ -10856,8 +11039,10 @@ export namespace Prisma {
|
|
10856
11039
|
* }
|
10857
11040
|
* })
|
10858
11041
|
*
|
10859
|
-
|
10860
|
-
deleteMany<T extends MessageDeleteManyArgs
|
11042
|
+
**/
|
11043
|
+
deleteMany<T extends MessageDeleteManyArgs<ExtArgs>>(
|
11044
|
+
args?: SelectSubset<T, MessageDeleteManyArgs<ExtArgs>>
|
11045
|
+
): Prisma.PrismaPromise<BatchPayload>
|
10861
11046
|
|
10862
11047
|
/**
|
10863
11048
|
* Update zero or more Messages.
|
@@ -10875,8 +11060,10 @@ export namespace Prisma {
|
|
10875
11060
|
* }
|
10876
11061
|
* })
|
10877
11062
|
*
|
10878
|
-
|
10879
|
-
updateMany<T extends MessageUpdateManyArgs
|
11063
|
+
**/
|
11064
|
+
updateMany<T extends MessageUpdateManyArgs<ExtArgs>>(
|
11065
|
+
args: SelectSubset<T, MessageUpdateManyArgs<ExtArgs>>
|
11066
|
+
): Prisma.PrismaPromise<BatchPayload>
|
10880
11067
|
|
10881
11068
|
/**
|
10882
11069
|
* Create or update one Message.
|
@@ -10894,9 +11081,10 @@ export namespace Prisma {
|
|
10894
11081
|
* // ... the filter for the Message we want to update
|
10895
11082
|
* }
|
10896
11083
|
* })
|
10897
|
-
|
10898
|
-
upsert<T extends MessageUpsertArgs
|
10899
|
-
|
11084
|
+
**/
|
11085
|
+
upsert<T extends MessageUpsertArgs<ExtArgs>>(
|
11086
|
+
args: SelectSubset<T, MessageUpsertArgs<ExtArgs>>
|
11087
|
+
): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
10900
11088
|
|
10901
11089
|
/**
|
10902
11090
|
* Count the number of Messages.
|
@@ -11036,33 +11224,34 @@ export namespace Prisma {
|
|
11036
11224
|
* https://github.com/prisma/prisma-client-js/issues/707
|
11037
11225
|
*/
|
11038
11226
|
export interface Prisma__MessageClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
11039
|
-
readonly [Symbol.toStringTag]:
|
11040
|
-
|
11227
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
11228
|
+
|
11229
|
+
profile<T extends ProfileDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ProfileDefaultArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
11230
|
+
|
11041
11231
|
/**
|
11042
11232
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
11043
11233
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
11044
11234
|
* @param onrejected The callback to execute when the Promise is rejected.
|
11045
11235
|
* @returns A Promise for the completion of which ever callback is executed.
|
11046
11236
|
*/
|
11047
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
11237
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
11048
11238
|
/**
|
11049
11239
|
* Attaches a callback for only the rejection of the Promise.
|
11050
11240
|
* @param onrejected The callback to execute when the Promise is rejected.
|
11051
11241
|
* @returns A Promise for the completion of the callback.
|
11052
11242
|
*/
|
11053
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
11243
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
11054
11244
|
/**
|
11055
11245
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
11056
11246
|
* resolved value cannot be modified from the callback.
|
11057
11247
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
11058
11248
|
* @returns A Promise for the completion of the callback.
|
11059
11249
|
*/
|
11060
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
11250
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
11061
11251
|
}
|
11062
11252
|
|
11063
11253
|
|
11064
11254
|
|
11065
|
-
|
11066
11255
|
/**
|
11067
11256
|
* Fields of the Message model
|
11068
11257
|
*/
|
@@ -11289,16 +11478,16 @@ export namespace Prisma {
|
|
11289
11478
|
/**
|
11290
11479
|
* Select specific fields to fetch from the Message
|
11291
11480
|
*/
|
11292
|
-
select?:
|
11481
|
+
select?: MessageSelect<ExtArgs> | null
|
11482
|
+
/**
|
11483
|
+
* Choose, which related nodes to fetch as well
|
11484
|
+
*/
|
11485
|
+
include?: MessageInclude<ExtArgs> | null
|
11293
11486
|
/**
|
11294
11487
|
* The data used to create many Messages.
|
11295
11488
|
*/
|
11296
11489
|
data: MessageCreateManyInput | MessageCreateManyInput[]
|
11297
11490
|
skipDuplicates?: boolean
|
11298
|
-
/**
|
11299
|
-
* Choose, which related nodes to fetch as well
|
11300
|
-
*/
|
11301
|
-
include?: MessageIncludeCreateManyAndReturn<ExtArgs> | null
|
11302
11491
|
}
|
11303
11492
|
|
11304
11493
|
/**
|
@@ -11572,14 +11761,6 @@ export namespace Prisma {
|
|
11572
11761
|
updated_at?: boolean
|
11573
11762
|
}, ExtArgs["result"]["cannedResponse"]>
|
11574
11763
|
|
11575
|
-
export type CannedResponseSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
11576
|
-
id?: boolean
|
11577
|
-
name?: boolean
|
11578
|
-
content?: boolean
|
11579
|
-
created_at?: boolean
|
11580
|
-
updated_at?: boolean
|
11581
|
-
}, ExtArgs["result"]["cannedResponse"]>
|
11582
|
-
|
11583
11764
|
export type CannedResponseSelectScalar = {
|
11584
11765
|
id?: boolean
|
11585
11766
|
name?: boolean
|
@@ -11589,6 +11770,7 @@ export namespace Prisma {
|
|
11589
11770
|
}
|
11590
11771
|
|
11591
11772
|
|
11773
|
+
|
11592
11774
|
export type $CannedResponsePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
11593
11775
|
name: "CannedResponse"
|
11594
11776
|
objects: {}
|
@@ -11602,6 +11784,7 @@ export namespace Prisma {
|
|
11602
11784
|
composites: {}
|
11603
11785
|
}
|
11604
11786
|
|
11787
|
+
|
11605
11788
|
type CannedResponseGetPayload<S extends boolean | null | undefined | CannedResponseDefaultArgs> = $Result.GetResult<Prisma.$CannedResponsePayload, S>
|
11606
11789
|
|
11607
11790
|
type CannedResponseCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -11621,8 +11804,10 @@ export namespace Prisma {
|
|
11621
11804
|
* // ... provide filter here
|
11622
11805
|
* }
|
11623
11806
|
* })
|
11624
|
-
|
11625
|
-
findUnique<T extends CannedResponseFindUniqueArgs
|
11807
|
+
**/
|
11808
|
+
findUnique<T extends CannedResponseFindUniqueArgs<ExtArgs>>(
|
11809
|
+
args: SelectSubset<T, CannedResponseFindUniqueArgs<ExtArgs>>
|
11810
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
11626
11811
|
|
11627
11812
|
/**
|
11628
11813
|
* Find one CannedResponse that matches the filter or throw an error with `error.code='P2025'`
|
@@ -11635,8 +11820,10 @@ export namespace Prisma {
|
|
11635
11820
|
* // ... provide filter here
|
11636
11821
|
* }
|
11637
11822
|
* })
|
11638
|
-
|
11639
|
-
findUniqueOrThrow<T extends CannedResponseFindUniqueOrThrowArgs
|
11823
|
+
**/
|
11824
|
+
findUniqueOrThrow<T extends CannedResponseFindUniqueOrThrowArgs<ExtArgs>>(
|
11825
|
+
args?: SelectSubset<T, CannedResponseFindUniqueOrThrowArgs<ExtArgs>>
|
11826
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
11640
11827
|
|
11641
11828
|
/**
|
11642
11829
|
* Find the first CannedResponse that matches the filter.
|
@@ -11650,8 +11837,10 @@ export namespace Prisma {
|
|
11650
11837
|
* // ... provide filter here
|
11651
11838
|
* }
|
11652
11839
|
* })
|
11653
|
-
|
11654
|
-
findFirst<T extends CannedResponseFindFirstArgs
|
11840
|
+
**/
|
11841
|
+
findFirst<T extends CannedResponseFindFirstArgs<ExtArgs>>(
|
11842
|
+
args?: SelectSubset<T, CannedResponseFindFirstArgs<ExtArgs>>
|
11843
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
11655
11844
|
|
11656
11845
|
/**
|
11657
11846
|
* Find the first CannedResponse that matches the filter or
|
@@ -11666,8 +11855,10 @@ export namespace Prisma {
|
|
11666
11855
|
* // ... provide filter here
|
11667
11856
|
* }
|
11668
11857
|
* })
|
11669
|
-
|
11670
|
-
findFirstOrThrow<T extends CannedResponseFindFirstOrThrowArgs
|
11858
|
+
**/
|
11859
|
+
findFirstOrThrow<T extends CannedResponseFindFirstOrThrowArgs<ExtArgs>>(
|
11860
|
+
args?: SelectSubset<T, CannedResponseFindFirstOrThrowArgs<ExtArgs>>
|
11861
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
11671
11862
|
|
11672
11863
|
/**
|
11673
11864
|
* Find zero or more CannedResponses that matches the filter.
|
@@ -11684,8 +11875,10 @@ export namespace Prisma {
|
|
11684
11875
|
* // Only select the `id`
|
11685
11876
|
* const cannedResponseWithIdOnly = await prisma.cannedResponse.findMany({ select: { id: true } })
|
11686
11877
|
*
|
11687
|
-
|
11688
|
-
findMany<T extends CannedResponseFindManyArgs
|
11878
|
+
**/
|
11879
|
+
findMany<T extends CannedResponseFindManyArgs<ExtArgs>>(
|
11880
|
+
args?: SelectSubset<T, CannedResponseFindManyArgs<ExtArgs>>
|
11881
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'findMany'>>
|
11689
11882
|
|
11690
11883
|
/**
|
11691
11884
|
* Create a CannedResponse.
|
@@ -11698,8 +11891,10 @@ export namespace Prisma {
|
|
11698
11891
|
* }
|
11699
11892
|
* })
|
11700
11893
|
*
|
11701
|
-
|
11702
|
-
create<T extends CannedResponseCreateArgs
|
11894
|
+
**/
|
11895
|
+
create<T extends CannedResponseCreateArgs<ExtArgs>>(
|
11896
|
+
args: SelectSubset<T, CannedResponseCreateArgs<ExtArgs>>
|
11897
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
11703
11898
|
|
11704
11899
|
/**
|
11705
11900
|
* Create many CannedResponses.
|
@@ -11712,8 +11907,10 @@ export namespace Prisma {
|
|
11712
11907
|
* ]
|
11713
11908
|
* })
|
11714
11909
|
*
|
11715
|
-
|
11716
|
-
createMany<T extends CannedResponseCreateManyArgs
|
11910
|
+
**/
|
11911
|
+
createMany<T extends CannedResponseCreateManyArgs<ExtArgs>>(
|
11912
|
+
args?: SelectSubset<T, CannedResponseCreateManyArgs<ExtArgs>>
|
11913
|
+
): Prisma.PrismaPromise<BatchPayload>
|
11717
11914
|
|
11718
11915
|
/**
|
11719
11916
|
* Create many CannedResponses and returns the data saved in the database.
|
@@ -11736,8 +11933,10 @@ export namespace Prisma {
|
|
11736
11933
|
* Note, that providing `undefined` is treated as the value not being there.
|
11737
11934
|
* Read more here: https://pris.ly/d/null-undefined
|
11738
11935
|
*
|
11739
|
-
|
11740
|
-
createManyAndReturn<T extends CannedResponseCreateManyAndReturnArgs
|
11936
|
+
**/
|
11937
|
+
createManyAndReturn<T extends CannedResponseCreateManyAndReturnArgs<ExtArgs>>(
|
11938
|
+
args?: SelectSubset<T, CannedResponseCreateManyAndReturnArgs<ExtArgs>>
|
11939
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'createManyAndReturn'>>
|
11741
11940
|
|
11742
11941
|
/**
|
11743
11942
|
* Delete a CannedResponse.
|
@@ -11750,8 +11949,10 @@ export namespace Prisma {
|
|
11750
11949
|
* }
|
11751
11950
|
* })
|
11752
11951
|
*
|
11753
|
-
|
11754
|
-
delete<T extends CannedResponseDeleteArgs
|
11952
|
+
**/
|
11953
|
+
delete<T extends CannedResponseDeleteArgs<ExtArgs>>(
|
11954
|
+
args: SelectSubset<T, CannedResponseDeleteArgs<ExtArgs>>
|
11955
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
11755
11956
|
|
11756
11957
|
/**
|
11757
11958
|
* Update one CannedResponse.
|
@@ -11767,8 +11968,10 @@ export namespace Prisma {
|
|
11767
11968
|
* }
|
11768
11969
|
* })
|
11769
11970
|
*
|
11770
|
-
|
11771
|
-
update<T extends CannedResponseUpdateArgs
|
11971
|
+
**/
|
11972
|
+
update<T extends CannedResponseUpdateArgs<ExtArgs>>(
|
11973
|
+
args: SelectSubset<T, CannedResponseUpdateArgs<ExtArgs>>
|
11974
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
11772
11975
|
|
11773
11976
|
/**
|
11774
11977
|
* Delete zero or more CannedResponses.
|
@@ -11781,8 +11984,10 @@ export namespace Prisma {
|
|
11781
11984
|
* }
|
11782
11985
|
* })
|
11783
11986
|
*
|
11784
|
-
|
11785
|
-
deleteMany<T extends CannedResponseDeleteManyArgs
|
11987
|
+
**/
|
11988
|
+
deleteMany<T extends CannedResponseDeleteManyArgs<ExtArgs>>(
|
11989
|
+
args?: SelectSubset<T, CannedResponseDeleteManyArgs<ExtArgs>>
|
11990
|
+
): Prisma.PrismaPromise<BatchPayload>
|
11786
11991
|
|
11787
11992
|
/**
|
11788
11993
|
* Update zero or more CannedResponses.
|
@@ -11800,8 +12005,10 @@ export namespace Prisma {
|
|
11800
12005
|
* }
|
11801
12006
|
* })
|
11802
12007
|
*
|
11803
|
-
|
11804
|
-
updateMany<T extends CannedResponseUpdateManyArgs
|
12008
|
+
**/
|
12009
|
+
updateMany<T extends CannedResponseUpdateManyArgs<ExtArgs>>(
|
12010
|
+
args: SelectSubset<T, CannedResponseUpdateManyArgs<ExtArgs>>
|
12011
|
+
): Prisma.PrismaPromise<BatchPayload>
|
11805
12012
|
|
11806
12013
|
/**
|
11807
12014
|
* Create or update one CannedResponse.
|
@@ -11819,9 +12026,10 @@ export namespace Prisma {
|
|
11819
12026
|
* // ... the filter for the CannedResponse we want to update
|
11820
12027
|
* }
|
11821
12028
|
* })
|
11822
|
-
|
11823
|
-
upsert<T extends CannedResponseUpsertArgs
|
11824
|
-
|
12029
|
+
**/
|
12030
|
+
upsert<T extends CannedResponseUpsertArgs<ExtArgs>>(
|
12031
|
+
args: SelectSubset<T, CannedResponseUpsertArgs<ExtArgs>>
|
12032
|
+
): Prisma__CannedResponseClient<$Result.GetResult<Prisma.$CannedResponsePayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
11825
12033
|
|
11826
12034
|
/**
|
11827
12035
|
* Count the number of CannedResponses.
|
@@ -11961,32 +12169,33 @@ export namespace Prisma {
|
|
11961
12169
|
* https://github.com/prisma/prisma-client-js/issues/707
|
11962
12170
|
*/
|
11963
12171
|
export interface Prisma__CannedResponseClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
11964
|
-
readonly [Symbol.toStringTag]:
|
12172
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
12173
|
+
|
12174
|
+
|
11965
12175
|
/**
|
11966
12176
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
11967
12177
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
11968
12178
|
* @param onrejected The callback to execute when the Promise is rejected.
|
11969
12179
|
* @returns A Promise for the completion of which ever callback is executed.
|
11970
12180
|
*/
|
11971
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
12181
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
11972
12182
|
/**
|
11973
12183
|
* Attaches a callback for only the rejection of the Promise.
|
11974
12184
|
* @param onrejected The callback to execute when the Promise is rejected.
|
11975
12185
|
* @returns A Promise for the completion of the callback.
|
11976
12186
|
*/
|
11977
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
12187
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
11978
12188
|
/**
|
11979
12189
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
11980
12190
|
* resolved value cannot be modified from the callback.
|
11981
12191
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
11982
12192
|
* @returns A Promise for the completion of the callback.
|
11983
12193
|
*/
|
11984
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
12194
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
11985
12195
|
}
|
11986
12196
|
|
11987
12197
|
|
11988
12198
|
|
11989
|
-
|
11990
12199
|
/**
|
11991
12200
|
* Fields of the CannedResponse model
|
11992
12201
|
*/
|
@@ -12187,7 +12396,7 @@ export namespace Prisma {
|
|
12187
12396
|
/**
|
12188
12397
|
* Select specific fields to fetch from the CannedResponse
|
12189
12398
|
*/
|
12190
|
-
select?:
|
12399
|
+
select?: CannedResponseSelect<ExtArgs> | null
|
12191
12400
|
/**
|
12192
12401
|
* The data used to create many CannedResponses.
|
12193
12402
|
*/
|
@@ -12434,12 +12643,6 @@ export namespace Prisma {
|
|
12434
12643
|
templateCategory?: boolean
|
12435
12644
|
}, ExtArgs["result"]["enums"]>
|
12436
12645
|
|
12437
|
-
export type EnumsSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
12438
|
-
id?: boolean
|
12439
|
-
templateStatus?: boolean
|
12440
|
-
templateCategory?: boolean
|
12441
|
-
}, ExtArgs["result"]["enums"]>
|
12442
|
-
|
12443
12646
|
export type EnumsSelectScalar = {
|
12444
12647
|
id?: boolean
|
12445
12648
|
templateStatus?: boolean
|
@@ -12447,6 +12650,7 @@ export namespace Prisma {
|
|
12447
12650
|
}
|
12448
12651
|
|
12449
12652
|
|
12653
|
+
|
12450
12654
|
export type $EnumsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
12451
12655
|
name: "Enums"
|
12452
12656
|
objects: {}
|
@@ -12458,6 +12662,7 @@ export namespace Prisma {
|
|
12458
12662
|
composites: {}
|
12459
12663
|
}
|
12460
12664
|
|
12665
|
+
|
12461
12666
|
type EnumsGetPayload<S extends boolean | null | undefined | EnumsDefaultArgs> = $Result.GetResult<Prisma.$EnumsPayload, S>
|
12462
12667
|
|
12463
12668
|
type EnumsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
@@ -12477,8 +12682,10 @@ export namespace Prisma {
|
|
12477
12682
|
* // ... provide filter here
|
12478
12683
|
* }
|
12479
12684
|
* })
|
12480
|
-
|
12481
|
-
findUnique<T extends EnumsFindUniqueArgs
|
12685
|
+
**/
|
12686
|
+
findUnique<T extends EnumsFindUniqueArgs<ExtArgs>>(
|
12687
|
+
args: SelectSubset<T, EnumsFindUniqueArgs<ExtArgs>>
|
12688
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
12482
12689
|
|
12483
12690
|
/**
|
12484
12691
|
* Find one Enums that matches the filter or throw an error with `error.code='P2025'`
|
@@ -12491,8 +12698,10 @@ export namespace Prisma {
|
|
12491
12698
|
* // ... provide filter here
|
12492
12699
|
* }
|
12493
12700
|
* })
|
12494
|
-
|
12495
|
-
findUniqueOrThrow<T extends EnumsFindUniqueOrThrowArgs
|
12701
|
+
**/
|
12702
|
+
findUniqueOrThrow<T extends EnumsFindUniqueOrThrowArgs<ExtArgs>>(
|
12703
|
+
args?: SelectSubset<T, EnumsFindUniqueOrThrowArgs<ExtArgs>>
|
12704
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
12496
12705
|
|
12497
12706
|
/**
|
12498
12707
|
* Find the first Enums that matches the filter.
|
@@ -12506,8 +12715,10 @@ export namespace Prisma {
|
|
12506
12715
|
* // ... provide filter here
|
12507
12716
|
* }
|
12508
12717
|
* })
|
12509
|
-
|
12510
|
-
findFirst<T extends EnumsFindFirstArgs
|
12718
|
+
**/
|
12719
|
+
findFirst<T extends EnumsFindFirstArgs<ExtArgs>>(
|
12720
|
+
args?: SelectSubset<T, EnumsFindFirstArgs<ExtArgs>>
|
12721
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
12511
12722
|
|
12512
12723
|
/**
|
12513
12724
|
* Find the first Enums that matches the filter or
|
@@ -12522,8 +12733,10 @@ export namespace Prisma {
|
|
12522
12733
|
* // ... provide filter here
|
12523
12734
|
* }
|
12524
12735
|
* })
|
12525
|
-
|
12526
|
-
findFirstOrThrow<T extends EnumsFindFirstOrThrowArgs
|
12736
|
+
**/
|
12737
|
+
findFirstOrThrow<T extends EnumsFindFirstOrThrowArgs<ExtArgs>>(
|
12738
|
+
args?: SelectSubset<T, EnumsFindFirstOrThrowArgs<ExtArgs>>
|
12739
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
12527
12740
|
|
12528
12741
|
/**
|
12529
12742
|
* Find zero or more Enums that matches the filter.
|
@@ -12540,8 +12753,10 @@ export namespace Prisma {
|
|
12540
12753
|
* // Only select the `id`
|
12541
12754
|
* const enumsWithIdOnly = await prisma.enums.findMany({ select: { id: true } })
|
12542
12755
|
*
|
12543
|
-
|
12544
|
-
findMany<T extends EnumsFindManyArgs
|
12756
|
+
**/
|
12757
|
+
findMany<T extends EnumsFindManyArgs<ExtArgs>>(
|
12758
|
+
args?: SelectSubset<T, EnumsFindManyArgs<ExtArgs>>
|
12759
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'findMany'>>
|
12545
12760
|
|
12546
12761
|
/**
|
12547
12762
|
* Create a Enums.
|
@@ -12554,8 +12769,10 @@ export namespace Prisma {
|
|
12554
12769
|
* }
|
12555
12770
|
* })
|
12556
12771
|
*
|
12557
|
-
|
12558
|
-
create<T extends EnumsCreateArgs
|
12772
|
+
**/
|
12773
|
+
create<T extends EnumsCreateArgs<ExtArgs>>(
|
12774
|
+
args: SelectSubset<T, EnumsCreateArgs<ExtArgs>>
|
12775
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
12559
12776
|
|
12560
12777
|
/**
|
12561
12778
|
* Create many Enums.
|
@@ -12568,8 +12785,10 @@ export namespace Prisma {
|
|
12568
12785
|
* ]
|
12569
12786
|
* })
|
12570
12787
|
*
|
12571
|
-
|
12572
|
-
createMany<T extends EnumsCreateManyArgs
|
12788
|
+
**/
|
12789
|
+
createMany<T extends EnumsCreateManyArgs<ExtArgs>>(
|
12790
|
+
args?: SelectSubset<T, EnumsCreateManyArgs<ExtArgs>>
|
12791
|
+
): Prisma.PrismaPromise<BatchPayload>
|
12573
12792
|
|
12574
12793
|
/**
|
12575
12794
|
* Create many Enums and returns the data saved in the database.
|
@@ -12592,8 +12811,10 @@ export namespace Prisma {
|
|
12592
12811
|
* Note, that providing `undefined` is treated as the value not being there.
|
12593
12812
|
* Read more here: https://pris.ly/d/null-undefined
|
12594
12813
|
*
|
12595
|
-
|
12596
|
-
createManyAndReturn<T extends EnumsCreateManyAndReturnArgs
|
12814
|
+
**/
|
12815
|
+
createManyAndReturn<T extends EnumsCreateManyAndReturnArgs<ExtArgs>>(
|
12816
|
+
args?: SelectSubset<T, EnumsCreateManyAndReturnArgs<ExtArgs>>
|
12817
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
12597
12818
|
|
12598
12819
|
/**
|
12599
12820
|
* Delete a Enums.
|
@@ -12606,8 +12827,10 @@ export namespace Prisma {
|
|
12606
12827
|
* }
|
12607
12828
|
* })
|
12608
12829
|
*
|
12609
|
-
|
12610
|
-
delete<T extends EnumsDeleteArgs
|
12830
|
+
**/
|
12831
|
+
delete<T extends EnumsDeleteArgs<ExtArgs>>(
|
12832
|
+
args: SelectSubset<T, EnumsDeleteArgs<ExtArgs>>
|
12833
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
12611
12834
|
|
12612
12835
|
/**
|
12613
12836
|
* Update one Enums.
|
@@ -12623,8 +12846,10 @@ export namespace Prisma {
|
|
12623
12846
|
* }
|
12624
12847
|
* })
|
12625
12848
|
*
|
12626
|
-
|
12627
|
-
update<T extends EnumsUpdateArgs
|
12849
|
+
**/
|
12850
|
+
update<T extends EnumsUpdateArgs<ExtArgs>>(
|
12851
|
+
args: SelectSubset<T, EnumsUpdateArgs<ExtArgs>>
|
12852
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
12628
12853
|
|
12629
12854
|
/**
|
12630
12855
|
* Delete zero or more Enums.
|
@@ -12637,8 +12862,10 @@ export namespace Prisma {
|
|
12637
12862
|
* }
|
12638
12863
|
* })
|
12639
12864
|
*
|
12640
|
-
|
12641
|
-
deleteMany<T extends EnumsDeleteManyArgs
|
12865
|
+
**/
|
12866
|
+
deleteMany<T extends EnumsDeleteManyArgs<ExtArgs>>(
|
12867
|
+
args?: SelectSubset<T, EnumsDeleteManyArgs<ExtArgs>>
|
12868
|
+
): Prisma.PrismaPromise<BatchPayload>
|
12642
12869
|
|
12643
12870
|
/**
|
12644
12871
|
* Update zero or more Enums.
|
@@ -12656,8 +12883,10 @@ export namespace Prisma {
|
|
12656
12883
|
* }
|
12657
12884
|
* })
|
12658
12885
|
*
|
12659
|
-
|
12660
|
-
updateMany<T extends EnumsUpdateManyArgs
|
12886
|
+
**/
|
12887
|
+
updateMany<T extends EnumsUpdateManyArgs<ExtArgs>>(
|
12888
|
+
args: SelectSubset<T, EnumsUpdateManyArgs<ExtArgs>>
|
12889
|
+
): Prisma.PrismaPromise<BatchPayload>
|
12661
12890
|
|
12662
12891
|
/**
|
12663
12892
|
* Create or update one Enums.
|
@@ -12675,9 +12904,10 @@ export namespace Prisma {
|
|
12675
12904
|
* // ... the filter for the Enums we want to update
|
12676
12905
|
* }
|
12677
12906
|
* })
|
12678
|
-
|
12679
|
-
upsert<T extends EnumsUpsertArgs
|
12680
|
-
|
12907
|
+
**/
|
12908
|
+
upsert<T extends EnumsUpsertArgs<ExtArgs>>(
|
12909
|
+
args: SelectSubset<T, EnumsUpsertArgs<ExtArgs>>
|
12910
|
+
): Prisma__EnumsClient<$Result.GetResult<Prisma.$EnumsPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
12681
12911
|
|
12682
12912
|
/**
|
12683
12913
|
* Count the number of Enums.
|
@@ -12817,32 +13047,33 @@ export namespace Prisma {
|
|
12817
13047
|
* https://github.com/prisma/prisma-client-js/issues/707
|
12818
13048
|
*/
|
12819
13049
|
export interface Prisma__EnumsClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
12820
|
-
readonly [Symbol.toStringTag]:
|
13050
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
13051
|
+
|
13052
|
+
|
12821
13053
|
/**
|
12822
13054
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
12823
13055
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
12824
13056
|
* @param onrejected The callback to execute when the Promise is rejected.
|
12825
13057
|
* @returns A Promise for the completion of which ever callback is executed.
|
12826
13058
|
*/
|
12827
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2
|
13059
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
12828
13060
|
/**
|
12829
13061
|
* Attaches a callback for only the rejection of the Promise.
|
12830
13062
|
* @param onrejected The callback to execute when the Promise is rejected.
|
12831
13063
|
* @returns A Promise for the completion of the callback.
|
12832
13064
|
*/
|
12833
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult
|
13065
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
12834
13066
|
/**
|
12835
13067
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
12836
13068
|
* resolved value cannot be modified from the callback.
|
12837
13069
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
12838
13070
|
* @returns A Promise for the completion of the callback.
|
12839
13071
|
*/
|
12840
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T
|
13072
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
12841
13073
|
}
|
12842
13074
|
|
12843
13075
|
|
12844
13076
|
|
12845
|
-
|
12846
13077
|
/**
|
12847
13078
|
* Fields of the Enums model
|
12848
13079
|
*/
|
@@ -13041,7 +13272,7 @@ export namespace Prisma {
|
|
13041
13272
|
/**
|
13042
13273
|
* Select specific fields to fetch from the Enums
|
13043
13274
|
*/
|
13044
|
-
select?:
|
13275
|
+
select?: EnumsSelect<ExtArgs> | null
|
13045
13276
|
/**
|
13046
13277
|
* The data used to create many Enums.
|
13047
13278
|
*/
|