@yimingliao/cms 0.0.181 → 0.0.183
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/client/interfaces/components/resources/topic/topic-card.js +1 -1
- package/package.json +2 -2
- package/dist/types/prisma/generated/client.d.ts +0 -69
- package/dist/types/prisma/generated/client.d.ts.map +0 -1
- package/dist/types/prisma/generated/commonInputTypes.d.ts +0 -546
- package/dist/types/prisma/generated/commonInputTypes.d.ts.map +0 -1
- package/dist/types/prisma/generated/enums.d.ts +0 -24
- package/dist/types/prisma/generated/enums.d.ts.map +0 -1
- package/dist/types/prisma/generated/internal/class.d.ts +0 -219
- package/dist/types/prisma/generated/internal/class.d.ts.map +0 -1
- package/dist/types/prisma/generated/internal/prismaNamespace.d.ts +0 -1382
- package/dist/types/prisma/generated/internal/prismaNamespace.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Admin.d.ts +0 -1756
- package/dist/types/prisma/generated/models/Admin.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/AdminRefreshToken.d.ts +0 -1276
- package/dist/types/prisma/generated/models/AdminRefreshToken.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/AdminTranslation.d.ts +0 -1498
- package/dist/types/prisma/generated/models/AdminTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/File.d.ts +0 -3624
- package/dist/types/prisma/generated/models/File.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/FileTranslation.d.ts +0 -1252
- package/dist/types/prisma/generated/models/FileTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Folder.d.ts +0 -1513
- package/dist/types/prisma/generated/models/Folder.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/Post.d.ts +0 -9300
- package/dist/types/prisma/generated/models/Post.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/PostTranslation.d.ts +0 -2073
- package/dist/types/prisma/generated/models/PostTranslation.d.ts.map +0 -1
- package/dist/types/prisma/generated/models/SeoMetadata.d.ts +0 -2183
- package/dist/types/prisma/generated/models/SeoMetadata.d.ts.map +0 -1
- package/dist/types/prisma/generated/models.d.ts +0 -11
- package/dist/types/prisma/generated/models.d.ts.map +0 -1
|
@@ -67,7 +67,7 @@ function TopicCard({
|
|
|
67
67
|
},
|
|
68
68
|
cardTextContentProps: {
|
|
69
69
|
title,
|
|
70
|
-
children: /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-1", "
|
|
70
|
+
children: /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-1", "text-sm"), children: [
|
|
71
71
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
|
|
72
72
|
/* @__PURE__ */ jsx(FileSpreadsheet, { className: "size-4" }),
|
|
73
73
|
/* @__PURE__ */ jsxs("p", { className: "truncate", children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yimingliao/cms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.183",
|
|
4
4
|
"author": "Yiming Liao",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"knip": "knip --config .config/knip.config.ts",
|
|
64
64
|
"clean": "rm -rf dist",
|
|
65
65
|
"build": "rollup -c .config/rollup/config.js",
|
|
66
|
-
"build:types": "tsc -p tsconfig.build.json && tsc-alias tsconfig.build.json --outDir dist/types",
|
|
66
|
+
"build:types": "tsc -p tsconfig.build.json && tsc-alias tsconfig.build.json --outDir dist/types && rm -rf dist/types/prisma",
|
|
67
67
|
"build:release": "pnpm clean && pnpm build && pnpm build:types",
|
|
68
68
|
"prepublishOnly": "pnpm build:release"
|
|
69
69
|
},
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import * as runtime from "@prisma/client/runtime/client";
|
|
2
|
-
import * as $Class from "./internal/class";
|
|
3
|
-
import * as Prisma from "./internal/prismaNamespace";
|
|
4
|
-
export * as $Enums from './enums';
|
|
5
|
-
export * from "./enums";
|
|
6
|
-
/**
|
|
7
|
-
* ## Prisma Client
|
|
8
|
-
*
|
|
9
|
-
* Type-safe database client for TypeScript
|
|
10
|
-
* @example
|
|
11
|
-
* ```
|
|
12
|
-
* const prisma = new PrismaClient({
|
|
13
|
-
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
|
14
|
-
* })
|
|
15
|
-
* // Fetch zero or more Admins
|
|
16
|
-
* const admins = await prisma.admin.findMany()
|
|
17
|
-
* ```
|
|
18
|
-
*
|
|
19
|
-
* Read more in our [docs](https://pris.ly/d/client).
|
|
20
|
-
*/
|
|
21
|
-
export declare const PrismaClient: $Class.PrismaClientConstructor;
|
|
22
|
-
export type PrismaClient<LogOpts extends Prisma.LogLevel = never, OmitOpts extends Prisma.PrismaClientOptions["omit"] = Prisma.PrismaClientOptions["omit"], ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = $Class.PrismaClient<LogOpts, OmitOpts, ExtArgs>;
|
|
23
|
-
export { Prisma };
|
|
24
|
-
/**
|
|
25
|
-
* Model Admin
|
|
26
|
-
*
|
|
27
|
-
*/
|
|
28
|
-
export type Admin = Prisma.AdminModel;
|
|
29
|
-
/**
|
|
30
|
-
* Model AdminTranslation
|
|
31
|
-
*
|
|
32
|
-
*/
|
|
33
|
-
export type AdminTranslation = Prisma.AdminTranslationModel;
|
|
34
|
-
/**
|
|
35
|
-
* Model AdminRefreshToken
|
|
36
|
-
*
|
|
37
|
-
*/
|
|
38
|
-
export type AdminRefreshToken = Prisma.AdminRefreshTokenModel;
|
|
39
|
-
/**
|
|
40
|
-
* Model File
|
|
41
|
-
*
|
|
42
|
-
*/
|
|
43
|
-
export type File = Prisma.FileModel;
|
|
44
|
-
/**
|
|
45
|
-
* Model FileTranslation
|
|
46
|
-
*
|
|
47
|
-
*/
|
|
48
|
-
export type FileTranslation = Prisma.FileTranslationModel;
|
|
49
|
-
/**
|
|
50
|
-
* Model Folder
|
|
51
|
-
*
|
|
52
|
-
*/
|
|
53
|
-
export type Folder = Prisma.FolderModel;
|
|
54
|
-
/**
|
|
55
|
-
* Model SeoMetadata
|
|
56
|
-
*
|
|
57
|
-
*/
|
|
58
|
-
export type SeoMetadata = Prisma.SeoMetadataModel;
|
|
59
|
-
/**
|
|
60
|
-
* Model Post
|
|
61
|
-
*
|
|
62
|
-
*/
|
|
63
|
-
export type Post = Prisma.PostModel;
|
|
64
|
-
/**
|
|
65
|
-
* Model PostTranslation
|
|
66
|
-
*
|
|
67
|
-
*/
|
|
68
|
-
export type PostTranslation = Prisma.PostTranslationModel;
|
|
69
|
-
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../prisma/generated/client.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAA;AAExD,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAA;AAC1C,OAAO,KAAK,MAAM,MAAM,4BAA4B,CAAA;AAEpD,OAAO,KAAK,MAAM,MAAM,SAAS,CAAA;AACjC,cAAc,SAAS,CAAA;AACvB;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,YAAY,gCAAgC,CAAA;AACzD,MAAM,MAAM,YAAY,CAAC,OAAO,SAAS,MAAM,CAAC,QAAQ,GAAG,KAAK,EAAE,QAAQ,SAAS,MAAM,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,mBAAmB,CAAC,MAAM,CAAC,EAAE,OAAO,SAAS,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,YAAY,GAAG,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,WAAW,IAAI,MAAM,CAAC,YAAY,CAAC,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAA;AAC3S,OAAO,EAAE,MAAM,EAAE,CAAA;AAEjB;;;GAGG;AACH,MAAM,MAAM,KAAK,GAAG,MAAM,CAAC,UAAU,CAAA;AACrC;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,qBAAqB,CAAA;AAC3D;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,sBAAsB,CAAA;AAC7D;;;GAGG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC,SAAS,CAAA;AACnC;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,oBAAoB,CAAA;AACzD;;;GAGG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAC,WAAW,CAAA;AACvC;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,gBAAgB,CAAA;AACjD;;;GAGG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC,SAAS,CAAA;AACnC;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,oBAAoB,CAAA"}
|
|
@@ -1,546 +0,0 @@
|
|
|
1
|
-
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
-
import * as $Enums from "./enums";
|
|
3
|
-
import type * as Prisma from "./internal/prismaNamespace";
|
|
4
|
-
export type StringFilter<$PrismaModel = never> = {
|
|
5
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
6
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
7
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
8
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
9
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
10
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
11
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
12
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
13
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
14
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
15
|
-
mode?: Prisma.QueryMode;
|
|
16
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
17
|
-
};
|
|
18
|
-
export type EnumAdminRoleFilter<$PrismaModel = never> = {
|
|
19
|
-
equals?: $Enums.AdminRole | Prisma.EnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
20
|
-
in?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
21
|
-
notIn?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
22
|
-
not?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel> | $Enums.AdminRole;
|
|
23
|
-
};
|
|
24
|
-
export type StringNullableFilter<$PrismaModel = never> = {
|
|
25
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
26
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
27
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
28
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
29
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
30
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
31
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
32
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
33
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
34
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
35
|
-
mode?: Prisma.QueryMode;
|
|
36
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
37
|
-
};
|
|
38
|
-
export type DateTimeFilter<$PrismaModel = never> = {
|
|
39
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
40
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
41
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
42
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
43
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
44
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
45
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
46
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
47
|
-
};
|
|
48
|
-
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
49
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
50
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
51
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
52
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
53
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
54
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
55
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
56
|
-
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
57
|
-
};
|
|
58
|
-
export type SortOrderInput = {
|
|
59
|
-
sort: Prisma.SortOrder;
|
|
60
|
-
nulls?: Prisma.NullsOrder;
|
|
61
|
-
};
|
|
62
|
-
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
63
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
64
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
65
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
66
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
67
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
68
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
69
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
70
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
71
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
72
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
73
|
-
mode?: Prisma.QueryMode;
|
|
74
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
75
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
76
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
77
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
78
|
-
};
|
|
79
|
-
export type EnumAdminRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
80
|
-
equals?: $Enums.AdminRole | Prisma.EnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
81
|
-
in?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
82
|
-
notIn?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
83
|
-
not?: Prisma.NestedEnumAdminRoleWithAggregatesFilter<$PrismaModel> | $Enums.AdminRole;
|
|
84
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
85
|
-
_min?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel>;
|
|
86
|
-
_max?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel>;
|
|
87
|
-
};
|
|
88
|
-
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
89
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
90
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
91
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
92
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
93
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
94
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
95
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
96
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
97
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
98
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
99
|
-
mode?: Prisma.QueryMode;
|
|
100
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
101
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
102
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
103
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
104
|
-
};
|
|
105
|
-
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
106
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
107
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
108
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
109
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
110
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
111
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
112
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
113
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
114
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
115
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
116
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
117
|
-
};
|
|
118
|
-
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
119
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
120
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
121
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
122
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
123
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
124
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
125
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
126
|
-
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
127
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
128
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
129
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
130
|
-
};
|
|
131
|
-
export type JsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
132
|
-
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
133
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
134
|
-
path?: string[];
|
|
135
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
136
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
137
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
138
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
139
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
140
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
141
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
142
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
143
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
144
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
145
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
146
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
147
|
-
};
|
|
148
|
-
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
149
|
-
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
150
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
151
|
-
path?: string[];
|
|
152
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
153
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
154
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
155
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
156
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
157
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
158
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
159
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
160
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
161
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
162
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
163
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
164
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
165
|
-
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
166
|
-
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
167
|
-
};
|
|
168
|
-
export type IntFilter<$PrismaModel = never> = {
|
|
169
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
170
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
171
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
172
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
173
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
174
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
175
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
176
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
177
|
-
};
|
|
178
|
-
export type EnumFileTypeFilter<$PrismaModel = never> = {
|
|
179
|
-
equals?: $Enums.FileType | Prisma.EnumFileTypeFieldRefInput<$PrismaModel>;
|
|
180
|
-
in?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
181
|
-
notIn?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
182
|
-
not?: Prisma.NestedEnumFileTypeFilter<$PrismaModel> | $Enums.FileType;
|
|
183
|
-
};
|
|
184
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
|
185
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
186
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
187
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
188
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
189
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
190
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
191
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
192
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
193
|
-
};
|
|
194
|
-
export type FloatNullableFilter<$PrismaModel = never> = {
|
|
195
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
196
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
197
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
198
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
199
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
200
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
201
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
202
|
-
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
203
|
-
};
|
|
204
|
-
export type BoolFilter<$PrismaModel = never> = {
|
|
205
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
206
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
207
|
-
};
|
|
208
|
-
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
209
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
210
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
211
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
212
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
213
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
214
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
215
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
216
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
217
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
218
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
219
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
220
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
221
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
222
|
-
};
|
|
223
|
-
export type EnumFileTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
224
|
-
equals?: $Enums.FileType | Prisma.EnumFileTypeFieldRefInput<$PrismaModel>;
|
|
225
|
-
in?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
226
|
-
notIn?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
227
|
-
not?: Prisma.NestedEnumFileTypeWithAggregatesFilter<$PrismaModel> | $Enums.FileType;
|
|
228
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
229
|
-
_min?: Prisma.NestedEnumFileTypeFilter<$PrismaModel>;
|
|
230
|
-
_max?: Prisma.NestedEnumFileTypeFilter<$PrismaModel>;
|
|
231
|
-
};
|
|
232
|
-
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
233
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
234
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
235
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
236
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
237
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
238
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
239
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
240
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
241
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
242
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
243
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
244
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
245
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
246
|
-
};
|
|
247
|
-
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
248
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
249
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
250
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
251
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
252
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
253
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
254
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
255
|
-
not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
256
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
257
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
258
|
-
_sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
259
|
-
_min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
260
|
-
_max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
261
|
-
};
|
|
262
|
-
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
263
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
264
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
265
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
266
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
267
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
268
|
-
};
|
|
269
|
-
export type EnumPostTypeFilter<$PrismaModel = never> = {
|
|
270
|
-
equals?: $Enums.PostType | Prisma.EnumPostTypeFieldRefInput<$PrismaModel>;
|
|
271
|
-
in?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
272
|
-
notIn?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
273
|
-
not?: Prisma.NestedEnumPostTypeFilter<$PrismaModel> | $Enums.PostType;
|
|
274
|
-
};
|
|
275
|
-
export type EnumPostTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
276
|
-
equals?: $Enums.PostType | Prisma.EnumPostTypeFieldRefInput<$PrismaModel>;
|
|
277
|
-
in?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
278
|
-
notIn?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
279
|
-
not?: Prisma.NestedEnumPostTypeWithAggregatesFilter<$PrismaModel> | $Enums.PostType;
|
|
280
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
281
|
-
_min?: Prisma.NestedEnumPostTypeFilter<$PrismaModel>;
|
|
282
|
-
_max?: Prisma.NestedEnumPostTypeFilter<$PrismaModel>;
|
|
283
|
-
};
|
|
284
|
-
export type NestedStringFilter<$PrismaModel = never> = {
|
|
285
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
286
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
287
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
288
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
289
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
290
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
291
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
292
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
293
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
294
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
295
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
296
|
-
};
|
|
297
|
-
export type NestedEnumAdminRoleFilter<$PrismaModel = never> = {
|
|
298
|
-
equals?: $Enums.AdminRole | Prisma.EnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
299
|
-
in?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
300
|
-
notIn?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
301
|
-
not?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel> | $Enums.AdminRole;
|
|
302
|
-
};
|
|
303
|
-
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
304
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
305
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
306
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
307
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
308
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
309
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
310
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
311
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
312
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
313
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
314
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
315
|
-
};
|
|
316
|
-
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
317
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
318
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
319
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
320
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
321
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
322
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
323
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
324
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
325
|
-
};
|
|
326
|
-
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
327
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
328
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
329
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
330
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
331
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
332
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
333
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
334
|
-
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
335
|
-
};
|
|
336
|
-
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
337
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
338
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
339
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
340
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
341
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
342
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
343
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
344
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
345
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
346
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
347
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
348
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
349
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
350
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
351
|
-
};
|
|
352
|
-
export type NestedIntFilter<$PrismaModel = never> = {
|
|
353
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
354
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
355
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
356
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
357
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
358
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
359
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
360
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
361
|
-
};
|
|
362
|
-
export type NestedEnumAdminRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
363
|
-
equals?: $Enums.AdminRole | Prisma.EnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
364
|
-
in?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
365
|
-
notIn?: $Enums.AdminRole[] | Prisma.ListEnumAdminRoleFieldRefInput<$PrismaModel>;
|
|
366
|
-
not?: Prisma.NestedEnumAdminRoleWithAggregatesFilter<$PrismaModel> | $Enums.AdminRole;
|
|
367
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
368
|
-
_min?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel>;
|
|
369
|
-
_max?: Prisma.NestedEnumAdminRoleFilter<$PrismaModel>;
|
|
370
|
-
};
|
|
371
|
-
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
372
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
373
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
374
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
375
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
376
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
377
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
378
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
379
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
380
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
381
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
382
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
383
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
384
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
385
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
386
|
-
};
|
|
387
|
-
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
388
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
389
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
390
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
391
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
392
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
393
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
394
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
395
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
396
|
-
};
|
|
397
|
-
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
398
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
399
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
400
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
401
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
402
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
403
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
404
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
405
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
406
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
407
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
408
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
409
|
-
};
|
|
410
|
-
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
411
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
412
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
413
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
414
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
415
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
416
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
417
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
418
|
-
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
419
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
420
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
421
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
422
|
-
};
|
|
423
|
-
export type NestedJsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
424
|
-
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
425
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
426
|
-
path?: string[];
|
|
427
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
428
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
429
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
430
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
431
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
432
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
433
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
434
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
435
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
436
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
437
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
438
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
439
|
-
};
|
|
440
|
-
export type NestedEnumFileTypeFilter<$PrismaModel = never> = {
|
|
441
|
-
equals?: $Enums.FileType | Prisma.EnumFileTypeFieldRefInput<$PrismaModel>;
|
|
442
|
-
in?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
443
|
-
notIn?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
444
|
-
not?: Prisma.NestedEnumFileTypeFilter<$PrismaModel> | $Enums.FileType;
|
|
445
|
-
};
|
|
446
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
447
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
448
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
449
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
450
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
451
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
452
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
453
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
454
|
-
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
455
|
-
};
|
|
456
|
-
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
457
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
458
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
459
|
-
};
|
|
460
|
-
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
461
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
462
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
463
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
464
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
465
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
466
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
467
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
468
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
469
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
470
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
471
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
472
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
473
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
474
|
-
};
|
|
475
|
-
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
476
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
477
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
478
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
479
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
480
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
481
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
482
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
483
|
-
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
484
|
-
};
|
|
485
|
-
export type NestedEnumFileTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
486
|
-
equals?: $Enums.FileType | Prisma.EnumFileTypeFieldRefInput<$PrismaModel>;
|
|
487
|
-
in?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
488
|
-
notIn?: $Enums.FileType[] | Prisma.ListEnumFileTypeFieldRefInput<$PrismaModel>;
|
|
489
|
-
not?: Prisma.NestedEnumFileTypeWithAggregatesFilter<$PrismaModel> | $Enums.FileType;
|
|
490
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
491
|
-
_min?: Prisma.NestedEnumFileTypeFilter<$PrismaModel>;
|
|
492
|
-
_max?: Prisma.NestedEnumFileTypeFilter<$PrismaModel>;
|
|
493
|
-
};
|
|
494
|
-
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
495
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
496
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
497
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
498
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
499
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
500
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
501
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
502
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
503
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
504
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
505
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
506
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
507
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
508
|
-
};
|
|
509
|
-
export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
510
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
511
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
512
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
513
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
514
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
515
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
516
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
517
|
-
not?: Prisma.NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
518
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
519
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
520
|
-
_sum?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
521
|
-
_min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
522
|
-
_max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
523
|
-
};
|
|
524
|
-
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
525
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
526
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
527
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
528
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
529
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
530
|
-
};
|
|
531
|
-
export type NestedEnumPostTypeFilter<$PrismaModel = never> = {
|
|
532
|
-
equals?: $Enums.PostType | Prisma.EnumPostTypeFieldRefInput<$PrismaModel>;
|
|
533
|
-
in?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
534
|
-
notIn?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
535
|
-
not?: Prisma.NestedEnumPostTypeFilter<$PrismaModel> | $Enums.PostType;
|
|
536
|
-
};
|
|
537
|
-
export type NestedEnumPostTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
538
|
-
equals?: $Enums.PostType | Prisma.EnumPostTypeFieldRefInput<$PrismaModel>;
|
|
539
|
-
in?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
540
|
-
notIn?: $Enums.PostType[] | Prisma.ListEnumPostTypeFieldRefInput<$PrismaModel>;
|
|
541
|
-
not?: Prisma.NestedEnumPostTypeWithAggregatesFilter<$PrismaModel> | $Enums.PostType;
|
|
542
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
543
|
-
_min?: Prisma.NestedEnumPostTypeFilter<$PrismaModel>;
|
|
544
|
-
_max?: Prisma.NestedEnumPostTypeFilter<$PrismaModel>;
|
|
545
|
-
};
|
|
546
|
-
//# sourceMappingURL=commonInputTypes.d.ts.map
|