iranti 0.3.40 → 0.4.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/scripts/iranti-cli.js +100 -4
- package/dist/scripts/iranti-mcp.js +9 -5
- package/dist/scripts/setup.js +2 -1
- package/dist/src/api/middleware/auth.d.ts +2 -0
- package/dist/src/api/middleware/auth.d.ts.map +1 -1
- package/dist/src/api/middleware/auth.js +2 -0
- package/dist/src/api/middleware/auth.js.map +1 -1
- package/dist/src/api/routes/batch.js +2 -1
- package/dist/src/api/routes/batch.js.map +1 -1
- package/dist/src/api/routes/consumerMcp.d.ts +25 -0
- package/dist/src/api/routes/consumerMcp.d.ts.map +1 -0
- package/dist/src/api/routes/consumerMcp.js +197 -0
- package/dist/src/api/routes/consumerMcp.js.map +1 -0
- package/dist/src/api/routes/feedback.d.ts +13 -0
- package/dist/src/api/routes/feedback.d.ts.map +1 -0
- package/dist/src/api/routes/feedback.js +111 -0
- package/dist/src/api/routes/feedback.js.map +1 -0
- package/dist/src/api/routes/knowledge.d.ts.map +1 -1
- package/dist/src/api/routes/knowledge.js +9 -5
- package/dist/src/api/routes/knowledge.js.map +1 -1
- package/dist/src/api/routes/memory.d.ts.map +1 -1
- package/dist/src/api/routes/memory.js +2 -1
- package/dist/src/api/routes/memory.js.map +1 -1
- package/dist/src/api/routes/tokens.d.ts +18 -0
- package/dist/src/api/routes/tokens.d.ts.map +1 -0
- package/dist/src/api/routes/tokens.js +89 -0
- package/dist/src/api/routes/tokens.js.map +1 -0
- package/dist/src/api/server.js +24 -1
- package/dist/src/api/server.js.map +1 -1
- package/dist/src/attendant/AttendantInstance.d.ts +19 -0
- package/dist/src/attendant/AttendantInstance.d.ts.map +1 -1
- package/dist/src/attendant/AttendantInstance.js +243 -4
- package/dist/src/attendant/AttendantInstance.js.map +1 -1
- package/dist/src/generated/prisma/browser.d.ts +15 -0
- package/dist/src/generated/prisma/browser.d.ts.map +1 -1
- package/dist/src/generated/prisma/client.d.ts +17 -2
- package/dist/src/generated/prisma/client.d.ts.map +1 -1
- package/dist/src/generated/prisma/client.js +2 -2
- package/dist/src/generated/prisma/commonInputTypes.d.ts +363 -243
- package/dist/src/generated/prisma/commonInputTypes.d.ts.map +1 -1
- package/dist/src/generated/prisma/enums.d.ts +24 -0
- package/dist/src/generated/prisma/enums.d.ts.map +1 -1
- package/dist/src/generated/prisma/enums.js +22 -1
- package/dist/src/generated/prisma/enums.js.map +1 -1
- package/dist/src/generated/prisma/internal/class.d.ts +40 -7
- package/dist/src/generated/prisma/internal/class.d.ts.map +1 -1
- package/dist/src/generated/prisma/internal/class.js +4 -4
- package/dist/src/generated/prisma/internal/class.js.map +1 -1
- package/dist/src/generated/prisma/internal/prismaNamespace.d.ts +304 -14
- package/dist/src/generated/prisma/internal/prismaNamespace.d.ts.map +1 -1
- package/dist/src/generated/prisma/internal/prismaNamespace.js +45 -7
- package/dist/src/generated/prisma/internal/prismaNamespace.js.map +1 -1
- package/dist/src/generated/prisma/internal/prismaNamespaceBrowser.d.ts +46 -5
- package/dist/src/generated/prisma/internal/prismaNamespaceBrowser.d.ts.map +1 -1
- package/dist/src/generated/prisma/internal/prismaNamespaceBrowser.js +45 -7
- package/dist/src/generated/prisma/internal/prismaNamespaceBrowser.js.map +1 -1
- package/dist/src/generated/prisma/models/Archive.d.ts +0 -10
- package/dist/src/generated/prisma/models/Archive.d.ts.map +1 -1
- package/dist/src/generated/prisma/models/Feedback.d.ts +1328 -0
- package/dist/src/generated/prisma/models/Feedback.d.ts.map +1 -0
- package/dist/src/generated/prisma/models/Feedback.js +3 -0
- package/dist/src/generated/prisma/models/Feedback.js.map +1 -0
- package/dist/src/generated/prisma/models/KnowledgeEntry.d.ts +349 -17
- package/dist/src/generated/prisma/models/KnowledgeEntry.d.ts.map +1 -1
- package/dist/src/generated/prisma/models/Token.d.ts +1329 -0
- package/dist/src/generated/prisma/models/Token.d.ts.map +1 -0
- package/dist/src/generated/prisma/models/Token.js +3 -0
- package/dist/src/generated/prisma/models/Token.js.map +1 -0
- package/dist/src/generated/prisma/models/User.d.ts +1545 -0
- package/dist/src/generated/prisma/models/User.d.ts.map +1 -0
- package/dist/src/generated/prisma/models/User.js +3 -0
- package/dist/src/generated/prisma/models/User.js.map +1 -0
- package/dist/src/generated/prisma/models.d.ts +3 -0
- package/dist/src/generated/prisma/models.d.ts.map +1 -1
- package/dist/src/lib/cliHelpCatalog.d.ts.map +1 -1
- package/dist/src/lib/cliHelpCatalog.js +6 -0
- package/dist/src/lib/cliHelpCatalog.js.map +1 -1
- package/dist/src/lib/cliHelpRenderer.d.ts +1 -0
- package/dist/src/lib/cliHelpRenderer.d.ts.map +1 -1
- package/dist/src/lib/cliHelpRenderer.js +4 -0
- package/dist/src/lib/cliHelpRenderer.js.map +1 -1
- package/dist/src/lib/feedbackCollector.d.ts.map +1 -1
- package/dist/src/lib/feedbackCollector.js +48 -1
- package/dist/src/lib/feedbackCollector.js.map +1 -1
- package/dist/src/librarian/source-reliability.d.ts.map +1 -1
- package/dist/src/librarian/source-reliability.js +4 -2
- package/dist/src/librarian/source-reliability.js.map +1 -1
- package/dist/src/library/agent-registry.d.ts.map +1 -1
- package/dist/src/library/agent-registry.js +12 -6
- package/dist/src/library/agent-registry.js.map +1 -1
- package/dist/src/library/queries.d.ts.map +1 -1
- package/dist/src/library/queries.js +4 -2
- package/dist/src/library/queries.js.map +1 -1
- package/dist/src/sdk/index.d.ts +1 -0
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/index.js +1 -1
- package/dist/src/sdk/index.js.map +1 -1
- package/dist/src/security/apiKeys.d.ts +2 -0
- package/dist/src/security/apiKeys.d.ts.map +1 -1
- package/dist/src/security/apiKeys.js +8 -4
- package/dist/src/security/apiKeys.js.map +1 -1
- package/dist/src/security/consumerTokens.d.ts +52 -0
- package/dist/src/security/consumerTokens.d.ts.map +1 -0
- package/dist/src/security/consumerTokens.js +98 -0
- package/dist/src/security/consumerTokens.js.map +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260414191958_add_multi_tenant_identity/migration.sql +106 -0
- package/prisma/migrations/20260415030000_add_feedback_table/migration.sql +35 -0
- package/prisma/schema.prisma +84 -2
|
@@ -11,10 +11,10 @@ export type IntFilter<$PrismaModel = never> = {
|
|
|
11
11
|
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
12
12
|
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
13
13
|
};
|
|
14
|
-
export type
|
|
15
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel
|
|
16
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel
|
|
17
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel
|
|
14
|
+
export type StringNullableFilter<$PrismaModel = never> = {
|
|
15
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
16
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
17
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
18
18
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
19
19
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
20
20
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
@@ -23,24 +23,7 @@ export type StringFilter<$PrismaModel = never> = {
|
|
|
23
23
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
24
24
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
25
25
|
mode?: Prisma.QueryMode;
|
|
26
|
-
not?: Prisma.
|
|
27
|
-
};
|
|
28
|
-
export type JsonFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonFilterBase<$PrismaModel>>, 'path'>>, Required<JsonFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
29
|
-
export type JsonFilterBase<$PrismaModel = never> = {
|
|
30
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
31
|
-
path?: string[];
|
|
32
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
33
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
34
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
35
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
36
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
37
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
38
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
39
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
40
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
41
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
42
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
43
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
26
|
+
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
44
27
|
};
|
|
45
28
|
export type DateTimeFilter<$PrismaModel = never> = {
|
|
46
29
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
@@ -52,29 +35,15 @@ export type DateTimeFilter<$PrismaModel = never> = {
|
|
|
52
35
|
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
53
36
|
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
54
37
|
};
|
|
55
|
-
export type
|
|
56
|
-
equals?:
|
|
57
|
-
in?:
|
|
58
|
-
notIn?:
|
|
59
|
-
lt?:
|
|
60
|
-
lte?:
|
|
61
|
-
gt?:
|
|
62
|
-
gte?:
|
|
63
|
-
not?: Prisma.
|
|
64
|
-
};
|
|
65
|
-
export type FloatFilter<$PrismaModel = never> = {
|
|
66
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
67
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
68
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
69
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
70
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
71
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
72
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
73
|
-
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
74
|
-
};
|
|
75
|
-
export type BoolFilter<$PrismaModel = never> = {
|
|
76
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
77
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
38
|
+
export type IntNullableFilter<$PrismaModel = never> = {
|
|
39
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
40
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
41
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
42
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
43
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
44
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
45
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
46
|
+
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
78
47
|
};
|
|
79
48
|
export type SortOrderInput = {
|
|
80
49
|
sort: Prisma.SortOrder;
|
|
@@ -95,6 +64,87 @@ export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
95
64
|
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
96
65
|
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
97
66
|
};
|
|
67
|
+
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
68
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
69
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
70
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
71
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
72
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
73
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
74
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
75
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
76
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
77
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
78
|
+
mode?: Prisma.QueryMode;
|
|
79
|
+
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
80
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
81
|
+
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
82
|
+
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
83
|
+
};
|
|
84
|
+
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
85
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
86
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
87
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
88
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
89
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
90
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
91
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
92
|
+
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
93
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
94
|
+
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
95
|
+
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
96
|
+
};
|
|
97
|
+
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
98
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
99
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
100
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
101
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
102
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
103
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
104
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
105
|
+
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
106
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
107
|
+
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
108
|
+
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
109
|
+
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
110
|
+
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
111
|
+
};
|
|
112
|
+
export type StringFilter<$PrismaModel = never> = {
|
|
113
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
114
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
115
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
116
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
117
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
118
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
119
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
120
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
121
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
122
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
123
|
+
mode?: Prisma.QueryMode;
|
|
124
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
125
|
+
};
|
|
126
|
+
export type EnumTokenScopeFilter<$PrismaModel = never> = {
|
|
127
|
+
equals?: $Enums.TokenScope | Prisma.EnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
128
|
+
in?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
129
|
+
notIn?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
130
|
+
not?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel> | $Enums.TokenScope;
|
|
131
|
+
};
|
|
132
|
+
export type EnumSurfaceFilter<$PrismaModel = never> = {
|
|
133
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel>;
|
|
134
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
135
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
136
|
+
not?: Prisma.NestedEnumSurfaceFilter<$PrismaModel> | $Enums.Surface;
|
|
137
|
+
};
|
|
138
|
+
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
139
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
140
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
141
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
142
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
143
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
144
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
145
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
146
|
+
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
147
|
+
};
|
|
98
148
|
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
99
149
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
100
150
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
@@ -112,6 +162,74 @@ export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
112
162
|
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
113
163
|
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
114
164
|
};
|
|
165
|
+
export type EnumTokenScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
166
|
+
equals?: $Enums.TokenScope | Prisma.EnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
167
|
+
in?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
168
|
+
notIn?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
169
|
+
not?: Prisma.NestedEnumTokenScopeWithAggregatesFilter<$PrismaModel> | $Enums.TokenScope;
|
|
170
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
171
|
+
_min?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel>;
|
|
172
|
+
_max?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel>;
|
|
173
|
+
};
|
|
174
|
+
export type EnumSurfaceWithAggregatesFilter<$PrismaModel = never> = {
|
|
175
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel>;
|
|
176
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
177
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
178
|
+
not?: Prisma.NestedEnumSurfaceWithAggregatesFilter<$PrismaModel> | $Enums.Surface;
|
|
179
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
180
|
+
_min?: Prisma.NestedEnumSurfaceFilter<$PrismaModel>;
|
|
181
|
+
_max?: Prisma.NestedEnumSurfaceFilter<$PrismaModel>;
|
|
182
|
+
};
|
|
183
|
+
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
184
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
185
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
186
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
187
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
188
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
189
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
190
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
191
|
+
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
192
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
193
|
+
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
194
|
+
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
195
|
+
};
|
|
196
|
+
export type JsonFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonFilterBase<$PrismaModel>>, 'path'>>, Required<JsonFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
197
|
+
export type JsonFilterBase<$PrismaModel = never> = {
|
|
198
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
199
|
+
path?: string[];
|
|
200
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
201
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
202
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
203
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
204
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
205
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
206
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
207
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
208
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
209
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
210
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
211
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
212
|
+
};
|
|
213
|
+
export type FloatFilter<$PrismaModel = never> = {
|
|
214
|
+
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
215
|
+
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
216
|
+
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
217
|
+
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
218
|
+
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
219
|
+
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
220
|
+
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
221
|
+
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
222
|
+
};
|
|
223
|
+
export type BoolFilter<$PrismaModel = never> = {
|
|
224
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
225
|
+
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
226
|
+
};
|
|
227
|
+
export type EnumSurfaceNullableFilter<$PrismaModel = never> = {
|
|
228
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
229
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
230
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
231
|
+
not?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel> | $Enums.Surface | null;
|
|
232
|
+
};
|
|
115
233
|
export type JsonWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
116
234
|
export type JsonWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
117
235
|
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
@@ -132,32 +250,6 @@ export type JsonWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
|
132
250
|
_min?: Prisma.NestedJsonFilter<$PrismaModel>;
|
|
133
251
|
_max?: Prisma.NestedJsonFilter<$PrismaModel>;
|
|
134
252
|
};
|
|
135
|
-
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
136
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
137
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
138
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>;
|
|
139
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
140
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
141
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
142
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
143
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
144
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
145
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
146
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
147
|
-
};
|
|
148
|
-
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
149
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
150
|
-
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
151
|
-
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
152
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
153
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
154
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
155
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
156
|
-
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
157
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
158
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
159
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
160
|
-
};
|
|
161
253
|
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
162
254
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
163
255
|
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
@@ -180,6 +272,15 @@ export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
180
272
|
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
181
273
|
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
182
274
|
};
|
|
275
|
+
export type EnumSurfaceNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
276
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
277
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
278
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
279
|
+
not?: Prisma.NestedEnumSurfaceNullableWithAggregatesFilter<$PrismaModel> | $Enums.Surface | null;
|
|
280
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
281
|
+
_min?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel>;
|
|
282
|
+
_max?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel>;
|
|
283
|
+
};
|
|
183
284
|
export type EnumArchivedReasonFilter<$PrismaModel = never> = {
|
|
184
285
|
equals?: $Enums.ArchivedReason | Prisma.EnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
185
286
|
in?: $Enums.ArchivedReason[] | Prisma.ListEnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
@@ -198,30 +299,6 @@ export type EnumResolutionOutcomeFilter<$PrismaModel = never> = {
|
|
|
198
299
|
notIn?: $Enums.ResolutionOutcome[] | Prisma.ListEnumResolutionOutcomeFieldRefInput<$PrismaModel>;
|
|
199
300
|
not?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel> | $Enums.ResolutionOutcome;
|
|
200
301
|
};
|
|
201
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
|
202
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
203
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
204
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
205
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
206
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
207
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
208
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
209
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
210
|
-
};
|
|
211
|
-
export type StringNullableFilter<$PrismaModel = never> = {
|
|
212
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
213
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
214
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
215
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
216
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
217
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
218
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
219
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
220
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
221
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
222
|
-
mode?: Prisma.QueryMode;
|
|
223
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
224
|
-
};
|
|
225
302
|
export type EnumArchivedReasonWithAggregatesFilter<$PrismaModel = never> = {
|
|
226
303
|
equals?: $Enums.ArchivedReason | Prisma.EnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
227
304
|
in?: $Enums.ArchivedReason[] | Prisma.ListEnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
@@ -249,38 +326,6 @@ export type EnumResolutionOutcomeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
249
326
|
_min?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel>;
|
|
250
327
|
_max?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel>;
|
|
251
328
|
};
|
|
252
|
-
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
253
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
254
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
255
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
256
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
257
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
258
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
259
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
260
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
261
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
262
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
263
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
264
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
265
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
266
|
-
};
|
|
267
|
-
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
268
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
269
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
270
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
271
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
272
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
273
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
274
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
275
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
276
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
277
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
278
|
-
mode?: Prisma.QueryMode;
|
|
279
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
280
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
281
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
282
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
283
|
-
};
|
|
284
329
|
export type UuidFilter<$PrismaModel = never> = {
|
|
285
330
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
286
331
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
@@ -306,6 +351,21 @@ export type UuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
306
351
|
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
307
352
|
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
308
353
|
};
|
|
354
|
+
export type EnumFeedbackTypeFilter<$PrismaModel = never> = {
|
|
355
|
+
equals?: $Enums.FeedbackType | Prisma.EnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
356
|
+
in?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
357
|
+
notIn?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
358
|
+
not?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel> | $Enums.FeedbackType;
|
|
359
|
+
};
|
|
360
|
+
export type EnumFeedbackTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
361
|
+
equals?: $Enums.FeedbackType | Prisma.EnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
362
|
+
in?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
363
|
+
notIn?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
364
|
+
not?: Prisma.NestedEnumFeedbackTypeWithAggregatesFilter<$PrismaModel> | $Enums.FeedbackType;
|
|
365
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
366
|
+
_min?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel>;
|
|
367
|
+
_max?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel>;
|
|
368
|
+
};
|
|
309
369
|
export type NestedIntFilter<$PrismaModel = never> = {
|
|
310
370
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
311
371
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>;
|
|
@@ -316,10 +376,10 @@ export type NestedIntFilter<$PrismaModel = never> = {
|
|
|
316
376
|
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
317
377
|
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
318
378
|
};
|
|
319
|
-
export type
|
|
320
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel
|
|
321
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel
|
|
322
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel
|
|
379
|
+
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
380
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
381
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
382
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
323
383
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
324
384
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
325
385
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
@@ -327,7 +387,7 @@ export type NestedStringFilter<$PrismaModel = never> = {
|
|
|
327
387
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
328
388
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
329
389
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
330
|
-
not?: Prisma.
|
|
390
|
+
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
331
391
|
};
|
|
332
392
|
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
333
393
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
@@ -339,29 +399,15 @@ export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
|
339
399
|
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
340
400
|
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
341
401
|
};
|
|
342
|
-
export type
|
|
343
|
-
equals?:
|
|
344
|
-
in?:
|
|
345
|
-
notIn?:
|
|
346
|
-
lt?:
|
|
347
|
-
lte?:
|
|
348
|
-
gt?:
|
|
349
|
-
gte?:
|
|
350
|
-
not?: Prisma.
|
|
351
|
-
};
|
|
352
|
-
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
353
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
354
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
355
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
356
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
357
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
358
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
359
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
360
|
-
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
361
|
-
};
|
|
362
|
-
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
363
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
364
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
402
|
+
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
403
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
404
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
405
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
406
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
407
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
408
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
409
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
410
|
+
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
365
411
|
};
|
|
366
412
|
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
367
413
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
@@ -378,10 +424,20 @@ export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
378
424
|
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
379
425
|
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
380
426
|
};
|
|
381
|
-
export type
|
|
382
|
-
equals?:
|
|
383
|
-
in?:
|
|
384
|
-
notIn?:
|
|
427
|
+
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
428
|
+
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
429
|
+
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
430
|
+
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>;
|
|
431
|
+
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
432
|
+
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
433
|
+
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
434
|
+
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
435
|
+
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
436
|
+
};
|
|
437
|
+
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
438
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
439
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
440
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
385
441
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
386
442
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
387
443
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
@@ -389,27 +445,10 @@ export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
389
445
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
390
446
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
391
447
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
392
|
-
not?: Prisma.
|
|
393
|
-
_count?: Prisma.
|
|
394
|
-
_min?: Prisma.
|
|
395
|
-
_max?: Prisma.
|
|
396
|
-
};
|
|
397
|
-
export type NestedJsonFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
398
|
-
export type NestedJsonFilterBase<$PrismaModel = never> = {
|
|
399
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
400
|
-
path?: string[];
|
|
401
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
402
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
403
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
404
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
405
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
406
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
407
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
408
|
-
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
409
|
-
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
410
|
-
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
411
|
-
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
412
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
448
|
+
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
449
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
450
|
+
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
451
|
+
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
413
452
|
};
|
|
414
453
|
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
415
454
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
@@ -424,6 +463,100 @@ export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
424
463
|
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
425
464
|
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
426
465
|
};
|
|
466
|
+
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
467
|
+
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
468
|
+
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
469
|
+
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
470
|
+
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
471
|
+
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
472
|
+
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
473
|
+
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
474
|
+
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
475
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
476
|
+
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
477
|
+
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
478
|
+
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
479
|
+
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
480
|
+
};
|
|
481
|
+
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
482
|
+
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
483
|
+
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
484
|
+
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
485
|
+
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
486
|
+
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
487
|
+
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
488
|
+
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
489
|
+
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
490
|
+
};
|
|
491
|
+
export type NestedStringFilter<$PrismaModel = never> = {
|
|
492
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
493
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
494
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
495
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
496
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
497
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
498
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
499
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
500
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
501
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
502
|
+
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
503
|
+
};
|
|
504
|
+
export type NestedEnumTokenScopeFilter<$PrismaModel = never> = {
|
|
505
|
+
equals?: $Enums.TokenScope | Prisma.EnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
506
|
+
in?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
507
|
+
notIn?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
508
|
+
not?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel> | $Enums.TokenScope;
|
|
509
|
+
};
|
|
510
|
+
export type NestedEnumSurfaceFilter<$PrismaModel = never> = {
|
|
511
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel>;
|
|
512
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
513
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
514
|
+
not?: Prisma.NestedEnumSurfaceFilter<$PrismaModel> | $Enums.Surface;
|
|
515
|
+
};
|
|
516
|
+
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
517
|
+
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
518
|
+
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
519
|
+
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
520
|
+
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
521
|
+
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
522
|
+
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
523
|
+
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
524
|
+
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
525
|
+
};
|
|
526
|
+
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
527
|
+
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
528
|
+
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
529
|
+
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
530
|
+
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
531
|
+
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
532
|
+
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
533
|
+
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
534
|
+
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
535
|
+
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
536
|
+
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
537
|
+
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
538
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
539
|
+
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
540
|
+
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
541
|
+
};
|
|
542
|
+
export type NestedEnumTokenScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
543
|
+
equals?: $Enums.TokenScope | Prisma.EnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
544
|
+
in?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
545
|
+
notIn?: $Enums.TokenScope[] | Prisma.ListEnumTokenScopeFieldRefInput<$PrismaModel>;
|
|
546
|
+
not?: Prisma.NestedEnumTokenScopeWithAggregatesFilter<$PrismaModel> | $Enums.TokenScope;
|
|
547
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
548
|
+
_min?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel>;
|
|
549
|
+
_max?: Prisma.NestedEnumTokenScopeFilter<$PrismaModel>;
|
|
550
|
+
};
|
|
551
|
+
export type NestedEnumSurfaceWithAggregatesFilter<$PrismaModel = never> = {
|
|
552
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel>;
|
|
553
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
554
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel>;
|
|
555
|
+
not?: Prisma.NestedEnumSurfaceWithAggregatesFilter<$PrismaModel> | $Enums.Surface;
|
|
556
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
557
|
+
_min?: Prisma.NestedEnumSurfaceFilter<$PrismaModel>;
|
|
558
|
+
_max?: Prisma.NestedEnumSurfaceFilter<$PrismaModel>;
|
|
559
|
+
};
|
|
427
560
|
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
428
561
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
429
562
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null;
|
|
@@ -437,15 +570,32 @@ export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
437
570
|
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
438
571
|
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
439
572
|
};
|
|
440
|
-
export type
|
|
441
|
-
equals?:
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
not?: Prisma.
|
|
573
|
+
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
574
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
575
|
+
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
576
|
+
};
|
|
577
|
+
export type NestedEnumSurfaceNullableFilter<$PrismaModel = never> = {
|
|
578
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
579
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
580
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
581
|
+
not?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel> | $Enums.Surface | null;
|
|
582
|
+
};
|
|
583
|
+
export type NestedJsonFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
584
|
+
export type NestedJsonFilterBase<$PrismaModel = never> = {
|
|
585
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
586
|
+
path?: string[];
|
|
587
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
588
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
589
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
590
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
591
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
592
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
593
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
594
|
+
lt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
595
|
+
lte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
596
|
+
gt?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
597
|
+
gte?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel>;
|
|
598
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
449
599
|
};
|
|
450
600
|
export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
451
601
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
@@ -469,6 +619,15 @@ export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
469
619
|
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
470
620
|
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
471
621
|
};
|
|
622
|
+
export type NestedEnumSurfaceNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
623
|
+
equals?: $Enums.Surface | Prisma.EnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
624
|
+
in?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
625
|
+
notIn?: $Enums.Surface[] | Prisma.ListEnumSurfaceFieldRefInput<$PrismaModel> | null;
|
|
626
|
+
not?: Prisma.NestedEnumSurfaceNullableWithAggregatesFilter<$PrismaModel> | $Enums.Surface | null;
|
|
627
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
628
|
+
_min?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel>;
|
|
629
|
+
_max?: Prisma.NestedEnumSurfaceNullableFilter<$PrismaModel>;
|
|
630
|
+
};
|
|
472
631
|
export type NestedEnumArchivedReasonFilter<$PrismaModel = never> = {
|
|
473
632
|
equals?: $Enums.ArchivedReason | Prisma.EnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
474
633
|
in?: $Enums.ArchivedReason[] | Prisma.ListEnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
@@ -487,19 +646,6 @@ export type NestedEnumResolutionOutcomeFilter<$PrismaModel = never> = {
|
|
|
487
646
|
notIn?: $Enums.ResolutionOutcome[] | Prisma.ListEnumResolutionOutcomeFieldRefInput<$PrismaModel>;
|
|
488
647
|
not?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel> | $Enums.ResolutionOutcome;
|
|
489
648
|
};
|
|
490
|
-
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
491
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
492
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
493
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
494
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
495
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
496
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
497
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
498
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
499
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
500
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
501
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
502
|
-
};
|
|
503
649
|
export type NestedEnumArchivedReasonWithAggregatesFilter<$PrismaModel = never> = {
|
|
504
650
|
equals?: $Enums.ArchivedReason | Prisma.EnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
505
651
|
in?: $Enums.ArchivedReason[] | Prisma.ListEnumArchivedReasonFieldRefInput<$PrismaModel>;
|
|
@@ -527,47 +673,6 @@ export type NestedEnumResolutionOutcomeWithAggregatesFilter<$PrismaModel = never
|
|
|
527
673
|
_min?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel>;
|
|
528
674
|
_max?: Prisma.NestedEnumResolutionOutcomeFilter<$PrismaModel>;
|
|
529
675
|
};
|
|
530
|
-
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
531
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
532
|
-
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
533
|
-
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null;
|
|
534
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
535
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
536
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
537
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
538
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
539
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
540
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
541
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
542
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
543
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
544
|
-
};
|
|
545
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
546
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
547
|
-
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
548
|
-
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null;
|
|
549
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
550
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
551
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
552
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
553
|
-
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
554
|
-
};
|
|
555
|
-
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
556
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
557
|
-
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
558
|
-
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null;
|
|
559
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
560
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
561
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
562
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
563
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
564
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
565
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
566
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
567
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
568
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
569
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
570
|
-
};
|
|
571
676
|
export type NestedUuidFilter<$PrismaModel = never> = {
|
|
572
677
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
573
678
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>;
|
|
@@ -591,4 +696,19 @@ export type NestedUuidWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
591
696
|
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
592
697
|
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
593
698
|
};
|
|
699
|
+
export type NestedEnumFeedbackTypeFilter<$PrismaModel = never> = {
|
|
700
|
+
equals?: $Enums.FeedbackType | Prisma.EnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
701
|
+
in?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
702
|
+
notIn?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
703
|
+
not?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel> | $Enums.FeedbackType;
|
|
704
|
+
};
|
|
705
|
+
export type NestedEnumFeedbackTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
706
|
+
equals?: $Enums.FeedbackType | Prisma.EnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
707
|
+
in?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
708
|
+
notIn?: $Enums.FeedbackType[] | Prisma.ListEnumFeedbackTypeFieldRefInput<$PrismaModel>;
|
|
709
|
+
not?: Prisma.NestedEnumFeedbackTypeWithAggregatesFilter<$PrismaModel> | $Enums.FeedbackType;
|
|
710
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
711
|
+
_min?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel>;
|
|
712
|
+
_max?: Prisma.NestedEnumFeedbackTypeFilter<$PrismaModel>;
|
|
713
|
+
};
|
|
594
714
|
//# sourceMappingURL=commonInputTypes.d.ts.map
|