@valentine-efagene/qshelter-common 2.0.48 → 2.0.49
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/generated/client/browser.d.ts +6 -6
- package/dist/generated/client/client.d.ts +6 -6
- package/dist/generated/client/internal/class.d.ts +12 -12
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +109 -109
- package/dist/generated/client/internal/prismaNamespace.js +9 -9
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +15 -15
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +9 -9
- package/dist/generated/client/models/ContractPhase.d.ts +35 -35
- package/dist/generated/client/models/DocumentationStep.d.ts +1819 -0
- package/dist/generated/client/models/DocumentationStep.js +1 -0
- package/dist/generated/client/models/DocumentationStepApproval.d.ts +1253 -0
- package/dist/generated/client/models/DocumentationStepApproval.js +1 -0
- package/dist/generated/client/models/DocumentationStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/DocumentationStepDocument.js +1 -0
- package/dist/generated/client/models/User.d.ts +214 -214
- package/dist/generated/client/models.d.ts +3 -3
- package/package.json +1 -1
- package/prisma/schema.prisma +13 -13
|
@@ -0,0 +1,1052 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../internal/prismaNamespace.js";
|
|
3
|
+
/**
|
|
4
|
+
* Model DocumentationStepDocument
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
export type DocumentationStepDocumentModel = runtime.Types.Result.DefaultSelection<Prisma.$DocumentationStepDocumentPayload>;
|
|
8
|
+
export type AggregateDocumentationStepDocument = {
|
|
9
|
+
_count: DocumentationStepDocumentCountAggregateOutputType | null;
|
|
10
|
+
_min: DocumentationStepDocumentMinAggregateOutputType | null;
|
|
11
|
+
_max: DocumentationStepDocumentMaxAggregateOutputType | null;
|
|
12
|
+
};
|
|
13
|
+
export type DocumentationStepDocumentMinAggregateOutputType = {
|
|
14
|
+
id: string | null;
|
|
15
|
+
stepId: string | null;
|
|
16
|
+
documentType: string | null;
|
|
17
|
+
isRequired: boolean | null;
|
|
18
|
+
createdAt: Date | null;
|
|
19
|
+
};
|
|
20
|
+
export type DocumentationStepDocumentMaxAggregateOutputType = {
|
|
21
|
+
id: string | null;
|
|
22
|
+
stepId: string | null;
|
|
23
|
+
documentType: string | null;
|
|
24
|
+
isRequired: boolean | null;
|
|
25
|
+
createdAt: Date | null;
|
|
26
|
+
};
|
|
27
|
+
export type DocumentationStepDocumentCountAggregateOutputType = {
|
|
28
|
+
id: number;
|
|
29
|
+
stepId: number;
|
|
30
|
+
documentType: number;
|
|
31
|
+
isRequired: number;
|
|
32
|
+
createdAt: number;
|
|
33
|
+
_all: number;
|
|
34
|
+
};
|
|
35
|
+
export type DocumentationStepDocumentMinAggregateInputType = {
|
|
36
|
+
id?: true;
|
|
37
|
+
stepId?: true;
|
|
38
|
+
documentType?: true;
|
|
39
|
+
isRequired?: true;
|
|
40
|
+
createdAt?: true;
|
|
41
|
+
};
|
|
42
|
+
export type DocumentationStepDocumentMaxAggregateInputType = {
|
|
43
|
+
id?: true;
|
|
44
|
+
stepId?: true;
|
|
45
|
+
documentType?: true;
|
|
46
|
+
isRequired?: true;
|
|
47
|
+
createdAt?: true;
|
|
48
|
+
};
|
|
49
|
+
export type DocumentationStepDocumentCountAggregateInputType = {
|
|
50
|
+
id?: true;
|
|
51
|
+
stepId?: true;
|
|
52
|
+
documentType?: true;
|
|
53
|
+
isRequired?: true;
|
|
54
|
+
createdAt?: true;
|
|
55
|
+
_all?: true;
|
|
56
|
+
};
|
|
57
|
+
export type DocumentationStepDocumentAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
58
|
+
/**
|
|
59
|
+
* Filter which DocumentationStepDocument to aggregate.
|
|
60
|
+
*/
|
|
61
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
62
|
+
/**
|
|
63
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
64
|
+
*
|
|
65
|
+
* Determine the order of DocumentationStepDocuments to fetch.
|
|
66
|
+
*/
|
|
67
|
+
orderBy?: Prisma.DocumentationStepDocumentOrderByWithRelationInput | Prisma.DocumentationStepDocumentOrderByWithRelationInput[];
|
|
68
|
+
/**
|
|
69
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
70
|
+
*
|
|
71
|
+
* Sets the start position
|
|
72
|
+
*/
|
|
73
|
+
cursor?: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
74
|
+
/**
|
|
75
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76
|
+
*
|
|
77
|
+
* Take `±n` DocumentationStepDocuments from the position of the cursor.
|
|
78
|
+
*/
|
|
79
|
+
take?: number;
|
|
80
|
+
/**
|
|
81
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
82
|
+
*
|
|
83
|
+
* Skip the first `n` DocumentationStepDocuments.
|
|
84
|
+
*/
|
|
85
|
+
skip?: number;
|
|
86
|
+
/**
|
|
87
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
88
|
+
*
|
|
89
|
+
* Count returned DocumentationStepDocuments
|
|
90
|
+
**/
|
|
91
|
+
_count?: true | DocumentationStepDocumentCountAggregateInputType;
|
|
92
|
+
/**
|
|
93
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
94
|
+
*
|
|
95
|
+
* Select which fields to find the minimum value
|
|
96
|
+
**/
|
|
97
|
+
_min?: DocumentationStepDocumentMinAggregateInputType;
|
|
98
|
+
/**
|
|
99
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
100
|
+
*
|
|
101
|
+
* Select which fields to find the maximum value
|
|
102
|
+
**/
|
|
103
|
+
_max?: DocumentationStepDocumentMaxAggregateInputType;
|
|
104
|
+
};
|
|
105
|
+
export type GetDocumentationStepDocumentAggregateType<T extends DocumentationStepDocumentAggregateArgs> = {
|
|
106
|
+
[P in keyof T & keyof AggregateDocumentationStepDocument]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateDocumentationStepDocument[P]> : Prisma.GetScalarType<T[P], AggregateDocumentationStepDocument[P]>;
|
|
107
|
+
};
|
|
108
|
+
export type DocumentationStepDocumentGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
109
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
110
|
+
orderBy?: Prisma.DocumentationStepDocumentOrderByWithAggregationInput | Prisma.DocumentationStepDocumentOrderByWithAggregationInput[];
|
|
111
|
+
by: Prisma.DocumentationStepDocumentScalarFieldEnum[] | Prisma.DocumentationStepDocumentScalarFieldEnum;
|
|
112
|
+
having?: Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput;
|
|
113
|
+
take?: number;
|
|
114
|
+
skip?: number;
|
|
115
|
+
_count?: DocumentationStepDocumentCountAggregateInputType | true;
|
|
116
|
+
_min?: DocumentationStepDocumentMinAggregateInputType;
|
|
117
|
+
_max?: DocumentationStepDocumentMaxAggregateInputType;
|
|
118
|
+
};
|
|
119
|
+
export type DocumentationStepDocumentGroupByOutputType = {
|
|
120
|
+
id: string;
|
|
121
|
+
stepId: string;
|
|
122
|
+
documentType: string;
|
|
123
|
+
isRequired: boolean;
|
|
124
|
+
createdAt: Date;
|
|
125
|
+
_count: DocumentationStepDocumentCountAggregateOutputType | null;
|
|
126
|
+
_min: DocumentationStepDocumentMinAggregateOutputType | null;
|
|
127
|
+
_max: DocumentationStepDocumentMaxAggregateOutputType | null;
|
|
128
|
+
};
|
|
129
|
+
type GetDocumentationStepDocumentGroupByPayload<T extends DocumentationStepDocumentGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<DocumentationStepDocumentGroupByOutputType, T['by']> & {
|
|
130
|
+
[P in ((keyof T) & (keyof DocumentationStepDocumentGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], DocumentationStepDocumentGroupByOutputType[P]> : Prisma.GetScalarType<T[P], DocumentationStepDocumentGroupByOutputType[P]>;
|
|
131
|
+
}>>;
|
|
132
|
+
export type DocumentationStepDocumentWhereInput = {
|
|
133
|
+
AND?: Prisma.DocumentationStepDocumentWhereInput | Prisma.DocumentationStepDocumentWhereInput[];
|
|
134
|
+
OR?: Prisma.DocumentationStepDocumentWhereInput[];
|
|
135
|
+
NOT?: Prisma.DocumentationStepDocumentWhereInput | Prisma.DocumentationStepDocumentWhereInput[];
|
|
136
|
+
id?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
137
|
+
stepId?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
138
|
+
documentType?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
139
|
+
isRequired?: Prisma.BoolFilter<"DocumentationStepDocument"> | boolean;
|
|
140
|
+
createdAt?: Prisma.DateTimeFilter<"DocumentationStepDocument"> | Date | string;
|
|
141
|
+
step?: Prisma.XOR<Prisma.DocumentationStepScalarRelationFilter, Prisma.DocumentationStepWhereInput>;
|
|
142
|
+
};
|
|
143
|
+
export type DocumentationStepDocumentOrderByWithRelationInput = {
|
|
144
|
+
id?: Prisma.SortOrder;
|
|
145
|
+
stepId?: Prisma.SortOrder;
|
|
146
|
+
documentType?: Prisma.SortOrder;
|
|
147
|
+
isRequired?: Prisma.SortOrder;
|
|
148
|
+
createdAt?: Prisma.SortOrder;
|
|
149
|
+
step?: Prisma.DocumentationStepOrderByWithRelationInput;
|
|
150
|
+
_relevance?: Prisma.DocumentationStepDocumentOrderByRelevanceInput;
|
|
151
|
+
};
|
|
152
|
+
export type DocumentationStepDocumentWhereUniqueInput = Prisma.AtLeast<{
|
|
153
|
+
id?: string;
|
|
154
|
+
AND?: Prisma.DocumentationStepDocumentWhereInput | Prisma.DocumentationStepDocumentWhereInput[];
|
|
155
|
+
OR?: Prisma.DocumentationStepDocumentWhereInput[];
|
|
156
|
+
NOT?: Prisma.DocumentationStepDocumentWhereInput | Prisma.DocumentationStepDocumentWhereInput[];
|
|
157
|
+
stepId?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
158
|
+
documentType?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
159
|
+
isRequired?: Prisma.BoolFilter<"DocumentationStepDocument"> | boolean;
|
|
160
|
+
createdAt?: Prisma.DateTimeFilter<"DocumentationStepDocument"> | Date | string;
|
|
161
|
+
step?: Prisma.XOR<Prisma.DocumentationStepScalarRelationFilter, Prisma.DocumentationStepWhereInput>;
|
|
162
|
+
}, "id">;
|
|
163
|
+
export type DocumentationStepDocumentOrderByWithAggregationInput = {
|
|
164
|
+
id?: Prisma.SortOrder;
|
|
165
|
+
stepId?: Prisma.SortOrder;
|
|
166
|
+
documentType?: Prisma.SortOrder;
|
|
167
|
+
isRequired?: Prisma.SortOrder;
|
|
168
|
+
createdAt?: Prisma.SortOrder;
|
|
169
|
+
_count?: Prisma.DocumentationStepDocumentCountOrderByAggregateInput;
|
|
170
|
+
_max?: Prisma.DocumentationStepDocumentMaxOrderByAggregateInput;
|
|
171
|
+
_min?: Prisma.DocumentationStepDocumentMinOrderByAggregateInput;
|
|
172
|
+
};
|
|
173
|
+
export type DocumentationStepDocumentScalarWhereWithAggregatesInput = {
|
|
174
|
+
AND?: Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput | Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput[];
|
|
175
|
+
OR?: Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput[];
|
|
176
|
+
NOT?: Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput | Prisma.DocumentationStepDocumentScalarWhereWithAggregatesInput[];
|
|
177
|
+
id?: Prisma.StringWithAggregatesFilter<"DocumentationStepDocument"> | string;
|
|
178
|
+
stepId?: Prisma.StringWithAggregatesFilter<"DocumentationStepDocument"> | string;
|
|
179
|
+
documentType?: Prisma.StringWithAggregatesFilter<"DocumentationStepDocument"> | string;
|
|
180
|
+
isRequired?: Prisma.BoolWithAggregatesFilter<"DocumentationStepDocument"> | boolean;
|
|
181
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"DocumentationStepDocument"> | Date | string;
|
|
182
|
+
};
|
|
183
|
+
export type DocumentationStepDocumentCreateInput = {
|
|
184
|
+
id?: string;
|
|
185
|
+
documentType: string;
|
|
186
|
+
isRequired?: boolean;
|
|
187
|
+
createdAt?: Date | string;
|
|
188
|
+
step: Prisma.DocumentationStepCreateNestedOneWithoutRequiredDocumentsInput;
|
|
189
|
+
};
|
|
190
|
+
export type DocumentationStepDocumentUncheckedCreateInput = {
|
|
191
|
+
id?: string;
|
|
192
|
+
stepId: string;
|
|
193
|
+
documentType: string;
|
|
194
|
+
isRequired?: boolean;
|
|
195
|
+
createdAt?: Date | string;
|
|
196
|
+
};
|
|
197
|
+
export type DocumentationStepDocumentUpdateInput = {
|
|
198
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
199
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
200
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
201
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
202
|
+
step?: Prisma.DocumentationStepUpdateOneRequiredWithoutRequiredDocumentsNestedInput;
|
|
203
|
+
};
|
|
204
|
+
export type DocumentationStepDocumentUncheckedUpdateInput = {
|
|
205
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
206
|
+
stepId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
207
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
208
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
209
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
210
|
+
};
|
|
211
|
+
export type DocumentationStepDocumentCreateManyInput = {
|
|
212
|
+
id?: string;
|
|
213
|
+
stepId: string;
|
|
214
|
+
documentType: string;
|
|
215
|
+
isRequired?: boolean;
|
|
216
|
+
createdAt?: Date | string;
|
|
217
|
+
};
|
|
218
|
+
export type DocumentationStepDocumentUpdateManyMutationInput = {
|
|
219
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
220
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
221
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
222
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
223
|
+
};
|
|
224
|
+
export type DocumentationStepDocumentUncheckedUpdateManyInput = {
|
|
225
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
226
|
+
stepId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
227
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
228
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
229
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
230
|
+
};
|
|
231
|
+
export type DocumentationStepDocumentListRelationFilter = {
|
|
232
|
+
every?: Prisma.DocumentationStepDocumentWhereInput;
|
|
233
|
+
some?: Prisma.DocumentationStepDocumentWhereInput;
|
|
234
|
+
none?: Prisma.DocumentationStepDocumentWhereInput;
|
|
235
|
+
};
|
|
236
|
+
export type DocumentationStepDocumentOrderByRelationAggregateInput = {
|
|
237
|
+
_count?: Prisma.SortOrder;
|
|
238
|
+
};
|
|
239
|
+
export type DocumentationStepDocumentOrderByRelevanceInput = {
|
|
240
|
+
fields: Prisma.DocumentationStepDocumentOrderByRelevanceFieldEnum | Prisma.DocumentationStepDocumentOrderByRelevanceFieldEnum[];
|
|
241
|
+
sort: Prisma.SortOrder;
|
|
242
|
+
search: string;
|
|
243
|
+
};
|
|
244
|
+
export type DocumentationStepDocumentCountOrderByAggregateInput = {
|
|
245
|
+
id?: Prisma.SortOrder;
|
|
246
|
+
stepId?: Prisma.SortOrder;
|
|
247
|
+
documentType?: Prisma.SortOrder;
|
|
248
|
+
isRequired?: Prisma.SortOrder;
|
|
249
|
+
createdAt?: Prisma.SortOrder;
|
|
250
|
+
};
|
|
251
|
+
export type DocumentationStepDocumentMaxOrderByAggregateInput = {
|
|
252
|
+
id?: Prisma.SortOrder;
|
|
253
|
+
stepId?: Prisma.SortOrder;
|
|
254
|
+
documentType?: Prisma.SortOrder;
|
|
255
|
+
isRequired?: Prisma.SortOrder;
|
|
256
|
+
createdAt?: Prisma.SortOrder;
|
|
257
|
+
};
|
|
258
|
+
export type DocumentationStepDocumentMinOrderByAggregateInput = {
|
|
259
|
+
id?: Prisma.SortOrder;
|
|
260
|
+
stepId?: Prisma.SortOrder;
|
|
261
|
+
documentType?: Prisma.SortOrder;
|
|
262
|
+
isRequired?: Prisma.SortOrder;
|
|
263
|
+
createdAt?: Prisma.SortOrder;
|
|
264
|
+
};
|
|
265
|
+
export type DocumentationStepDocumentCreateNestedManyWithoutStepInput = {
|
|
266
|
+
create?: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput> | Prisma.DocumentationStepDocumentCreateWithoutStepInput[] | Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput[];
|
|
267
|
+
connectOrCreate?: Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput | Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput[];
|
|
268
|
+
createMany?: Prisma.DocumentationStepDocumentCreateManyStepInputEnvelope;
|
|
269
|
+
connect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
270
|
+
};
|
|
271
|
+
export type DocumentationStepDocumentUncheckedCreateNestedManyWithoutStepInput = {
|
|
272
|
+
create?: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput> | Prisma.DocumentationStepDocumentCreateWithoutStepInput[] | Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput[];
|
|
273
|
+
connectOrCreate?: Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput | Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput[];
|
|
274
|
+
createMany?: Prisma.DocumentationStepDocumentCreateManyStepInputEnvelope;
|
|
275
|
+
connect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
276
|
+
};
|
|
277
|
+
export type DocumentationStepDocumentUpdateManyWithoutStepNestedInput = {
|
|
278
|
+
create?: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput> | Prisma.DocumentationStepDocumentCreateWithoutStepInput[] | Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput[];
|
|
279
|
+
connectOrCreate?: Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput | Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput[];
|
|
280
|
+
upsert?: Prisma.DocumentationStepDocumentUpsertWithWhereUniqueWithoutStepInput | Prisma.DocumentationStepDocumentUpsertWithWhereUniqueWithoutStepInput[];
|
|
281
|
+
createMany?: Prisma.DocumentationStepDocumentCreateManyStepInputEnvelope;
|
|
282
|
+
set?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
283
|
+
disconnect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
284
|
+
delete?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
285
|
+
connect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
286
|
+
update?: Prisma.DocumentationStepDocumentUpdateWithWhereUniqueWithoutStepInput | Prisma.DocumentationStepDocumentUpdateWithWhereUniqueWithoutStepInput[];
|
|
287
|
+
updateMany?: Prisma.DocumentationStepDocumentUpdateManyWithWhereWithoutStepInput | Prisma.DocumentationStepDocumentUpdateManyWithWhereWithoutStepInput[];
|
|
288
|
+
deleteMany?: Prisma.DocumentationStepDocumentScalarWhereInput | Prisma.DocumentationStepDocumentScalarWhereInput[];
|
|
289
|
+
};
|
|
290
|
+
export type DocumentationStepDocumentUncheckedUpdateManyWithoutStepNestedInput = {
|
|
291
|
+
create?: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput> | Prisma.DocumentationStepDocumentCreateWithoutStepInput[] | Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput[];
|
|
292
|
+
connectOrCreate?: Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput | Prisma.DocumentationStepDocumentCreateOrConnectWithoutStepInput[];
|
|
293
|
+
upsert?: Prisma.DocumentationStepDocumentUpsertWithWhereUniqueWithoutStepInput | Prisma.DocumentationStepDocumentUpsertWithWhereUniqueWithoutStepInput[];
|
|
294
|
+
createMany?: Prisma.DocumentationStepDocumentCreateManyStepInputEnvelope;
|
|
295
|
+
set?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
296
|
+
disconnect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
297
|
+
delete?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
298
|
+
connect?: Prisma.DocumentationStepDocumentWhereUniqueInput | Prisma.DocumentationStepDocumentWhereUniqueInput[];
|
|
299
|
+
update?: Prisma.DocumentationStepDocumentUpdateWithWhereUniqueWithoutStepInput | Prisma.DocumentationStepDocumentUpdateWithWhereUniqueWithoutStepInput[];
|
|
300
|
+
updateMany?: Prisma.DocumentationStepDocumentUpdateManyWithWhereWithoutStepInput | Prisma.DocumentationStepDocumentUpdateManyWithWhereWithoutStepInput[];
|
|
301
|
+
deleteMany?: Prisma.DocumentationStepDocumentScalarWhereInput | Prisma.DocumentationStepDocumentScalarWhereInput[];
|
|
302
|
+
};
|
|
303
|
+
export type DocumentationStepDocumentCreateWithoutStepInput = {
|
|
304
|
+
id?: string;
|
|
305
|
+
documentType: string;
|
|
306
|
+
isRequired?: boolean;
|
|
307
|
+
createdAt?: Date | string;
|
|
308
|
+
};
|
|
309
|
+
export type DocumentationStepDocumentUncheckedCreateWithoutStepInput = {
|
|
310
|
+
id?: string;
|
|
311
|
+
documentType: string;
|
|
312
|
+
isRequired?: boolean;
|
|
313
|
+
createdAt?: Date | string;
|
|
314
|
+
};
|
|
315
|
+
export type DocumentationStepDocumentCreateOrConnectWithoutStepInput = {
|
|
316
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
317
|
+
create: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput>;
|
|
318
|
+
};
|
|
319
|
+
export type DocumentationStepDocumentCreateManyStepInputEnvelope = {
|
|
320
|
+
data: Prisma.DocumentationStepDocumentCreateManyStepInput | Prisma.DocumentationStepDocumentCreateManyStepInput[];
|
|
321
|
+
skipDuplicates?: boolean;
|
|
322
|
+
};
|
|
323
|
+
export type DocumentationStepDocumentUpsertWithWhereUniqueWithoutStepInput = {
|
|
324
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
325
|
+
update: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedUpdateWithoutStepInput>;
|
|
326
|
+
create: Prisma.XOR<Prisma.DocumentationStepDocumentCreateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedCreateWithoutStepInput>;
|
|
327
|
+
};
|
|
328
|
+
export type DocumentationStepDocumentUpdateWithWhereUniqueWithoutStepInput = {
|
|
329
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
330
|
+
data: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateWithoutStepInput, Prisma.DocumentationStepDocumentUncheckedUpdateWithoutStepInput>;
|
|
331
|
+
};
|
|
332
|
+
export type DocumentationStepDocumentUpdateManyWithWhereWithoutStepInput = {
|
|
333
|
+
where: Prisma.DocumentationStepDocumentScalarWhereInput;
|
|
334
|
+
data: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateManyMutationInput, Prisma.DocumentationStepDocumentUncheckedUpdateManyWithoutStepInput>;
|
|
335
|
+
};
|
|
336
|
+
export type DocumentationStepDocumentScalarWhereInput = {
|
|
337
|
+
AND?: Prisma.DocumentationStepDocumentScalarWhereInput | Prisma.DocumentationStepDocumentScalarWhereInput[];
|
|
338
|
+
OR?: Prisma.DocumentationStepDocumentScalarWhereInput[];
|
|
339
|
+
NOT?: Prisma.DocumentationStepDocumentScalarWhereInput | Prisma.DocumentationStepDocumentScalarWhereInput[];
|
|
340
|
+
id?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
341
|
+
stepId?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
342
|
+
documentType?: Prisma.StringFilter<"DocumentationStepDocument"> | string;
|
|
343
|
+
isRequired?: Prisma.BoolFilter<"DocumentationStepDocument"> | boolean;
|
|
344
|
+
createdAt?: Prisma.DateTimeFilter<"DocumentationStepDocument"> | Date | string;
|
|
345
|
+
};
|
|
346
|
+
export type DocumentationStepDocumentCreateManyStepInput = {
|
|
347
|
+
id?: string;
|
|
348
|
+
documentType: string;
|
|
349
|
+
isRequired?: boolean;
|
|
350
|
+
createdAt?: Date | string;
|
|
351
|
+
};
|
|
352
|
+
export type DocumentationStepDocumentUpdateWithoutStepInput = {
|
|
353
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
354
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
355
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
356
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
357
|
+
};
|
|
358
|
+
export type DocumentationStepDocumentUncheckedUpdateWithoutStepInput = {
|
|
359
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
360
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
361
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
362
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
363
|
+
};
|
|
364
|
+
export type DocumentationStepDocumentUncheckedUpdateManyWithoutStepInput = {
|
|
365
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
366
|
+
documentType?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
367
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
368
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
369
|
+
};
|
|
370
|
+
export type DocumentationStepDocumentSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
371
|
+
id?: boolean;
|
|
372
|
+
stepId?: boolean;
|
|
373
|
+
documentType?: boolean;
|
|
374
|
+
isRequired?: boolean;
|
|
375
|
+
createdAt?: boolean;
|
|
376
|
+
step?: boolean | Prisma.DocumentationStepDefaultArgs<ExtArgs>;
|
|
377
|
+
}, ExtArgs["result"]["documentationStepDocument"]>;
|
|
378
|
+
export type DocumentationStepDocumentSelectScalar = {
|
|
379
|
+
id?: boolean;
|
|
380
|
+
stepId?: boolean;
|
|
381
|
+
documentType?: boolean;
|
|
382
|
+
isRequired?: boolean;
|
|
383
|
+
createdAt?: boolean;
|
|
384
|
+
};
|
|
385
|
+
export type DocumentationStepDocumentOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "stepId" | "documentType" | "isRequired" | "createdAt", ExtArgs["result"]["documentationStepDocument"]>;
|
|
386
|
+
export type DocumentationStepDocumentInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
387
|
+
step?: boolean | Prisma.DocumentationStepDefaultArgs<ExtArgs>;
|
|
388
|
+
};
|
|
389
|
+
export type $DocumentationStepDocumentPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
390
|
+
name: "DocumentationStepDocument";
|
|
391
|
+
objects: {
|
|
392
|
+
step: Prisma.$DocumentationStepPayload<ExtArgs>;
|
|
393
|
+
};
|
|
394
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
395
|
+
id: string;
|
|
396
|
+
stepId: string;
|
|
397
|
+
documentType: string;
|
|
398
|
+
isRequired: boolean;
|
|
399
|
+
createdAt: Date;
|
|
400
|
+
}, ExtArgs["result"]["documentationStepDocument"]>;
|
|
401
|
+
composites: {};
|
|
402
|
+
};
|
|
403
|
+
export type DocumentationStepDocumentGetPayload<S extends boolean | null | undefined | DocumentationStepDocumentDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload, S>;
|
|
404
|
+
export type DocumentationStepDocumentCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<DocumentationStepDocumentFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
405
|
+
select?: DocumentationStepDocumentCountAggregateInputType | true;
|
|
406
|
+
};
|
|
407
|
+
export interface DocumentationStepDocumentDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
408
|
+
[K: symbol]: {
|
|
409
|
+
types: Prisma.TypeMap<ExtArgs>['model']['DocumentationStepDocument'];
|
|
410
|
+
meta: {
|
|
411
|
+
name: 'DocumentationStepDocument';
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
/**
|
|
415
|
+
* Find zero or one DocumentationStepDocument that matches the filter.
|
|
416
|
+
* @param {DocumentationStepDocumentFindUniqueArgs} args - Arguments to find a DocumentationStepDocument
|
|
417
|
+
* @example
|
|
418
|
+
* // Get one DocumentationStepDocument
|
|
419
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.findUnique({
|
|
420
|
+
* where: {
|
|
421
|
+
* // ... provide filter here
|
|
422
|
+
* }
|
|
423
|
+
* })
|
|
424
|
+
*/
|
|
425
|
+
findUnique<T extends DocumentationStepDocumentFindUniqueArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentFindUniqueArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
426
|
+
/**
|
|
427
|
+
* Find one DocumentationStepDocument that matches the filter or throw an error with `error.code='P2025'`
|
|
428
|
+
* if no matches were found.
|
|
429
|
+
* @param {DocumentationStepDocumentFindUniqueOrThrowArgs} args - Arguments to find a DocumentationStepDocument
|
|
430
|
+
* @example
|
|
431
|
+
* // Get one DocumentationStepDocument
|
|
432
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.findUniqueOrThrow({
|
|
433
|
+
* where: {
|
|
434
|
+
* // ... provide filter here
|
|
435
|
+
* }
|
|
436
|
+
* })
|
|
437
|
+
*/
|
|
438
|
+
findUniqueOrThrow<T extends DocumentationStepDocumentFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
439
|
+
/**
|
|
440
|
+
* Find the first DocumentationStepDocument that matches the filter.
|
|
441
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
442
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
443
|
+
* @param {DocumentationStepDocumentFindFirstArgs} args - Arguments to find a DocumentationStepDocument
|
|
444
|
+
* @example
|
|
445
|
+
* // Get one DocumentationStepDocument
|
|
446
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.findFirst({
|
|
447
|
+
* where: {
|
|
448
|
+
* // ... provide filter here
|
|
449
|
+
* }
|
|
450
|
+
* })
|
|
451
|
+
*/
|
|
452
|
+
findFirst<T extends DocumentationStepDocumentFindFirstArgs>(args?: Prisma.SelectSubset<T, DocumentationStepDocumentFindFirstArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
453
|
+
/**
|
|
454
|
+
* Find the first DocumentationStepDocument that matches the filter or
|
|
455
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
456
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
457
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
458
|
+
* @param {DocumentationStepDocumentFindFirstOrThrowArgs} args - Arguments to find a DocumentationStepDocument
|
|
459
|
+
* @example
|
|
460
|
+
* // Get one DocumentationStepDocument
|
|
461
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.findFirstOrThrow({
|
|
462
|
+
* where: {
|
|
463
|
+
* // ... provide filter here
|
|
464
|
+
* }
|
|
465
|
+
* })
|
|
466
|
+
*/
|
|
467
|
+
findFirstOrThrow<T extends DocumentationStepDocumentFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, DocumentationStepDocumentFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
468
|
+
/**
|
|
469
|
+
* Find zero or more DocumentationStepDocuments that matches the filter.
|
|
470
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
471
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
472
|
+
* @param {DocumentationStepDocumentFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
473
|
+
* @example
|
|
474
|
+
* // Get all DocumentationStepDocuments
|
|
475
|
+
* const documentationStepDocuments = await prisma.documentationStepDocument.findMany()
|
|
476
|
+
*
|
|
477
|
+
* // Get first 10 DocumentationStepDocuments
|
|
478
|
+
* const documentationStepDocuments = await prisma.documentationStepDocument.findMany({ take: 10 })
|
|
479
|
+
*
|
|
480
|
+
* // Only select the `id`
|
|
481
|
+
* const documentationStepDocumentWithIdOnly = await prisma.documentationStepDocument.findMany({ select: { id: true } })
|
|
482
|
+
*
|
|
483
|
+
*/
|
|
484
|
+
findMany<T extends DocumentationStepDocumentFindManyArgs>(args?: Prisma.SelectSubset<T, DocumentationStepDocumentFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
485
|
+
/**
|
|
486
|
+
* Create a DocumentationStepDocument.
|
|
487
|
+
* @param {DocumentationStepDocumentCreateArgs} args - Arguments to create a DocumentationStepDocument.
|
|
488
|
+
* @example
|
|
489
|
+
* // Create one DocumentationStepDocument
|
|
490
|
+
* const DocumentationStepDocument = await prisma.documentationStepDocument.create({
|
|
491
|
+
* data: {
|
|
492
|
+
* // ... data to create a DocumentationStepDocument
|
|
493
|
+
* }
|
|
494
|
+
* })
|
|
495
|
+
*
|
|
496
|
+
*/
|
|
497
|
+
create<T extends DocumentationStepDocumentCreateArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentCreateArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
498
|
+
/**
|
|
499
|
+
* Create many DocumentationStepDocuments.
|
|
500
|
+
* @param {DocumentationStepDocumentCreateManyArgs} args - Arguments to create many DocumentationStepDocuments.
|
|
501
|
+
* @example
|
|
502
|
+
* // Create many DocumentationStepDocuments
|
|
503
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.createMany({
|
|
504
|
+
* data: [
|
|
505
|
+
* // ... provide data here
|
|
506
|
+
* ]
|
|
507
|
+
* })
|
|
508
|
+
*
|
|
509
|
+
*/
|
|
510
|
+
createMany<T extends DocumentationStepDocumentCreateManyArgs>(args?: Prisma.SelectSubset<T, DocumentationStepDocumentCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
511
|
+
/**
|
|
512
|
+
* Delete a DocumentationStepDocument.
|
|
513
|
+
* @param {DocumentationStepDocumentDeleteArgs} args - Arguments to delete one DocumentationStepDocument.
|
|
514
|
+
* @example
|
|
515
|
+
* // Delete one DocumentationStepDocument
|
|
516
|
+
* const DocumentationStepDocument = await prisma.documentationStepDocument.delete({
|
|
517
|
+
* where: {
|
|
518
|
+
* // ... filter to delete one DocumentationStepDocument
|
|
519
|
+
* }
|
|
520
|
+
* })
|
|
521
|
+
*
|
|
522
|
+
*/
|
|
523
|
+
delete<T extends DocumentationStepDocumentDeleteArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentDeleteArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
524
|
+
/**
|
|
525
|
+
* Update one DocumentationStepDocument.
|
|
526
|
+
* @param {DocumentationStepDocumentUpdateArgs} args - Arguments to update one DocumentationStepDocument.
|
|
527
|
+
* @example
|
|
528
|
+
* // Update one DocumentationStepDocument
|
|
529
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.update({
|
|
530
|
+
* where: {
|
|
531
|
+
* // ... provide filter here
|
|
532
|
+
* },
|
|
533
|
+
* data: {
|
|
534
|
+
* // ... provide data here
|
|
535
|
+
* }
|
|
536
|
+
* })
|
|
537
|
+
*
|
|
538
|
+
*/
|
|
539
|
+
update<T extends DocumentationStepDocumentUpdateArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentUpdateArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
540
|
+
/**
|
|
541
|
+
* Delete zero or more DocumentationStepDocuments.
|
|
542
|
+
* @param {DocumentationStepDocumentDeleteManyArgs} args - Arguments to filter DocumentationStepDocuments to delete.
|
|
543
|
+
* @example
|
|
544
|
+
* // Delete a few DocumentationStepDocuments
|
|
545
|
+
* const { count } = await prisma.documentationStepDocument.deleteMany({
|
|
546
|
+
* where: {
|
|
547
|
+
* // ... provide filter here
|
|
548
|
+
* }
|
|
549
|
+
* })
|
|
550
|
+
*
|
|
551
|
+
*/
|
|
552
|
+
deleteMany<T extends DocumentationStepDocumentDeleteManyArgs>(args?: Prisma.SelectSubset<T, DocumentationStepDocumentDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
553
|
+
/**
|
|
554
|
+
* Update zero or more DocumentationStepDocuments.
|
|
555
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
556
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
557
|
+
* @param {DocumentationStepDocumentUpdateManyArgs} args - Arguments to update one or more rows.
|
|
558
|
+
* @example
|
|
559
|
+
* // Update many DocumentationStepDocuments
|
|
560
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.updateMany({
|
|
561
|
+
* where: {
|
|
562
|
+
* // ... provide filter here
|
|
563
|
+
* },
|
|
564
|
+
* data: {
|
|
565
|
+
* // ... provide data here
|
|
566
|
+
* }
|
|
567
|
+
* })
|
|
568
|
+
*
|
|
569
|
+
*/
|
|
570
|
+
updateMany<T extends DocumentationStepDocumentUpdateManyArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
571
|
+
/**
|
|
572
|
+
* Create or update one DocumentationStepDocument.
|
|
573
|
+
* @param {DocumentationStepDocumentUpsertArgs} args - Arguments to update or create a DocumentationStepDocument.
|
|
574
|
+
* @example
|
|
575
|
+
* // Update or create a DocumentationStepDocument
|
|
576
|
+
* const documentationStepDocument = await prisma.documentationStepDocument.upsert({
|
|
577
|
+
* create: {
|
|
578
|
+
* // ... data to create a DocumentationStepDocument
|
|
579
|
+
* },
|
|
580
|
+
* update: {
|
|
581
|
+
* // ... in case it already exists, update
|
|
582
|
+
* },
|
|
583
|
+
* where: {
|
|
584
|
+
* // ... the filter for the DocumentationStepDocument we want to update
|
|
585
|
+
* }
|
|
586
|
+
* })
|
|
587
|
+
*/
|
|
588
|
+
upsert<T extends DocumentationStepDocumentUpsertArgs>(args: Prisma.SelectSubset<T, DocumentationStepDocumentUpsertArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepDocumentClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepDocumentPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
589
|
+
/**
|
|
590
|
+
* Count the number of DocumentationStepDocuments.
|
|
591
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
592
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
593
|
+
* @param {DocumentationStepDocumentCountArgs} args - Arguments to filter DocumentationStepDocuments to count.
|
|
594
|
+
* @example
|
|
595
|
+
* // Count the number of DocumentationStepDocuments
|
|
596
|
+
* const count = await prisma.documentationStepDocument.count({
|
|
597
|
+
* where: {
|
|
598
|
+
* // ... the filter for the DocumentationStepDocuments we want to count
|
|
599
|
+
* }
|
|
600
|
+
* })
|
|
601
|
+
**/
|
|
602
|
+
count<T extends DocumentationStepDocumentCountArgs>(args?: Prisma.Subset<T, DocumentationStepDocumentCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], DocumentationStepDocumentCountAggregateOutputType> : number>;
|
|
603
|
+
/**
|
|
604
|
+
* Allows you to perform aggregations operations on a DocumentationStepDocument.
|
|
605
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
606
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
607
|
+
* @param {DocumentationStepDocumentAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
608
|
+
* @example
|
|
609
|
+
* // Ordered by age ascending
|
|
610
|
+
* // Where email contains prisma.io
|
|
611
|
+
* // Limited to the 10 users
|
|
612
|
+
* const aggregations = await prisma.user.aggregate({
|
|
613
|
+
* _avg: {
|
|
614
|
+
* age: true,
|
|
615
|
+
* },
|
|
616
|
+
* where: {
|
|
617
|
+
* email: {
|
|
618
|
+
* contains: "prisma.io",
|
|
619
|
+
* },
|
|
620
|
+
* },
|
|
621
|
+
* orderBy: {
|
|
622
|
+
* age: "asc",
|
|
623
|
+
* },
|
|
624
|
+
* take: 10,
|
|
625
|
+
* })
|
|
626
|
+
**/
|
|
627
|
+
aggregate<T extends DocumentationStepDocumentAggregateArgs>(args: Prisma.Subset<T, DocumentationStepDocumentAggregateArgs>): Prisma.PrismaPromise<GetDocumentationStepDocumentAggregateType<T>>;
|
|
628
|
+
/**
|
|
629
|
+
* Group by DocumentationStepDocument.
|
|
630
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
631
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
632
|
+
* @param {DocumentationStepDocumentGroupByArgs} args - Group by arguments.
|
|
633
|
+
* @example
|
|
634
|
+
* // Group by city, order by createdAt, get count
|
|
635
|
+
* const result = await prisma.user.groupBy({
|
|
636
|
+
* by: ['city', 'createdAt'],
|
|
637
|
+
* orderBy: {
|
|
638
|
+
* createdAt: true
|
|
639
|
+
* },
|
|
640
|
+
* _count: {
|
|
641
|
+
* _all: true
|
|
642
|
+
* },
|
|
643
|
+
* })
|
|
644
|
+
*
|
|
645
|
+
**/
|
|
646
|
+
groupBy<T extends DocumentationStepDocumentGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
647
|
+
orderBy: DocumentationStepDocumentGroupByArgs['orderBy'];
|
|
648
|
+
} : {
|
|
649
|
+
orderBy?: DocumentationStepDocumentGroupByArgs['orderBy'];
|
|
650
|
+
}, OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, ByFields extends Prisma.MaybeTupleToUnion<T['by']>, ByValid extends Prisma.Has<ByFields, OrderFields>, HavingFields extends Prisma.GetHavingFields<T['having']>, HavingValid extends Prisma.Has<ByFields, HavingFields>, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? {
|
|
651
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
652
|
+
Error,
|
|
653
|
+
'Field ',
|
|
654
|
+
P,
|
|
655
|
+
` in "having" needs to be provided in "by"`
|
|
656
|
+
];
|
|
657
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
658
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
659
|
+
}[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
660
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
661
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
662
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
663
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, DocumentationStepDocumentGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetDocumentationStepDocumentGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
664
|
+
/**
|
|
665
|
+
* Fields of the DocumentationStepDocument model
|
|
666
|
+
*/
|
|
667
|
+
readonly fields: DocumentationStepDocumentFieldRefs;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* The delegate class that acts as a "Promise-like" for DocumentationStepDocument.
|
|
671
|
+
* Why is this prefixed with `Prisma__`?
|
|
672
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
673
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
674
|
+
*/
|
|
675
|
+
export interface Prisma__DocumentationStepDocumentClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
676
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
677
|
+
step<T extends Prisma.DocumentationStepDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationStepDefaultArgs<ExtArgs>>): Prisma.Prisma__DocumentationStepClient<runtime.Types.Result.GetResult<Prisma.$DocumentationStepPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
678
|
+
/**
|
|
679
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
680
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
681
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
682
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
683
|
+
*/
|
|
684
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
685
|
+
/**
|
|
686
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
687
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
688
|
+
* @returns A Promise for the completion of the callback.
|
|
689
|
+
*/
|
|
690
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
691
|
+
/**
|
|
692
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
693
|
+
* resolved value cannot be modified from the callback.
|
|
694
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
695
|
+
* @returns A Promise for the completion of the callback.
|
|
696
|
+
*/
|
|
697
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
698
|
+
}
|
|
699
|
+
/**
|
|
700
|
+
* Fields of the DocumentationStepDocument model
|
|
701
|
+
*/
|
|
702
|
+
export interface DocumentationStepDocumentFieldRefs {
|
|
703
|
+
readonly id: Prisma.FieldRef<"DocumentationStepDocument", 'String'>;
|
|
704
|
+
readonly stepId: Prisma.FieldRef<"DocumentationStepDocument", 'String'>;
|
|
705
|
+
readonly documentType: Prisma.FieldRef<"DocumentationStepDocument", 'String'>;
|
|
706
|
+
readonly isRequired: Prisma.FieldRef<"DocumentationStepDocument", 'Boolean'>;
|
|
707
|
+
readonly createdAt: Prisma.FieldRef<"DocumentationStepDocument", 'DateTime'>;
|
|
708
|
+
}
|
|
709
|
+
/**
|
|
710
|
+
* DocumentationStepDocument findUnique
|
|
711
|
+
*/
|
|
712
|
+
export type DocumentationStepDocumentFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
713
|
+
/**
|
|
714
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
715
|
+
*/
|
|
716
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
717
|
+
/**
|
|
718
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
719
|
+
*/
|
|
720
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
721
|
+
/**
|
|
722
|
+
* Choose, which related nodes to fetch as well
|
|
723
|
+
*/
|
|
724
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
725
|
+
/**
|
|
726
|
+
* Filter, which DocumentationStepDocument to fetch.
|
|
727
|
+
*/
|
|
728
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
729
|
+
};
|
|
730
|
+
/**
|
|
731
|
+
* DocumentationStepDocument findUniqueOrThrow
|
|
732
|
+
*/
|
|
733
|
+
export type DocumentationStepDocumentFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
734
|
+
/**
|
|
735
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
736
|
+
*/
|
|
737
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
738
|
+
/**
|
|
739
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
740
|
+
*/
|
|
741
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
742
|
+
/**
|
|
743
|
+
* Choose, which related nodes to fetch as well
|
|
744
|
+
*/
|
|
745
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
746
|
+
/**
|
|
747
|
+
* Filter, which DocumentationStepDocument to fetch.
|
|
748
|
+
*/
|
|
749
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
750
|
+
};
|
|
751
|
+
/**
|
|
752
|
+
* DocumentationStepDocument findFirst
|
|
753
|
+
*/
|
|
754
|
+
export type DocumentationStepDocumentFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
755
|
+
/**
|
|
756
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
757
|
+
*/
|
|
758
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
759
|
+
/**
|
|
760
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
761
|
+
*/
|
|
762
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
763
|
+
/**
|
|
764
|
+
* Choose, which related nodes to fetch as well
|
|
765
|
+
*/
|
|
766
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
767
|
+
/**
|
|
768
|
+
* Filter, which DocumentationStepDocument to fetch.
|
|
769
|
+
*/
|
|
770
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
771
|
+
/**
|
|
772
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
773
|
+
*
|
|
774
|
+
* Determine the order of DocumentationStepDocuments to fetch.
|
|
775
|
+
*/
|
|
776
|
+
orderBy?: Prisma.DocumentationStepDocumentOrderByWithRelationInput | Prisma.DocumentationStepDocumentOrderByWithRelationInput[];
|
|
777
|
+
/**
|
|
778
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
779
|
+
*
|
|
780
|
+
* Sets the position for searching for DocumentationStepDocuments.
|
|
781
|
+
*/
|
|
782
|
+
cursor?: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
783
|
+
/**
|
|
784
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
785
|
+
*
|
|
786
|
+
* Take `±n` DocumentationStepDocuments from the position of the cursor.
|
|
787
|
+
*/
|
|
788
|
+
take?: number;
|
|
789
|
+
/**
|
|
790
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
791
|
+
*
|
|
792
|
+
* Skip the first `n` DocumentationStepDocuments.
|
|
793
|
+
*/
|
|
794
|
+
skip?: number;
|
|
795
|
+
/**
|
|
796
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
797
|
+
*
|
|
798
|
+
* Filter by unique combinations of DocumentationStepDocuments.
|
|
799
|
+
*/
|
|
800
|
+
distinct?: Prisma.DocumentationStepDocumentScalarFieldEnum | Prisma.DocumentationStepDocumentScalarFieldEnum[];
|
|
801
|
+
};
|
|
802
|
+
/**
|
|
803
|
+
* DocumentationStepDocument findFirstOrThrow
|
|
804
|
+
*/
|
|
805
|
+
export type DocumentationStepDocumentFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
806
|
+
/**
|
|
807
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
808
|
+
*/
|
|
809
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
810
|
+
/**
|
|
811
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
812
|
+
*/
|
|
813
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
814
|
+
/**
|
|
815
|
+
* Choose, which related nodes to fetch as well
|
|
816
|
+
*/
|
|
817
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
818
|
+
/**
|
|
819
|
+
* Filter, which DocumentationStepDocument to fetch.
|
|
820
|
+
*/
|
|
821
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
822
|
+
/**
|
|
823
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
824
|
+
*
|
|
825
|
+
* Determine the order of DocumentationStepDocuments to fetch.
|
|
826
|
+
*/
|
|
827
|
+
orderBy?: Prisma.DocumentationStepDocumentOrderByWithRelationInput | Prisma.DocumentationStepDocumentOrderByWithRelationInput[];
|
|
828
|
+
/**
|
|
829
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
830
|
+
*
|
|
831
|
+
* Sets the position for searching for DocumentationStepDocuments.
|
|
832
|
+
*/
|
|
833
|
+
cursor?: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
834
|
+
/**
|
|
835
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
836
|
+
*
|
|
837
|
+
* Take `±n` DocumentationStepDocuments from the position of the cursor.
|
|
838
|
+
*/
|
|
839
|
+
take?: number;
|
|
840
|
+
/**
|
|
841
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
842
|
+
*
|
|
843
|
+
* Skip the first `n` DocumentationStepDocuments.
|
|
844
|
+
*/
|
|
845
|
+
skip?: number;
|
|
846
|
+
/**
|
|
847
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
848
|
+
*
|
|
849
|
+
* Filter by unique combinations of DocumentationStepDocuments.
|
|
850
|
+
*/
|
|
851
|
+
distinct?: Prisma.DocumentationStepDocumentScalarFieldEnum | Prisma.DocumentationStepDocumentScalarFieldEnum[];
|
|
852
|
+
};
|
|
853
|
+
/**
|
|
854
|
+
* DocumentationStepDocument findMany
|
|
855
|
+
*/
|
|
856
|
+
export type DocumentationStepDocumentFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
857
|
+
/**
|
|
858
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
859
|
+
*/
|
|
860
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
861
|
+
/**
|
|
862
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
863
|
+
*/
|
|
864
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
865
|
+
/**
|
|
866
|
+
* Choose, which related nodes to fetch as well
|
|
867
|
+
*/
|
|
868
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
869
|
+
/**
|
|
870
|
+
* Filter, which DocumentationStepDocuments to fetch.
|
|
871
|
+
*/
|
|
872
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
873
|
+
/**
|
|
874
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
875
|
+
*
|
|
876
|
+
* Determine the order of DocumentationStepDocuments to fetch.
|
|
877
|
+
*/
|
|
878
|
+
orderBy?: Prisma.DocumentationStepDocumentOrderByWithRelationInput | Prisma.DocumentationStepDocumentOrderByWithRelationInput[];
|
|
879
|
+
/**
|
|
880
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
881
|
+
*
|
|
882
|
+
* Sets the position for listing DocumentationStepDocuments.
|
|
883
|
+
*/
|
|
884
|
+
cursor?: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
885
|
+
/**
|
|
886
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
887
|
+
*
|
|
888
|
+
* Take `±n` DocumentationStepDocuments from the position of the cursor.
|
|
889
|
+
*/
|
|
890
|
+
take?: number;
|
|
891
|
+
/**
|
|
892
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
893
|
+
*
|
|
894
|
+
* Skip the first `n` DocumentationStepDocuments.
|
|
895
|
+
*/
|
|
896
|
+
skip?: number;
|
|
897
|
+
distinct?: Prisma.DocumentationStepDocumentScalarFieldEnum | Prisma.DocumentationStepDocumentScalarFieldEnum[];
|
|
898
|
+
};
|
|
899
|
+
/**
|
|
900
|
+
* DocumentationStepDocument create
|
|
901
|
+
*/
|
|
902
|
+
export type DocumentationStepDocumentCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
903
|
+
/**
|
|
904
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
905
|
+
*/
|
|
906
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
907
|
+
/**
|
|
908
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
909
|
+
*/
|
|
910
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
911
|
+
/**
|
|
912
|
+
* Choose, which related nodes to fetch as well
|
|
913
|
+
*/
|
|
914
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
915
|
+
/**
|
|
916
|
+
* The data needed to create a DocumentationStepDocument.
|
|
917
|
+
*/
|
|
918
|
+
data: Prisma.XOR<Prisma.DocumentationStepDocumentCreateInput, Prisma.DocumentationStepDocumentUncheckedCreateInput>;
|
|
919
|
+
};
|
|
920
|
+
/**
|
|
921
|
+
* DocumentationStepDocument createMany
|
|
922
|
+
*/
|
|
923
|
+
export type DocumentationStepDocumentCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
924
|
+
/**
|
|
925
|
+
* The data used to create many DocumentationStepDocuments.
|
|
926
|
+
*/
|
|
927
|
+
data: Prisma.DocumentationStepDocumentCreateManyInput | Prisma.DocumentationStepDocumentCreateManyInput[];
|
|
928
|
+
skipDuplicates?: boolean;
|
|
929
|
+
};
|
|
930
|
+
/**
|
|
931
|
+
* DocumentationStepDocument update
|
|
932
|
+
*/
|
|
933
|
+
export type DocumentationStepDocumentUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
934
|
+
/**
|
|
935
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
936
|
+
*/
|
|
937
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
938
|
+
/**
|
|
939
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
940
|
+
*/
|
|
941
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
942
|
+
/**
|
|
943
|
+
* Choose, which related nodes to fetch as well
|
|
944
|
+
*/
|
|
945
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
946
|
+
/**
|
|
947
|
+
* The data needed to update a DocumentationStepDocument.
|
|
948
|
+
*/
|
|
949
|
+
data: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateInput, Prisma.DocumentationStepDocumentUncheckedUpdateInput>;
|
|
950
|
+
/**
|
|
951
|
+
* Choose, which DocumentationStepDocument to update.
|
|
952
|
+
*/
|
|
953
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
954
|
+
};
|
|
955
|
+
/**
|
|
956
|
+
* DocumentationStepDocument updateMany
|
|
957
|
+
*/
|
|
958
|
+
export type DocumentationStepDocumentUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
959
|
+
/**
|
|
960
|
+
* The data used to update DocumentationStepDocuments.
|
|
961
|
+
*/
|
|
962
|
+
data: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateManyMutationInput, Prisma.DocumentationStepDocumentUncheckedUpdateManyInput>;
|
|
963
|
+
/**
|
|
964
|
+
* Filter which DocumentationStepDocuments to update
|
|
965
|
+
*/
|
|
966
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
967
|
+
/**
|
|
968
|
+
* Limit how many DocumentationStepDocuments to update.
|
|
969
|
+
*/
|
|
970
|
+
limit?: number;
|
|
971
|
+
};
|
|
972
|
+
/**
|
|
973
|
+
* DocumentationStepDocument upsert
|
|
974
|
+
*/
|
|
975
|
+
export type DocumentationStepDocumentUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
976
|
+
/**
|
|
977
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
978
|
+
*/
|
|
979
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
980
|
+
/**
|
|
981
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
982
|
+
*/
|
|
983
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
984
|
+
/**
|
|
985
|
+
* Choose, which related nodes to fetch as well
|
|
986
|
+
*/
|
|
987
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
988
|
+
/**
|
|
989
|
+
* The filter to search for the DocumentationStepDocument to update in case it exists.
|
|
990
|
+
*/
|
|
991
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
992
|
+
/**
|
|
993
|
+
* In case the DocumentationStepDocument found by the `where` argument doesn't exist, create a new DocumentationStepDocument with this data.
|
|
994
|
+
*/
|
|
995
|
+
create: Prisma.XOR<Prisma.DocumentationStepDocumentCreateInput, Prisma.DocumentationStepDocumentUncheckedCreateInput>;
|
|
996
|
+
/**
|
|
997
|
+
* In case the DocumentationStepDocument was found with the provided `where` argument, update it with this data.
|
|
998
|
+
*/
|
|
999
|
+
update: Prisma.XOR<Prisma.DocumentationStepDocumentUpdateInput, Prisma.DocumentationStepDocumentUncheckedUpdateInput>;
|
|
1000
|
+
};
|
|
1001
|
+
/**
|
|
1002
|
+
* DocumentationStepDocument delete
|
|
1003
|
+
*/
|
|
1004
|
+
export type DocumentationStepDocumentDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1005
|
+
/**
|
|
1006
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
1007
|
+
*/
|
|
1008
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
1009
|
+
/**
|
|
1010
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
1011
|
+
*/
|
|
1012
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
1013
|
+
/**
|
|
1014
|
+
* Choose, which related nodes to fetch as well
|
|
1015
|
+
*/
|
|
1016
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
1017
|
+
/**
|
|
1018
|
+
* Filter which DocumentationStepDocument to delete.
|
|
1019
|
+
*/
|
|
1020
|
+
where: Prisma.DocumentationStepDocumentWhereUniqueInput;
|
|
1021
|
+
};
|
|
1022
|
+
/**
|
|
1023
|
+
* DocumentationStepDocument deleteMany
|
|
1024
|
+
*/
|
|
1025
|
+
export type DocumentationStepDocumentDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1026
|
+
/**
|
|
1027
|
+
* Filter which DocumentationStepDocuments to delete
|
|
1028
|
+
*/
|
|
1029
|
+
where?: Prisma.DocumentationStepDocumentWhereInput;
|
|
1030
|
+
/**
|
|
1031
|
+
* Limit how many DocumentationStepDocuments to delete.
|
|
1032
|
+
*/
|
|
1033
|
+
limit?: number;
|
|
1034
|
+
};
|
|
1035
|
+
/**
|
|
1036
|
+
* DocumentationStepDocument without action
|
|
1037
|
+
*/
|
|
1038
|
+
export type DocumentationStepDocumentDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1039
|
+
/**
|
|
1040
|
+
* Select specific fields to fetch from the DocumentationStepDocument
|
|
1041
|
+
*/
|
|
1042
|
+
select?: Prisma.DocumentationStepDocumentSelect<ExtArgs> | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* Omit specific fields from the DocumentationStepDocument
|
|
1045
|
+
*/
|
|
1046
|
+
omit?: Prisma.DocumentationStepDocumentOmit<ExtArgs> | null;
|
|
1047
|
+
/**
|
|
1048
|
+
* Choose, which related nodes to fetch as well
|
|
1049
|
+
*/
|
|
1050
|
+
include?: Prisma.DocumentationStepDocumentInclude<ExtArgs> | null;
|
|
1051
|
+
};
|
|
1052
|
+
export {};
|