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