@naisys/erp 3.0.0-beta.3
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.
Potentially problematic release.
This version of @naisys/erp might be problematic. Click here for more details.
- package/bin/naisys-erp +2 -0
- package/client-dist/android-chrome-192x192.png +0 -0
- package/client-dist/android-chrome-512x512.png +0 -0
- package/client-dist/apple-touch-icon.png +0 -0
- package/client-dist/assets/index-45dVo30p.css +1 -0
- package/client-dist/assets/index-Dffms7F_.js +168 -0
- package/client-dist/assets/naisys-logo-CzoPnn5I.webp +0 -0
- package/client-dist/favicon.ico +0 -0
- package/client-dist/index.html +42 -0
- package/client-dist/site.webmanifest +22 -0
- package/dist/api-reference.d.ts +10 -0
- package/dist/api-reference.js +101 -0
- package/dist/audit.d.ts +5 -0
- package/dist/audit.js +14 -0
- package/dist/auth-middleware.d.ts +18 -0
- package/dist/auth-middleware.js +203 -0
- package/dist/dbConfig.d.ts +5 -0
- package/dist/dbConfig.js +10 -0
- package/dist/erpDb.d.ts +10 -0
- package/dist/erpDb.js +34 -0
- package/dist/erpServer.d.ts +10 -0
- package/dist/erpServer.js +321 -0
- package/dist/error-handler.d.ts +7 -0
- package/dist/error-handler.js +17 -0
- package/dist/generated/prisma/client.d.ts +154 -0
- package/dist/generated/prisma/client.js +35 -0
- package/dist/generated/prisma/commonInputTypes.d.ts +637 -0
- package/dist/generated/prisma/commonInputTypes.js +11 -0
- package/dist/generated/prisma/enums.d.ts +59 -0
- package/dist/generated/prisma/enums.js +60 -0
- package/dist/generated/prisma/internal/class.d.ts +406 -0
- package/dist/generated/prisma/internal/class.js +50 -0
- package/dist/generated/prisma/internal/prismaNamespace.d.ts +2722 -0
- package/dist/generated/prisma/internal/prismaNamespace.js +366 -0
- package/dist/generated/prisma/models/Attachment.d.ts +1455 -0
- package/dist/generated/prisma/models/Attachment.js +2 -0
- package/dist/generated/prisma/models/AuditLog.d.ts +1359 -0
- package/dist/generated/prisma/models/AuditLog.js +2 -0
- package/dist/generated/prisma/models/Field.d.ts +1880 -0
- package/dist/generated/prisma/models/Field.js +2 -0
- package/dist/generated/prisma/models/FieldAttachment.d.ts +1245 -0
- package/dist/generated/prisma/models/FieldAttachment.js +2 -0
- package/dist/generated/prisma/models/FieldRecord.d.ts +1625 -0
- package/dist/generated/prisma/models/FieldRecord.js +2 -0
- package/dist/generated/prisma/models/FieldSet.d.ts +1577 -0
- package/dist/generated/prisma/models/FieldSet.js +2 -0
- package/dist/generated/prisma/models/FieldValue.d.ts +1908 -0
- package/dist/generated/prisma/models/FieldValue.js +2 -0
- package/dist/generated/prisma/models/Item.d.ts +1858 -0
- package/dist/generated/prisma/models/Item.js +2 -0
- package/dist/generated/prisma/models/ItemInstance.d.ts +1987 -0
- package/dist/generated/prisma/models/ItemInstance.js +2 -0
- package/dist/generated/prisma/models/LaborTicket.d.ts +1867 -0
- package/dist/generated/prisma/models/LaborTicket.js +2 -0
- package/dist/generated/prisma/models/Operation.d.ts +2578 -0
- package/dist/generated/prisma/models/Operation.js +2 -0
- package/dist/generated/prisma/models/OperationDependency.d.ts +1434 -0
- package/dist/generated/prisma/models/OperationDependency.js +2 -0
- package/dist/generated/prisma/models/OperationFieldRef.d.ts +1539 -0
- package/dist/generated/prisma/models/OperationFieldRef.js +2 -0
- package/dist/generated/prisma/models/OperationRun.d.ts +2563 -0
- package/dist/generated/prisma/models/OperationRun.js +2 -0
- package/dist/generated/prisma/models/OperationRunComment.d.ts +1366 -0
- package/dist/generated/prisma/models/OperationRunComment.js +2 -0
- package/dist/generated/prisma/models/Order.d.ts +1931 -0
- package/dist/generated/prisma/models/Order.js +2 -0
- package/dist/generated/prisma/models/OrderRevision.d.ts +1962 -0
- package/dist/generated/prisma/models/OrderRevision.js +2 -0
- package/dist/generated/prisma/models/OrderRun.d.ts +2310 -0
- package/dist/generated/prisma/models/OrderRun.js +2 -0
- package/dist/generated/prisma/models/SchemaVersion.d.ts +985 -0
- package/dist/generated/prisma/models/SchemaVersion.js +2 -0
- package/dist/generated/prisma/models/Session.d.ts +1213 -0
- package/dist/generated/prisma/models/Session.js +2 -0
- package/dist/generated/prisma/models/Step.d.ts +2180 -0
- package/dist/generated/prisma/models/Step.js +2 -0
- package/dist/generated/prisma/models/StepRun.d.ts +1963 -0
- package/dist/generated/prisma/models/StepRun.js +2 -0
- package/dist/generated/prisma/models/User.d.ts +11819 -0
- package/dist/generated/prisma/models/User.js +2 -0
- package/dist/generated/prisma/models/UserPermission.d.ts +1348 -0
- package/dist/generated/prisma/models/UserPermission.js +2 -0
- package/dist/generated/prisma/models/WorkCenter.d.ts +1657 -0
- package/dist/generated/prisma/models/WorkCenter.js +2 -0
- package/dist/generated/prisma/models/WorkCenterUser.d.ts +1390 -0
- package/dist/generated/prisma/models/WorkCenterUser.js +2 -0
- package/dist/generated/prisma/models.d.ts +28 -0
- package/dist/generated/prisma/models.js +2 -0
- package/dist/hateoas.d.ts +7 -0
- package/dist/hateoas.js +61 -0
- package/dist/route-helpers.d.ts +318 -0
- package/dist/route-helpers.js +220 -0
- package/dist/routes/admin.d.ts +3 -0
- package/dist/routes/admin.js +147 -0
- package/dist/routes/audit.d.ts +3 -0
- package/dist/routes/audit.js +36 -0
- package/dist/routes/auth.d.ts +3 -0
- package/dist/routes/auth.js +112 -0
- package/dist/routes/dispatch.d.ts +3 -0
- package/dist/routes/dispatch.js +174 -0
- package/dist/routes/inventory.d.ts +3 -0
- package/dist/routes/inventory.js +70 -0
- package/dist/routes/item-fields.d.ts +3 -0
- package/dist/routes/item-fields.js +220 -0
- package/dist/routes/item-instances.d.ts +3 -0
- package/dist/routes/item-instances.js +426 -0
- package/dist/routes/items.d.ts +3 -0
- package/dist/routes/items.js +252 -0
- package/dist/routes/labor-tickets.d.ts +3 -0
- package/dist/routes/labor-tickets.js +268 -0
- package/dist/routes/operation-dependencies.d.ts +3 -0
- package/dist/routes/operation-dependencies.js +170 -0
- package/dist/routes/operation-field-refs.d.ts +3 -0
- package/dist/routes/operation-field-refs.js +263 -0
- package/dist/routes/operation-run-comments.d.ts +3 -0
- package/dist/routes/operation-run-comments.js +108 -0
- package/dist/routes/operation-run-transitions.d.ts +3 -0
- package/dist/routes/operation-run-transitions.js +249 -0
- package/dist/routes/operation-runs.d.ts +112 -0
- package/dist/routes/operation-runs.js +299 -0
- package/dist/routes/operations.d.ts +3 -0
- package/dist/routes/operations.js +283 -0
- package/dist/routes/order-revision-transitions.d.ts +3 -0
- package/dist/routes/order-revision-transitions.js +86 -0
- package/dist/routes/order-revisions.d.ts +51 -0
- package/dist/routes/order-revisions.js +327 -0
- package/dist/routes/order-run-transitions.d.ts +3 -0
- package/dist/routes/order-run-transitions.js +215 -0
- package/dist/routes/order-runs.d.ts +58 -0
- package/dist/routes/order-runs.js +335 -0
- package/dist/routes/orders.d.ts +3 -0
- package/dist/routes/orders.js +262 -0
- package/dist/routes/root.d.ts +3 -0
- package/dist/routes/root.js +123 -0
- package/dist/routes/schemas.d.ts +3 -0
- package/dist/routes/schemas.js +31 -0
- package/dist/routes/step-field-attachments.d.ts +3 -0
- package/dist/routes/step-field-attachments.js +231 -0
- package/dist/routes/step-fields.d.ts +100 -0
- package/dist/routes/step-fields.js +315 -0
- package/dist/routes/step-run-fields.d.ts +3 -0
- package/dist/routes/step-run-fields.js +438 -0
- package/dist/routes/step-run-transitions.d.ts +3 -0
- package/dist/routes/step-run-transitions.js +113 -0
- package/dist/routes/step-runs.d.ts +332 -0
- package/dist/routes/step-runs.js +324 -0
- package/dist/routes/steps.d.ts +3 -0
- package/dist/routes/steps.js +283 -0
- package/dist/routes/user-permissions.d.ts +3 -0
- package/dist/routes/user-permissions.js +100 -0
- package/dist/routes/users.d.ts +57 -0
- package/dist/routes/users.js +381 -0
- package/dist/routes/work-centers.d.ts +3 -0
- package/dist/routes/work-centers.js +280 -0
- package/dist/schema-registry.d.ts +3 -0
- package/dist/schema-registry.js +45 -0
- package/dist/services/attachment-service.d.ts +33 -0
- package/dist/services/attachment-service.js +118 -0
- package/dist/services/field-ref-service.d.ts +96 -0
- package/dist/services/field-ref-service.js +74 -0
- package/dist/services/field-service.d.ts +49 -0
- package/dist/services/field-service.js +114 -0
- package/dist/services/field-value-service.d.ts +61 -0
- package/dist/services/field-value-service.js +256 -0
- package/dist/services/item-instance-service.d.ts +152 -0
- package/dist/services/item-instance-service.js +155 -0
- package/dist/services/item-service.d.ts +47 -0
- package/dist/services/item-service.js +56 -0
- package/dist/services/labor-ticket-service.d.ts +40 -0
- package/dist/services/labor-ticket-service.js +148 -0
- package/dist/services/log-file-service.d.ts +4 -0
- package/dist/services/log-file-service.js +11 -0
- package/dist/services/operation-dependency-service.d.ts +33 -0
- package/dist/services/operation-dependency-service.js +30 -0
- package/dist/services/operation-run-comment-service.d.ts +17 -0
- package/dist/services/operation-run-comment-service.js +26 -0
- package/dist/services/operation-run-service.d.ts +126 -0
- package/dist/services/operation-run-service.js +347 -0
- package/dist/services/operation-service.d.ts +47 -0
- package/dist/services/operation-service.js +132 -0
- package/dist/services/order-revision-service.d.ts +53 -0
- package/dist/services/order-revision-service.js +264 -0
- package/dist/services/order-run-service.d.ts +138 -0
- package/dist/services/order-run-service.js +356 -0
- package/dist/services/order-service.d.ts +15 -0
- package/dist/services/order-service.js +68 -0
- package/dist/services/revision-diff-service.d.ts +3 -0
- package/dist/services/revision-diff-service.js +194 -0
- package/dist/services/step-run-service.d.ts +172 -0
- package/dist/services/step-run-service.js +106 -0
- package/dist/services/step-service.d.ts +104 -0
- package/dist/services/step-service.js +89 -0
- package/dist/services/user-service.d.ts +185 -0
- package/dist/services/user-service.js +132 -0
- package/dist/services/work-center-service.d.ts +29 -0
- package/dist/services/work-center-service.js +106 -0
- package/dist/supervisorAuth.d.ts +3 -0
- package/dist/supervisorAuth.js +16 -0
- package/dist/userService.d.ts +20 -0
- package/dist/userService.js +118 -0
- package/package.json +69 -0
|
@@ -0,0 +1,1962 @@
|
|
|
1
|
+
import type * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as $Enums from "../enums.js";
|
|
3
|
+
import type * as Prisma from "../internal/prismaNamespace.js";
|
|
4
|
+
/**
|
|
5
|
+
* Model OrderRevision
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export type OrderRevisionModel = runtime.Types.Result.DefaultSelection<Prisma.$OrderRevisionPayload>;
|
|
9
|
+
export type AggregateOrderRevision = {
|
|
10
|
+
_count: OrderRevisionCountAggregateOutputType | null;
|
|
11
|
+
_avg: OrderRevisionAvgAggregateOutputType | null;
|
|
12
|
+
_sum: OrderRevisionSumAggregateOutputType | null;
|
|
13
|
+
_min: OrderRevisionMinAggregateOutputType | null;
|
|
14
|
+
_max: OrderRevisionMaxAggregateOutputType | null;
|
|
15
|
+
};
|
|
16
|
+
export type OrderRevisionAvgAggregateOutputType = {
|
|
17
|
+
id: number | null;
|
|
18
|
+
orderId: number | null;
|
|
19
|
+
revNo: number | null;
|
|
20
|
+
createdById: number | null;
|
|
21
|
+
updatedById: number | null;
|
|
22
|
+
};
|
|
23
|
+
export type OrderRevisionSumAggregateOutputType = {
|
|
24
|
+
id: number | null;
|
|
25
|
+
orderId: number | null;
|
|
26
|
+
revNo: number | null;
|
|
27
|
+
createdById: number | null;
|
|
28
|
+
updatedById: number | null;
|
|
29
|
+
};
|
|
30
|
+
export type OrderRevisionMinAggregateOutputType = {
|
|
31
|
+
id: number | null;
|
|
32
|
+
orderId: number | null;
|
|
33
|
+
revNo: number | null;
|
|
34
|
+
status: $Enums.RevisionStatus | null;
|
|
35
|
+
description: string | null;
|
|
36
|
+
changeSummary: string | null;
|
|
37
|
+
createdAt: Date | null;
|
|
38
|
+
createdById: number | null;
|
|
39
|
+
updatedAt: Date | null;
|
|
40
|
+
updatedById: number | null;
|
|
41
|
+
};
|
|
42
|
+
export type OrderRevisionMaxAggregateOutputType = {
|
|
43
|
+
id: number | null;
|
|
44
|
+
orderId: number | null;
|
|
45
|
+
revNo: number | null;
|
|
46
|
+
status: $Enums.RevisionStatus | null;
|
|
47
|
+
description: string | null;
|
|
48
|
+
changeSummary: string | null;
|
|
49
|
+
createdAt: Date | null;
|
|
50
|
+
createdById: number | null;
|
|
51
|
+
updatedAt: Date | null;
|
|
52
|
+
updatedById: number | null;
|
|
53
|
+
};
|
|
54
|
+
export type OrderRevisionCountAggregateOutputType = {
|
|
55
|
+
id: number;
|
|
56
|
+
orderId: number;
|
|
57
|
+
revNo: number;
|
|
58
|
+
status: number;
|
|
59
|
+
description: number;
|
|
60
|
+
changeSummary: number;
|
|
61
|
+
createdAt: number;
|
|
62
|
+
createdById: number;
|
|
63
|
+
updatedAt: number;
|
|
64
|
+
updatedById: number;
|
|
65
|
+
_all: number;
|
|
66
|
+
};
|
|
67
|
+
export type OrderRevisionAvgAggregateInputType = {
|
|
68
|
+
id?: true;
|
|
69
|
+
orderId?: true;
|
|
70
|
+
revNo?: true;
|
|
71
|
+
createdById?: true;
|
|
72
|
+
updatedById?: true;
|
|
73
|
+
};
|
|
74
|
+
export type OrderRevisionSumAggregateInputType = {
|
|
75
|
+
id?: true;
|
|
76
|
+
orderId?: true;
|
|
77
|
+
revNo?: true;
|
|
78
|
+
createdById?: true;
|
|
79
|
+
updatedById?: true;
|
|
80
|
+
};
|
|
81
|
+
export type OrderRevisionMinAggregateInputType = {
|
|
82
|
+
id?: true;
|
|
83
|
+
orderId?: true;
|
|
84
|
+
revNo?: true;
|
|
85
|
+
status?: true;
|
|
86
|
+
description?: true;
|
|
87
|
+
changeSummary?: true;
|
|
88
|
+
createdAt?: true;
|
|
89
|
+
createdById?: true;
|
|
90
|
+
updatedAt?: true;
|
|
91
|
+
updatedById?: true;
|
|
92
|
+
};
|
|
93
|
+
export type OrderRevisionMaxAggregateInputType = {
|
|
94
|
+
id?: true;
|
|
95
|
+
orderId?: true;
|
|
96
|
+
revNo?: true;
|
|
97
|
+
status?: true;
|
|
98
|
+
description?: true;
|
|
99
|
+
changeSummary?: true;
|
|
100
|
+
createdAt?: true;
|
|
101
|
+
createdById?: true;
|
|
102
|
+
updatedAt?: true;
|
|
103
|
+
updatedById?: true;
|
|
104
|
+
};
|
|
105
|
+
export type OrderRevisionCountAggregateInputType = {
|
|
106
|
+
id?: true;
|
|
107
|
+
orderId?: true;
|
|
108
|
+
revNo?: true;
|
|
109
|
+
status?: true;
|
|
110
|
+
description?: true;
|
|
111
|
+
changeSummary?: true;
|
|
112
|
+
createdAt?: true;
|
|
113
|
+
createdById?: true;
|
|
114
|
+
updatedAt?: true;
|
|
115
|
+
updatedById?: true;
|
|
116
|
+
_all?: true;
|
|
117
|
+
};
|
|
118
|
+
export type OrderRevisionAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
119
|
+
/**
|
|
120
|
+
* Filter which OrderRevision to aggregate.
|
|
121
|
+
*/
|
|
122
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
123
|
+
/**
|
|
124
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
125
|
+
*
|
|
126
|
+
* Determine the order of OrderRevisions to fetch.
|
|
127
|
+
*/
|
|
128
|
+
orderBy?: Prisma.OrderRevisionOrderByWithRelationInput | Prisma.OrderRevisionOrderByWithRelationInput[];
|
|
129
|
+
/**
|
|
130
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
131
|
+
*
|
|
132
|
+
* Sets the start position
|
|
133
|
+
*/
|
|
134
|
+
cursor?: Prisma.OrderRevisionWhereUniqueInput;
|
|
135
|
+
/**
|
|
136
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
137
|
+
*
|
|
138
|
+
* Take `±n` OrderRevisions from the position of the cursor.
|
|
139
|
+
*/
|
|
140
|
+
take?: number;
|
|
141
|
+
/**
|
|
142
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
143
|
+
*
|
|
144
|
+
* Skip the first `n` OrderRevisions.
|
|
145
|
+
*/
|
|
146
|
+
skip?: number;
|
|
147
|
+
/**
|
|
148
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
149
|
+
*
|
|
150
|
+
* Count returned OrderRevisions
|
|
151
|
+
**/
|
|
152
|
+
_count?: true | OrderRevisionCountAggregateInputType;
|
|
153
|
+
/**
|
|
154
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
155
|
+
*
|
|
156
|
+
* Select which fields to average
|
|
157
|
+
**/
|
|
158
|
+
_avg?: OrderRevisionAvgAggregateInputType;
|
|
159
|
+
/**
|
|
160
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
161
|
+
*
|
|
162
|
+
* Select which fields to sum
|
|
163
|
+
**/
|
|
164
|
+
_sum?: OrderRevisionSumAggregateInputType;
|
|
165
|
+
/**
|
|
166
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
167
|
+
*
|
|
168
|
+
* Select which fields to find the minimum value
|
|
169
|
+
**/
|
|
170
|
+
_min?: OrderRevisionMinAggregateInputType;
|
|
171
|
+
/**
|
|
172
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
173
|
+
*
|
|
174
|
+
* Select which fields to find the maximum value
|
|
175
|
+
**/
|
|
176
|
+
_max?: OrderRevisionMaxAggregateInputType;
|
|
177
|
+
};
|
|
178
|
+
export type GetOrderRevisionAggregateType<T extends OrderRevisionAggregateArgs> = {
|
|
179
|
+
[P in keyof T & keyof AggregateOrderRevision]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType<T[P], AggregateOrderRevision[P]> : Prisma.GetScalarType<T[P], AggregateOrderRevision[P]>;
|
|
180
|
+
};
|
|
181
|
+
export type OrderRevisionGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
182
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
183
|
+
orderBy?: Prisma.OrderRevisionOrderByWithAggregationInput | Prisma.OrderRevisionOrderByWithAggregationInput[];
|
|
184
|
+
by: Prisma.OrderRevisionScalarFieldEnum[] | Prisma.OrderRevisionScalarFieldEnum;
|
|
185
|
+
having?: Prisma.OrderRevisionScalarWhereWithAggregatesInput;
|
|
186
|
+
take?: number;
|
|
187
|
+
skip?: number;
|
|
188
|
+
_count?: OrderRevisionCountAggregateInputType | true;
|
|
189
|
+
_avg?: OrderRevisionAvgAggregateInputType;
|
|
190
|
+
_sum?: OrderRevisionSumAggregateInputType;
|
|
191
|
+
_min?: OrderRevisionMinAggregateInputType;
|
|
192
|
+
_max?: OrderRevisionMaxAggregateInputType;
|
|
193
|
+
};
|
|
194
|
+
export type OrderRevisionGroupByOutputType = {
|
|
195
|
+
id: number;
|
|
196
|
+
orderId: number;
|
|
197
|
+
revNo: number;
|
|
198
|
+
status: $Enums.RevisionStatus;
|
|
199
|
+
description: string;
|
|
200
|
+
changeSummary: string | null;
|
|
201
|
+
createdAt: Date;
|
|
202
|
+
createdById: number;
|
|
203
|
+
updatedAt: Date;
|
|
204
|
+
updatedById: number;
|
|
205
|
+
_count: OrderRevisionCountAggregateOutputType | null;
|
|
206
|
+
_avg: OrderRevisionAvgAggregateOutputType | null;
|
|
207
|
+
_sum: OrderRevisionSumAggregateOutputType | null;
|
|
208
|
+
_min: OrderRevisionMinAggregateOutputType | null;
|
|
209
|
+
_max: OrderRevisionMaxAggregateOutputType | null;
|
|
210
|
+
};
|
|
211
|
+
type GetOrderRevisionGroupByPayload<T extends OrderRevisionGroupByArgs> = Prisma.PrismaPromise<Array<Prisma.PickEnumerable<OrderRevisionGroupByOutputType, T['by']> & {
|
|
212
|
+
[P in ((keyof T) & (keyof OrderRevisionGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType<T[P], OrderRevisionGroupByOutputType[P]> : Prisma.GetScalarType<T[P], OrderRevisionGroupByOutputType[P]>;
|
|
213
|
+
}>>;
|
|
214
|
+
export type OrderRevisionWhereInput = {
|
|
215
|
+
AND?: Prisma.OrderRevisionWhereInput | Prisma.OrderRevisionWhereInput[];
|
|
216
|
+
OR?: Prisma.OrderRevisionWhereInput[];
|
|
217
|
+
NOT?: Prisma.OrderRevisionWhereInput | Prisma.OrderRevisionWhereInput[];
|
|
218
|
+
id?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
219
|
+
orderId?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
220
|
+
revNo?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
221
|
+
status?: Prisma.EnumRevisionStatusFilter<"OrderRevision"> | $Enums.RevisionStatus;
|
|
222
|
+
description?: Prisma.StringFilter<"OrderRevision"> | string;
|
|
223
|
+
changeSummary?: Prisma.StringNullableFilter<"OrderRevision"> | string | null;
|
|
224
|
+
createdAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
225
|
+
createdById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
226
|
+
updatedAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
227
|
+
updatedById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
228
|
+
createdBy?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
229
|
+
updatedBy?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
230
|
+
order?: Prisma.XOR<Prisma.OrderScalarRelationFilter, Prisma.OrderWhereInput>;
|
|
231
|
+
orderRuns?: Prisma.OrderRunListRelationFilter;
|
|
232
|
+
operations?: Prisma.OperationListRelationFilter;
|
|
233
|
+
};
|
|
234
|
+
export type OrderRevisionOrderByWithRelationInput = {
|
|
235
|
+
id?: Prisma.SortOrder;
|
|
236
|
+
orderId?: Prisma.SortOrder;
|
|
237
|
+
revNo?: Prisma.SortOrder;
|
|
238
|
+
status?: Prisma.SortOrder;
|
|
239
|
+
description?: Prisma.SortOrder;
|
|
240
|
+
changeSummary?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
241
|
+
createdAt?: Prisma.SortOrder;
|
|
242
|
+
createdById?: Prisma.SortOrder;
|
|
243
|
+
updatedAt?: Prisma.SortOrder;
|
|
244
|
+
updatedById?: Prisma.SortOrder;
|
|
245
|
+
createdBy?: Prisma.UserOrderByWithRelationInput;
|
|
246
|
+
updatedBy?: Prisma.UserOrderByWithRelationInput;
|
|
247
|
+
order?: Prisma.OrderOrderByWithRelationInput;
|
|
248
|
+
orderRuns?: Prisma.OrderRunOrderByRelationAggregateInput;
|
|
249
|
+
operations?: Prisma.OperationOrderByRelationAggregateInput;
|
|
250
|
+
};
|
|
251
|
+
export type OrderRevisionWhereUniqueInput = Prisma.AtLeast<{
|
|
252
|
+
id?: number;
|
|
253
|
+
orderId_revNo?: Prisma.OrderRevisionOrderIdRevNoCompoundUniqueInput;
|
|
254
|
+
AND?: Prisma.OrderRevisionWhereInput | Prisma.OrderRevisionWhereInput[];
|
|
255
|
+
OR?: Prisma.OrderRevisionWhereInput[];
|
|
256
|
+
NOT?: Prisma.OrderRevisionWhereInput | Prisma.OrderRevisionWhereInput[];
|
|
257
|
+
orderId?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
258
|
+
revNo?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
259
|
+
status?: Prisma.EnumRevisionStatusFilter<"OrderRevision"> | $Enums.RevisionStatus;
|
|
260
|
+
description?: Prisma.StringFilter<"OrderRevision"> | string;
|
|
261
|
+
changeSummary?: Prisma.StringNullableFilter<"OrderRevision"> | string | null;
|
|
262
|
+
createdAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
263
|
+
createdById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
264
|
+
updatedAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
265
|
+
updatedById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
266
|
+
createdBy?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
267
|
+
updatedBy?: Prisma.XOR<Prisma.UserScalarRelationFilter, Prisma.UserWhereInput>;
|
|
268
|
+
order?: Prisma.XOR<Prisma.OrderScalarRelationFilter, Prisma.OrderWhereInput>;
|
|
269
|
+
orderRuns?: Prisma.OrderRunListRelationFilter;
|
|
270
|
+
operations?: Prisma.OperationListRelationFilter;
|
|
271
|
+
}, "id" | "orderId_revNo">;
|
|
272
|
+
export type OrderRevisionOrderByWithAggregationInput = {
|
|
273
|
+
id?: Prisma.SortOrder;
|
|
274
|
+
orderId?: Prisma.SortOrder;
|
|
275
|
+
revNo?: Prisma.SortOrder;
|
|
276
|
+
status?: Prisma.SortOrder;
|
|
277
|
+
description?: Prisma.SortOrder;
|
|
278
|
+
changeSummary?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
279
|
+
createdAt?: Prisma.SortOrder;
|
|
280
|
+
createdById?: Prisma.SortOrder;
|
|
281
|
+
updatedAt?: Prisma.SortOrder;
|
|
282
|
+
updatedById?: Prisma.SortOrder;
|
|
283
|
+
_count?: Prisma.OrderRevisionCountOrderByAggregateInput;
|
|
284
|
+
_avg?: Prisma.OrderRevisionAvgOrderByAggregateInput;
|
|
285
|
+
_max?: Prisma.OrderRevisionMaxOrderByAggregateInput;
|
|
286
|
+
_min?: Prisma.OrderRevisionMinOrderByAggregateInput;
|
|
287
|
+
_sum?: Prisma.OrderRevisionSumOrderByAggregateInput;
|
|
288
|
+
};
|
|
289
|
+
export type OrderRevisionScalarWhereWithAggregatesInput = {
|
|
290
|
+
AND?: Prisma.OrderRevisionScalarWhereWithAggregatesInput | Prisma.OrderRevisionScalarWhereWithAggregatesInput[];
|
|
291
|
+
OR?: Prisma.OrderRevisionScalarWhereWithAggregatesInput[];
|
|
292
|
+
NOT?: Prisma.OrderRevisionScalarWhereWithAggregatesInput | Prisma.OrderRevisionScalarWhereWithAggregatesInput[];
|
|
293
|
+
id?: Prisma.IntWithAggregatesFilter<"OrderRevision"> | number;
|
|
294
|
+
orderId?: Prisma.IntWithAggregatesFilter<"OrderRevision"> | number;
|
|
295
|
+
revNo?: Prisma.IntWithAggregatesFilter<"OrderRevision"> | number;
|
|
296
|
+
status?: Prisma.EnumRevisionStatusWithAggregatesFilter<"OrderRevision"> | $Enums.RevisionStatus;
|
|
297
|
+
description?: Prisma.StringWithAggregatesFilter<"OrderRevision"> | string;
|
|
298
|
+
changeSummary?: Prisma.StringNullableWithAggregatesFilter<"OrderRevision"> | string | null;
|
|
299
|
+
createdAt?: Prisma.DateTimeWithAggregatesFilter<"OrderRevision"> | Date | string;
|
|
300
|
+
createdById?: Prisma.IntWithAggregatesFilter<"OrderRevision"> | number;
|
|
301
|
+
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"OrderRevision"> | Date | string;
|
|
302
|
+
updatedById?: Prisma.IntWithAggregatesFilter<"OrderRevision"> | number;
|
|
303
|
+
};
|
|
304
|
+
export type OrderRevisionCreateInput = {
|
|
305
|
+
revNo: number;
|
|
306
|
+
status?: $Enums.RevisionStatus;
|
|
307
|
+
description?: string;
|
|
308
|
+
changeSummary?: string | null;
|
|
309
|
+
createdAt?: Date | string;
|
|
310
|
+
updatedAt?: Date | string;
|
|
311
|
+
createdBy: Prisma.UserCreateNestedOneWithoutOrderRevsCreatedInput;
|
|
312
|
+
updatedBy: Prisma.UserCreateNestedOneWithoutOrderRevsUpdatedInput;
|
|
313
|
+
order: Prisma.OrderCreateNestedOneWithoutRevisionsInput;
|
|
314
|
+
orderRuns?: Prisma.OrderRunCreateNestedManyWithoutOrderRevInput;
|
|
315
|
+
operations?: Prisma.OperationCreateNestedManyWithoutOrderRevInput;
|
|
316
|
+
};
|
|
317
|
+
export type OrderRevisionUncheckedCreateInput = {
|
|
318
|
+
id?: number;
|
|
319
|
+
orderId: number;
|
|
320
|
+
revNo: number;
|
|
321
|
+
status?: $Enums.RevisionStatus;
|
|
322
|
+
description?: string;
|
|
323
|
+
changeSummary?: string | null;
|
|
324
|
+
createdAt?: Date | string;
|
|
325
|
+
createdById: number;
|
|
326
|
+
updatedAt?: Date | string;
|
|
327
|
+
updatedById: number;
|
|
328
|
+
orderRuns?: Prisma.OrderRunUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
329
|
+
operations?: Prisma.OperationUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
330
|
+
};
|
|
331
|
+
export type OrderRevisionUpdateInput = {
|
|
332
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
333
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
334
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
335
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
336
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
337
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
338
|
+
createdBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsCreatedNestedInput;
|
|
339
|
+
updatedBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsUpdatedNestedInput;
|
|
340
|
+
order?: Prisma.OrderUpdateOneRequiredWithoutRevisionsNestedInput;
|
|
341
|
+
orderRuns?: Prisma.OrderRunUpdateManyWithoutOrderRevNestedInput;
|
|
342
|
+
operations?: Prisma.OperationUpdateManyWithoutOrderRevNestedInput;
|
|
343
|
+
};
|
|
344
|
+
export type OrderRevisionUncheckedUpdateInput = {
|
|
345
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
346
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
347
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
348
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
349
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
350
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
351
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
352
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
353
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
354
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
355
|
+
orderRuns?: Prisma.OrderRunUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
356
|
+
operations?: Prisma.OperationUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
357
|
+
};
|
|
358
|
+
export type OrderRevisionCreateManyInput = {
|
|
359
|
+
id?: number;
|
|
360
|
+
orderId: number;
|
|
361
|
+
revNo: number;
|
|
362
|
+
status?: $Enums.RevisionStatus;
|
|
363
|
+
description?: string;
|
|
364
|
+
changeSummary?: string | null;
|
|
365
|
+
createdAt?: Date | string;
|
|
366
|
+
createdById: number;
|
|
367
|
+
updatedAt?: Date | string;
|
|
368
|
+
updatedById: number;
|
|
369
|
+
};
|
|
370
|
+
export type OrderRevisionUpdateManyMutationInput = {
|
|
371
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
372
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
373
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
374
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
375
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
376
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
377
|
+
};
|
|
378
|
+
export type OrderRevisionUncheckedUpdateManyInput = {
|
|
379
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
380
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
381
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
382
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
383
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
384
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
385
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
386
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
387
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
388
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
389
|
+
};
|
|
390
|
+
export type OrderRevisionListRelationFilter = {
|
|
391
|
+
every?: Prisma.OrderRevisionWhereInput;
|
|
392
|
+
some?: Prisma.OrderRevisionWhereInput;
|
|
393
|
+
none?: Prisma.OrderRevisionWhereInput;
|
|
394
|
+
};
|
|
395
|
+
export type OrderRevisionOrderByRelationAggregateInput = {
|
|
396
|
+
_count?: Prisma.SortOrder;
|
|
397
|
+
};
|
|
398
|
+
export type OrderRevisionOrderIdRevNoCompoundUniqueInput = {
|
|
399
|
+
orderId: number;
|
|
400
|
+
revNo: number;
|
|
401
|
+
};
|
|
402
|
+
export type OrderRevisionCountOrderByAggregateInput = {
|
|
403
|
+
id?: Prisma.SortOrder;
|
|
404
|
+
orderId?: Prisma.SortOrder;
|
|
405
|
+
revNo?: Prisma.SortOrder;
|
|
406
|
+
status?: Prisma.SortOrder;
|
|
407
|
+
description?: Prisma.SortOrder;
|
|
408
|
+
changeSummary?: Prisma.SortOrder;
|
|
409
|
+
createdAt?: Prisma.SortOrder;
|
|
410
|
+
createdById?: Prisma.SortOrder;
|
|
411
|
+
updatedAt?: Prisma.SortOrder;
|
|
412
|
+
updatedById?: Prisma.SortOrder;
|
|
413
|
+
};
|
|
414
|
+
export type OrderRevisionAvgOrderByAggregateInput = {
|
|
415
|
+
id?: Prisma.SortOrder;
|
|
416
|
+
orderId?: Prisma.SortOrder;
|
|
417
|
+
revNo?: Prisma.SortOrder;
|
|
418
|
+
createdById?: Prisma.SortOrder;
|
|
419
|
+
updatedById?: Prisma.SortOrder;
|
|
420
|
+
};
|
|
421
|
+
export type OrderRevisionMaxOrderByAggregateInput = {
|
|
422
|
+
id?: Prisma.SortOrder;
|
|
423
|
+
orderId?: Prisma.SortOrder;
|
|
424
|
+
revNo?: Prisma.SortOrder;
|
|
425
|
+
status?: Prisma.SortOrder;
|
|
426
|
+
description?: Prisma.SortOrder;
|
|
427
|
+
changeSummary?: Prisma.SortOrder;
|
|
428
|
+
createdAt?: Prisma.SortOrder;
|
|
429
|
+
createdById?: Prisma.SortOrder;
|
|
430
|
+
updatedAt?: Prisma.SortOrder;
|
|
431
|
+
updatedById?: Prisma.SortOrder;
|
|
432
|
+
};
|
|
433
|
+
export type OrderRevisionMinOrderByAggregateInput = {
|
|
434
|
+
id?: Prisma.SortOrder;
|
|
435
|
+
orderId?: Prisma.SortOrder;
|
|
436
|
+
revNo?: Prisma.SortOrder;
|
|
437
|
+
status?: Prisma.SortOrder;
|
|
438
|
+
description?: Prisma.SortOrder;
|
|
439
|
+
changeSummary?: Prisma.SortOrder;
|
|
440
|
+
createdAt?: Prisma.SortOrder;
|
|
441
|
+
createdById?: Prisma.SortOrder;
|
|
442
|
+
updatedAt?: Prisma.SortOrder;
|
|
443
|
+
updatedById?: Prisma.SortOrder;
|
|
444
|
+
};
|
|
445
|
+
export type OrderRevisionSumOrderByAggregateInput = {
|
|
446
|
+
id?: Prisma.SortOrder;
|
|
447
|
+
orderId?: Prisma.SortOrder;
|
|
448
|
+
revNo?: Prisma.SortOrder;
|
|
449
|
+
createdById?: Prisma.SortOrder;
|
|
450
|
+
updatedById?: Prisma.SortOrder;
|
|
451
|
+
};
|
|
452
|
+
export type OrderRevisionScalarRelationFilter = {
|
|
453
|
+
is?: Prisma.OrderRevisionWhereInput;
|
|
454
|
+
isNot?: Prisma.OrderRevisionWhereInput;
|
|
455
|
+
};
|
|
456
|
+
export type OrderRevisionCreateNestedManyWithoutOrderInput = {
|
|
457
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput> | Prisma.OrderRevisionCreateWithoutOrderInput[] | Prisma.OrderRevisionUncheckedCreateWithoutOrderInput[];
|
|
458
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderInput | Prisma.OrderRevisionCreateOrConnectWithoutOrderInput[];
|
|
459
|
+
createMany?: Prisma.OrderRevisionCreateManyOrderInputEnvelope;
|
|
460
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
461
|
+
};
|
|
462
|
+
export type OrderRevisionUncheckedCreateNestedManyWithoutOrderInput = {
|
|
463
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput> | Prisma.OrderRevisionCreateWithoutOrderInput[] | Prisma.OrderRevisionUncheckedCreateWithoutOrderInput[];
|
|
464
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderInput | Prisma.OrderRevisionCreateOrConnectWithoutOrderInput[];
|
|
465
|
+
createMany?: Prisma.OrderRevisionCreateManyOrderInputEnvelope;
|
|
466
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
467
|
+
};
|
|
468
|
+
export type OrderRevisionUpdateManyWithoutOrderNestedInput = {
|
|
469
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput> | Prisma.OrderRevisionCreateWithoutOrderInput[] | Prisma.OrderRevisionUncheckedCreateWithoutOrderInput[];
|
|
470
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderInput | Prisma.OrderRevisionCreateOrConnectWithoutOrderInput[];
|
|
471
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutOrderInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutOrderInput[];
|
|
472
|
+
createMany?: Prisma.OrderRevisionCreateManyOrderInputEnvelope;
|
|
473
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
474
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
475
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
476
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
477
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutOrderInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutOrderInput[];
|
|
478
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutOrderInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutOrderInput[];
|
|
479
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
480
|
+
};
|
|
481
|
+
export type OrderRevisionUncheckedUpdateManyWithoutOrderNestedInput = {
|
|
482
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput> | Prisma.OrderRevisionCreateWithoutOrderInput[] | Prisma.OrderRevisionUncheckedCreateWithoutOrderInput[];
|
|
483
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderInput | Prisma.OrderRevisionCreateOrConnectWithoutOrderInput[];
|
|
484
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutOrderInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutOrderInput[];
|
|
485
|
+
createMany?: Prisma.OrderRevisionCreateManyOrderInputEnvelope;
|
|
486
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
487
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
488
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
489
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
490
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutOrderInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutOrderInput[];
|
|
491
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutOrderInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutOrderInput[];
|
|
492
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
493
|
+
};
|
|
494
|
+
export type EnumRevisionStatusFieldUpdateOperationsInput = {
|
|
495
|
+
set?: $Enums.RevisionStatus;
|
|
496
|
+
};
|
|
497
|
+
export type NullableStringFieldUpdateOperationsInput = {
|
|
498
|
+
set?: string | null;
|
|
499
|
+
};
|
|
500
|
+
export type OrderRevisionCreateNestedOneWithoutOperationsInput = {
|
|
501
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOperationsInput, Prisma.OrderRevisionUncheckedCreateWithoutOperationsInput>;
|
|
502
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOperationsInput;
|
|
503
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput;
|
|
504
|
+
};
|
|
505
|
+
export type OrderRevisionUpdateOneRequiredWithoutOperationsNestedInput = {
|
|
506
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOperationsInput, Prisma.OrderRevisionUncheckedCreateWithoutOperationsInput>;
|
|
507
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOperationsInput;
|
|
508
|
+
upsert?: Prisma.OrderRevisionUpsertWithoutOperationsInput;
|
|
509
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput;
|
|
510
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.OrderRevisionUpdateToOneWithWhereWithoutOperationsInput, Prisma.OrderRevisionUpdateWithoutOperationsInput>, Prisma.OrderRevisionUncheckedUpdateWithoutOperationsInput>;
|
|
511
|
+
};
|
|
512
|
+
export type OrderRevisionCreateNestedOneWithoutOrderRunsInput = {
|
|
513
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderRunsInput>;
|
|
514
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderRunsInput;
|
|
515
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput;
|
|
516
|
+
};
|
|
517
|
+
export type OrderRevisionUpdateOneRequiredWithoutOrderRunsNestedInput = {
|
|
518
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderRunsInput>;
|
|
519
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutOrderRunsInput;
|
|
520
|
+
upsert?: Prisma.OrderRevisionUpsertWithoutOrderRunsInput;
|
|
521
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput;
|
|
522
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.OrderRevisionUpdateToOneWithWhereWithoutOrderRunsInput, Prisma.OrderRevisionUpdateWithoutOrderRunsInput>, Prisma.OrderRevisionUncheckedUpdateWithoutOrderRunsInput>;
|
|
523
|
+
};
|
|
524
|
+
export type OrderRevisionCreateNestedManyWithoutCreatedByInput = {
|
|
525
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput> | Prisma.OrderRevisionCreateWithoutCreatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput[];
|
|
526
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput[];
|
|
527
|
+
createMany?: Prisma.OrderRevisionCreateManyCreatedByInputEnvelope;
|
|
528
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
529
|
+
};
|
|
530
|
+
export type OrderRevisionCreateNestedManyWithoutUpdatedByInput = {
|
|
531
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput> | Prisma.OrderRevisionCreateWithoutUpdatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput[];
|
|
532
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput[];
|
|
533
|
+
createMany?: Prisma.OrderRevisionCreateManyUpdatedByInputEnvelope;
|
|
534
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
535
|
+
};
|
|
536
|
+
export type OrderRevisionUncheckedCreateNestedManyWithoutCreatedByInput = {
|
|
537
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput> | Prisma.OrderRevisionCreateWithoutCreatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput[];
|
|
538
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput[];
|
|
539
|
+
createMany?: Prisma.OrderRevisionCreateManyCreatedByInputEnvelope;
|
|
540
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
541
|
+
};
|
|
542
|
+
export type OrderRevisionUncheckedCreateNestedManyWithoutUpdatedByInput = {
|
|
543
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput> | Prisma.OrderRevisionCreateWithoutUpdatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput[];
|
|
544
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput[];
|
|
545
|
+
createMany?: Prisma.OrderRevisionCreateManyUpdatedByInputEnvelope;
|
|
546
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
547
|
+
};
|
|
548
|
+
export type OrderRevisionUpdateManyWithoutCreatedByNestedInput = {
|
|
549
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput> | Prisma.OrderRevisionCreateWithoutCreatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput[];
|
|
550
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput[];
|
|
551
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutCreatedByInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutCreatedByInput[];
|
|
552
|
+
createMany?: Prisma.OrderRevisionCreateManyCreatedByInputEnvelope;
|
|
553
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
554
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
555
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
556
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
557
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutCreatedByInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutCreatedByInput[];
|
|
558
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutCreatedByInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutCreatedByInput[];
|
|
559
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
560
|
+
};
|
|
561
|
+
export type OrderRevisionUpdateManyWithoutUpdatedByNestedInput = {
|
|
562
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput> | Prisma.OrderRevisionCreateWithoutUpdatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput[];
|
|
563
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput[];
|
|
564
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutUpdatedByInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutUpdatedByInput[];
|
|
565
|
+
createMany?: Prisma.OrderRevisionCreateManyUpdatedByInputEnvelope;
|
|
566
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
567
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
568
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
569
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
570
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutUpdatedByInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutUpdatedByInput[];
|
|
571
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutUpdatedByInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutUpdatedByInput[];
|
|
572
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
573
|
+
};
|
|
574
|
+
export type OrderRevisionUncheckedUpdateManyWithoutCreatedByNestedInput = {
|
|
575
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput> | Prisma.OrderRevisionCreateWithoutCreatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput[];
|
|
576
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutCreatedByInput[];
|
|
577
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutCreatedByInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutCreatedByInput[];
|
|
578
|
+
createMany?: Prisma.OrderRevisionCreateManyCreatedByInputEnvelope;
|
|
579
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
580
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
581
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
582
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
583
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutCreatedByInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutCreatedByInput[];
|
|
584
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutCreatedByInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutCreatedByInput[];
|
|
585
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
586
|
+
};
|
|
587
|
+
export type OrderRevisionUncheckedUpdateManyWithoutUpdatedByNestedInput = {
|
|
588
|
+
create?: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput> | Prisma.OrderRevisionCreateWithoutUpdatedByInput[] | Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput[];
|
|
589
|
+
connectOrCreate?: Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput | Prisma.OrderRevisionCreateOrConnectWithoutUpdatedByInput[];
|
|
590
|
+
upsert?: Prisma.OrderRevisionUpsertWithWhereUniqueWithoutUpdatedByInput | Prisma.OrderRevisionUpsertWithWhereUniqueWithoutUpdatedByInput[];
|
|
591
|
+
createMany?: Prisma.OrderRevisionCreateManyUpdatedByInputEnvelope;
|
|
592
|
+
set?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
593
|
+
disconnect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
594
|
+
delete?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
595
|
+
connect?: Prisma.OrderRevisionWhereUniqueInput | Prisma.OrderRevisionWhereUniqueInput[];
|
|
596
|
+
update?: Prisma.OrderRevisionUpdateWithWhereUniqueWithoutUpdatedByInput | Prisma.OrderRevisionUpdateWithWhereUniqueWithoutUpdatedByInput[];
|
|
597
|
+
updateMany?: Prisma.OrderRevisionUpdateManyWithWhereWithoutUpdatedByInput | Prisma.OrderRevisionUpdateManyWithWhereWithoutUpdatedByInput[];
|
|
598
|
+
deleteMany?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
599
|
+
};
|
|
600
|
+
export type OrderRevisionCreateWithoutOrderInput = {
|
|
601
|
+
revNo: number;
|
|
602
|
+
status?: $Enums.RevisionStatus;
|
|
603
|
+
description?: string;
|
|
604
|
+
changeSummary?: string | null;
|
|
605
|
+
createdAt?: Date | string;
|
|
606
|
+
updatedAt?: Date | string;
|
|
607
|
+
createdBy: Prisma.UserCreateNestedOneWithoutOrderRevsCreatedInput;
|
|
608
|
+
updatedBy: Prisma.UserCreateNestedOneWithoutOrderRevsUpdatedInput;
|
|
609
|
+
orderRuns?: Prisma.OrderRunCreateNestedManyWithoutOrderRevInput;
|
|
610
|
+
operations?: Prisma.OperationCreateNestedManyWithoutOrderRevInput;
|
|
611
|
+
};
|
|
612
|
+
export type OrderRevisionUncheckedCreateWithoutOrderInput = {
|
|
613
|
+
id?: number;
|
|
614
|
+
revNo: number;
|
|
615
|
+
status?: $Enums.RevisionStatus;
|
|
616
|
+
description?: string;
|
|
617
|
+
changeSummary?: string | null;
|
|
618
|
+
createdAt?: Date | string;
|
|
619
|
+
createdById: number;
|
|
620
|
+
updatedAt?: Date | string;
|
|
621
|
+
updatedById: number;
|
|
622
|
+
orderRuns?: Prisma.OrderRunUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
623
|
+
operations?: Prisma.OperationUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
624
|
+
};
|
|
625
|
+
export type OrderRevisionCreateOrConnectWithoutOrderInput = {
|
|
626
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
627
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput>;
|
|
628
|
+
};
|
|
629
|
+
export type OrderRevisionCreateManyOrderInputEnvelope = {
|
|
630
|
+
data: Prisma.OrderRevisionCreateManyOrderInput | Prisma.OrderRevisionCreateManyOrderInput[];
|
|
631
|
+
};
|
|
632
|
+
export type OrderRevisionUpsertWithWhereUniqueWithoutOrderInput = {
|
|
633
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
634
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOrderInput, Prisma.OrderRevisionUncheckedUpdateWithoutOrderInput>;
|
|
635
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderInput>;
|
|
636
|
+
};
|
|
637
|
+
export type OrderRevisionUpdateWithWhereUniqueWithoutOrderInput = {
|
|
638
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
639
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOrderInput, Prisma.OrderRevisionUncheckedUpdateWithoutOrderInput>;
|
|
640
|
+
};
|
|
641
|
+
export type OrderRevisionUpdateManyWithWhereWithoutOrderInput = {
|
|
642
|
+
where: Prisma.OrderRevisionScalarWhereInput;
|
|
643
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateManyMutationInput, Prisma.OrderRevisionUncheckedUpdateManyWithoutOrderInput>;
|
|
644
|
+
};
|
|
645
|
+
export type OrderRevisionScalarWhereInput = {
|
|
646
|
+
AND?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
647
|
+
OR?: Prisma.OrderRevisionScalarWhereInput[];
|
|
648
|
+
NOT?: Prisma.OrderRevisionScalarWhereInput | Prisma.OrderRevisionScalarWhereInput[];
|
|
649
|
+
id?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
650
|
+
orderId?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
651
|
+
revNo?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
652
|
+
status?: Prisma.EnumRevisionStatusFilter<"OrderRevision"> | $Enums.RevisionStatus;
|
|
653
|
+
description?: Prisma.StringFilter<"OrderRevision"> | string;
|
|
654
|
+
changeSummary?: Prisma.StringNullableFilter<"OrderRevision"> | string | null;
|
|
655
|
+
createdAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
656
|
+
createdById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
657
|
+
updatedAt?: Prisma.DateTimeFilter<"OrderRevision"> | Date | string;
|
|
658
|
+
updatedById?: Prisma.IntFilter<"OrderRevision"> | number;
|
|
659
|
+
};
|
|
660
|
+
export type OrderRevisionCreateWithoutOperationsInput = {
|
|
661
|
+
revNo: number;
|
|
662
|
+
status?: $Enums.RevisionStatus;
|
|
663
|
+
description?: string;
|
|
664
|
+
changeSummary?: string | null;
|
|
665
|
+
createdAt?: Date | string;
|
|
666
|
+
updatedAt?: Date | string;
|
|
667
|
+
createdBy: Prisma.UserCreateNestedOneWithoutOrderRevsCreatedInput;
|
|
668
|
+
updatedBy: Prisma.UserCreateNestedOneWithoutOrderRevsUpdatedInput;
|
|
669
|
+
order: Prisma.OrderCreateNestedOneWithoutRevisionsInput;
|
|
670
|
+
orderRuns?: Prisma.OrderRunCreateNestedManyWithoutOrderRevInput;
|
|
671
|
+
};
|
|
672
|
+
export type OrderRevisionUncheckedCreateWithoutOperationsInput = {
|
|
673
|
+
id?: number;
|
|
674
|
+
orderId: number;
|
|
675
|
+
revNo: number;
|
|
676
|
+
status?: $Enums.RevisionStatus;
|
|
677
|
+
description?: string;
|
|
678
|
+
changeSummary?: string | null;
|
|
679
|
+
createdAt?: Date | string;
|
|
680
|
+
createdById: number;
|
|
681
|
+
updatedAt?: Date | string;
|
|
682
|
+
updatedById: number;
|
|
683
|
+
orderRuns?: Prisma.OrderRunUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
684
|
+
};
|
|
685
|
+
export type OrderRevisionCreateOrConnectWithoutOperationsInput = {
|
|
686
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
687
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOperationsInput, Prisma.OrderRevisionUncheckedCreateWithoutOperationsInput>;
|
|
688
|
+
};
|
|
689
|
+
export type OrderRevisionUpsertWithoutOperationsInput = {
|
|
690
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOperationsInput, Prisma.OrderRevisionUncheckedUpdateWithoutOperationsInput>;
|
|
691
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOperationsInput, Prisma.OrderRevisionUncheckedCreateWithoutOperationsInput>;
|
|
692
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
693
|
+
};
|
|
694
|
+
export type OrderRevisionUpdateToOneWithWhereWithoutOperationsInput = {
|
|
695
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
696
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOperationsInput, Prisma.OrderRevisionUncheckedUpdateWithoutOperationsInput>;
|
|
697
|
+
};
|
|
698
|
+
export type OrderRevisionUpdateWithoutOperationsInput = {
|
|
699
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
700
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
701
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
702
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
703
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
704
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
705
|
+
createdBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsCreatedNestedInput;
|
|
706
|
+
updatedBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsUpdatedNestedInput;
|
|
707
|
+
order?: Prisma.OrderUpdateOneRequiredWithoutRevisionsNestedInput;
|
|
708
|
+
orderRuns?: Prisma.OrderRunUpdateManyWithoutOrderRevNestedInput;
|
|
709
|
+
};
|
|
710
|
+
export type OrderRevisionUncheckedUpdateWithoutOperationsInput = {
|
|
711
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
712
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
713
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
714
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
715
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
716
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
717
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
718
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
719
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
720
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
721
|
+
orderRuns?: Prisma.OrderRunUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
722
|
+
};
|
|
723
|
+
export type OrderRevisionCreateWithoutOrderRunsInput = {
|
|
724
|
+
revNo: number;
|
|
725
|
+
status?: $Enums.RevisionStatus;
|
|
726
|
+
description?: string;
|
|
727
|
+
changeSummary?: string | null;
|
|
728
|
+
createdAt?: Date | string;
|
|
729
|
+
updatedAt?: Date | string;
|
|
730
|
+
createdBy: Prisma.UserCreateNestedOneWithoutOrderRevsCreatedInput;
|
|
731
|
+
updatedBy: Prisma.UserCreateNestedOneWithoutOrderRevsUpdatedInput;
|
|
732
|
+
order: Prisma.OrderCreateNestedOneWithoutRevisionsInput;
|
|
733
|
+
operations?: Prisma.OperationCreateNestedManyWithoutOrderRevInput;
|
|
734
|
+
};
|
|
735
|
+
export type OrderRevisionUncheckedCreateWithoutOrderRunsInput = {
|
|
736
|
+
id?: number;
|
|
737
|
+
orderId: number;
|
|
738
|
+
revNo: number;
|
|
739
|
+
status?: $Enums.RevisionStatus;
|
|
740
|
+
description?: string;
|
|
741
|
+
changeSummary?: string | null;
|
|
742
|
+
createdAt?: Date | string;
|
|
743
|
+
createdById: number;
|
|
744
|
+
updatedAt?: Date | string;
|
|
745
|
+
updatedById: number;
|
|
746
|
+
operations?: Prisma.OperationUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
747
|
+
};
|
|
748
|
+
export type OrderRevisionCreateOrConnectWithoutOrderRunsInput = {
|
|
749
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
750
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderRunsInput>;
|
|
751
|
+
};
|
|
752
|
+
export type OrderRevisionUpsertWithoutOrderRunsInput = {
|
|
753
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedUpdateWithoutOrderRunsInput>;
|
|
754
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedCreateWithoutOrderRunsInput>;
|
|
755
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
756
|
+
};
|
|
757
|
+
export type OrderRevisionUpdateToOneWithWhereWithoutOrderRunsInput = {
|
|
758
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
759
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutOrderRunsInput, Prisma.OrderRevisionUncheckedUpdateWithoutOrderRunsInput>;
|
|
760
|
+
};
|
|
761
|
+
export type OrderRevisionUpdateWithoutOrderRunsInput = {
|
|
762
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
763
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
764
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
765
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
766
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
767
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
768
|
+
createdBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsCreatedNestedInput;
|
|
769
|
+
updatedBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsUpdatedNestedInput;
|
|
770
|
+
order?: Prisma.OrderUpdateOneRequiredWithoutRevisionsNestedInput;
|
|
771
|
+
operations?: Prisma.OperationUpdateManyWithoutOrderRevNestedInput;
|
|
772
|
+
};
|
|
773
|
+
export type OrderRevisionUncheckedUpdateWithoutOrderRunsInput = {
|
|
774
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
775
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
776
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
777
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
778
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
779
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
780
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
781
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
782
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
783
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
784
|
+
operations?: Prisma.OperationUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
785
|
+
};
|
|
786
|
+
export type OrderRevisionCreateWithoutCreatedByInput = {
|
|
787
|
+
revNo: number;
|
|
788
|
+
status?: $Enums.RevisionStatus;
|
|
789
|
+
description?: string;
|
|
790
|
+
changeSummary?: string | null;
|
|
791
|
+
createdAt?: Date | string;
|
|
792
|
+
updatedAt?: Date | string;
|
|
793
|
+
updatedBy: Prisma.UserCreateNestedOneWithoutOrderRevsUpdatedInput;
|
|
794
|
+
order: Prisma.OrderCreateNestedOneWithoutRevisionsInput;
|
|
795
|
+
orderRuns?: Prisma.OrderRunCreateNestedManyWithoutOrderRevInput;
|
|
796
|
+
operations?: Prisma.OperationCreateNestedManyWithoutOrderRevInput;
|
|
797
|
+
};
|
|
798
|
+
export type OrderRevisionUncheckedCreateWithoutCreatedByInput = {
|
|
799
|
+
id?: number;
|
|
800
|
+
orderId: number;
|
|
801
|
+
revNo: number;
|
|
802
|
+
status?: $Enums.RevisionStatus;
|
|
803
|
+
description?: string;
|
|
804
|
+
changeSummary?: string | null;
|
|
805
|
+
createdAt?: Date | string;
|
|
806
|
+
updatedAt?: Date | string;
|
|
807
|
+
updatedById: number;
|
|
808
|
+
orderRuns?: Prisma.OrderRunUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
809
|
+
operations?: Prisma.OperationUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
810
|
+
};
|
|
811
|
+
export type OrderRevisionCreateOrConnectWithoutCreatedByInput = {
|
|
812
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
813
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput>;
|
|
814
|
+
};
|
|
815
|
+
export type OrderRevisionCreateManyCreatedByInputEnvelope = {
|
|
816
|
+
data: Prisma.OrderRevisionCreateManyCreatedByInput | Prisma.OrderRevisionCreateManyCreatedByInput[];
|
|
817
|
+
};
|
|
818
|
+
export type OrderRevisionCreateWithoutUpdatedByInput = {
|
|
819
|
+
revNo: number;
|
|
820
|
+
status?: $Enums.RevisionStatus;
|
|
821
|
+
description?: string;
|
|
822
|
+
changeSummary?: string | null;
|
|
823
|
+
createdAt?: Date | string;
|
|
824
|
+
updatedAt?: Date | string;
|
|
825
|
+
createdBy: Prisma.UserCreateNestedOneWithoutOrderRevsCreatedInput;
|
|
826
|
+
order: Prisma.OrderCreateNestedOneWithoutRevisionsInput;
|
|
827
|
+
orderRuns?: Prisma.OrderRunCreateNestedManyWithoutOrderRevInput;
|
|
828
|
+
operations?: Prisma.OperationCreateNestedManyWithoutOrderRevInput;
|
|
829
|
+
};
|
|
830
|
+
export type OrderRevisionUncheckedCreateWithoutUpdatedByInput = {
|
|
831
|
+
id?: number;
|
|
832
|
+
orderId: number;
|
|
833
|
+
revNo: number;
|
|
834
|
+
status?: $Enums.RevisionStatus;
|
|
835
|
+
description?: string;
|
|
836
|
+
changeSummary?: string | null;
|
|
837
|
+
createdAt?: Date | string;
|
|
838
|
+
createdById: number;
|
|
839
|
+
updatedAt?: Date | string;
|
|
840
|
+
orderRuns?: Prisma.OrderRunUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
841
|
+
operations?: Prisma.OperationUncheckedCreateNestedManyWithoutOrderRevInput;
|
|
842
|
+
};
|
|
843
|
+
export type OrderRevisionCreateOrConnectWithoutUpdatedByInput = {
|
|
844
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
845
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput>;
|
|
846
|
+
};
|
|
847
|
+
export type OrderRevisionCreateManyUpdatedByInputEnvelope = {
|
|
848
|
+
data: Prisma.OrderRevisionCreateManyUpdatedByInput | Prisma.OrderRevisionCreateManyUpdatedByInput[];
|
|
849
|
+
};
|
|
850
|
+
export type OrderRevisionUpsertWithWhereUniqueWithoutCreatedByInput = {
|
|
851
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
852
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedUpdateWithoutCreatedByInput>;
|
|
853
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutCreatedByInput>;
|
|
854
|
+
};
|
|
855
|
+
export type OrderRevisionUpdateWithWhereUniqueWithoutCreatedByInput = {
|
|
856
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
857
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutCreatedByInput, Prisma.OrderRevisionUncheckedUpdateWithoutCreatedByInput>;
|
|
858
|
+
};
|
|
859
|
+
export type OrderRevisionUpdateManyWithWhereWithoutCreatedByInput = {
|
|
860
|
+
where: Prisma.OrderRevisionScalarWhereInput;
|
|
861
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateManyMutationInput, Prisma.OrderRevisionUncheckedUpdateManyWithoutCreatedByInput>;
|
|
862
|
+
};
|
|
863
|
+
export type OrderRevisionUpsertWithWhereUniqueWithoutUpdatedByInput = {
|
|
864
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
865
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedUpdateWithoutUpdatedByInput>;
|
|
866
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedCreateWithoutUpdatedByInput>;
|
|
867
|
+
};
|
|
868
|
+
export type OrderRevisionUpdateWithWhereUniqueWithoutUpdatedByInput = {
|
|
869
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
870
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateWithoutUpdatedByInput, Prisma.OrderRevisionUncheckedUpdateWithoutUpdatedByInput>;
|
|
871
|
+
};
|
|
872
|
+
export type OrderRevisionUpdateManyWithWhereWithoutUpdatedByInput = {
|
|
873
|
+
where: Prisma.OrderRevisionScalarWhereInput;
|
|
874
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateManyMutationInput, Prisma.OrderRevisionUncheckedUpdateManyWithoutUpdatedByInput>;
|
|
875
|
+
};
|
|
876
|
+
export type OrderRevisionCreateManyOrderInput = {
|
|
877
|
+
id?: number;
|
|
878
|
+
revNo: number;
|
|
879
|
+
status?: $Enums.RevisionStatus;
|
|
880
|
+
description?: string;
|
|
881
|
+
changeSummary?: string | null;
|
|
882
|
+
createdAt?: Date | string;
|
|
883
|
+
createdById: number;
|
|
884
|
+
updatedAt?: Date | string;
|
|
885
|
+
updatedById: number;
|
|
886
|
+
};
|
|
887
|
+
export type OrderRevisionUpdateWithoutOrderInput = {
|
|
888
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
889
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
890
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
891
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
892
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
893
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
894
|
+
createdBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsCreatedNestedInput;
|
|
895
|
+
updatedBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsUpdatedNestedInput;
|
|
896
|
+
orderRuns?: Prisma.OrderRunUpdateManyWithoutOrderRevNestedInput;
|
|
897
|
+
operations?: Prisma.OperationUpdateManyWithoutOrderRevNestedInput;
|
|
898
|
+
};
|
|
899
|
+
export type OrderRevisionUncheckedUpdateWithoutOrderInput = {
|
|
900
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
901
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
902
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
903
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
904
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
905
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
906
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
907
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
908
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
909
|
+
orderRuns?: Prisma.OrderRunUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
910
|
+
operations?: Prisma.OperationUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
911
|
+
};
|
|
912
|
+
export type OrderRevisionUncheckedUpdateManyWithoutOrderInput = {
|
|
913
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
914
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
915
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
916
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
917
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
918
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
919
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
920
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
921
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
922
|
+
};
|
|
923
|
+
export type OrderRevisionCreateManyCreatedByInput = {
|
|
924
|
+
id?: number;
|
|
925
|
+
orderId: number;
|
|
926
|
+
revNo: number;
|
|
927
|
+
status?: $Enums.RevisionStatus;
|
|
928
|
+
description?: string;
|
|
929
|
+
changeSummary?: string | null;
|
|
930
|
+
createdAt?: Date | string;
|
|
931
|
+
updatedAt?: Date | string;
|
|
932
|
+
updatedById: number;
|
|
933
|
+
};
|
|
934
|
+
export type OrderRevisionCreateManyUpdatedByInput = {
|
|
935
|
+
id?: number;
|
|
936
|
+
orderId: number;
|
|
937
|
+
revNo: number;
|
|
938
|
+
status?: $Enums.RevisionStatus;
|
|
939
|
+
description?: string;
|
|
940
|
+
changeSummary?: string | null;
|
|
941
|
+
createdAt?: Date | string;
|
|
942
|
+
createdById: number;
|
|
943
|
+
updatedAt?: Date | string;
|
|
944
|
+
};
|
|
945
|
+
export type OrderRevisionUpdateWithoutCreatedByInput = {
|
|
946
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
947
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
948
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
949
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
950
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
951
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
952
|
+
updatedBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsUpdatedNestedInput;
|
|
953
|
+
order?: Prisma.OrderUpdateOneRequiredWithoutRevisionsNestedInput;
|
|
954
|
+
orderRuns?: Prisma.OrderRunUpdateManyWithoutOrderRevNestedInput;
|
|
955
|
+
operations?: Prisma.OperationUpdateManyWithoutOrderRevNestedInput;
|
|
956
|
+
};
|
|
957
|
+
export type OrderRevisionUncheckedUpdateWithoutCreatedByInput = {
|
|
958
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
959
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
960
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
961
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
962
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
963
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
964
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
965
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
966
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
967
|
+
orderRuns?: Prisma.OrderRunUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
968
|
+
operations?: Prisma.OperationUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
969
|
+
};
|
|
970
|
+
export type OrderRevisionUncheckedUpdateManyWithoutCreatedByInput = {
|
|
971
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
972
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
973
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
974
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
975
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
976
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
977
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
978
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
979
|
+
updatedById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
980
|
+
};
|
|
981
|
+
export type OrderRevisionUpdateWithoutUpdatedByInput = {
|
|
982
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
983
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
984
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
985
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
986
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
987
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
988
|
+
createdBy?: Prisma.UserUpdateOneRequiredWithoutOrderRevsCreatedNestedInput;
|
|
989
|
+
order?: Prisma.OrderUpdateOneRequiredWithoutRevisionsNestedInput;
|
|
990
|
+
orderRuns?: Prisma.OrderRunUpdateManyWithoutOrderRevNestedInput;
|
|
991
|
+
operations?: Prisma.OperationUpdateManyWithoutOrderRevNestedInput;
|
|
992
|
+
};
|
|
993
|
+
export type OrderRevisionUncheckedUpdateWithoutUpdatedByInput = {
|
|
994
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
995
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
996
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
997
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
998
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
999
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1000
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1001
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1002
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1003
|
+
orderRuns?: Prisma.OrderRunUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
1004
|
+
operations?: Prisma.OperationUncheckedUpdateManyWithoutOrderRevNestedInput;
|
|
1005
|
+
};
|
|
1006
|
+
export type OrderRevisionUncheckedUpdateManyWithoutUpdatedByInput = {
|
|
1007
|
+
id?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1008
|
+
orderId?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1009
|
+
revNo?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1010
|
+
status?: Prisma.EnumRevisionStatusFieldUpdateOperationsInput | $Enums.RevisionStatus;
|
|
1011
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
1012
|
+
changeSummary?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1013
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1014
|
+
createdById?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1015
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1016
|
+
};
|
|
1017
|
+
/**
|
|
1018
|
+
* Count Type OrderRevisionCountOutputType
|
|
1019
|
+
*/
|
|
1020
|
+
export type OrderRevisionCountOutputType = {
|
|
1021
|
+
orderRuns: number;
|
|
1022
|
+
operations: number;
|
|
1023
|
+
};
|
|
1024
|
+
export type OrderRevisionCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1025
|
+
orderRuns?: boolean | OrderRevisionCountOutputTypeCountOrderRunsArgs;
|
|
1026
|
+
operations?: boolean | OrderRevisionCountOutputTypeCountOperationsArgs;
|
|
1027
|
+
};
|
|
1028
|
+
/**
|
|
1029
|
+
* OrderRevisionCountOutputType without action
|
|
1030
|
+
*/
|
|
1031
|
+
export type OrderRevisionCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1032
|
+
/**
|
|
1033
|
+
* Select specific fields to fetch from the OrderRevisionCountOutputType
|
|
1034
|
+
*/
|
|
1035
|
+
select?: Prisma.OrderRevisionCountOutputTypeSelect<ExtArgs> | null;
|
|
1036
|
+
};
|
|
1037
|
+
/**
|
|
1038
|
+
* OrderRevisionCountOutputType without action
|
|
1039
|
+
*/
|
|
1040
|
+
export type OrderRevisionCountOutputTypeCountOrderRunsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1041
|
+
where?: Prisma.OrderRunWhereInput;
|
|
1042
|
+
};
|
|
1043
|
+
/**
|
|
1044
|
+
* OrderRevisionCountOutputType without action
|
|
1045
|
+
*/
|
|
1046
|
+
export type OrderRevisionCountOutputTypeCountOperationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1047
|
+
where?: Prisma.OperationWhereInput;
|
|
1048
|
+
};
|
|
1049
|
+
export type OrderRevisionSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1050
|
+
id?: boolean;
|
|
1051
|
+
orderId?: boolean;
|
|
1052
|
+
revNo?: boolean;
|
|
1053
|
+
status?: boolean;
|
|
1054
|
+
description?: boolean;
|
|
1055
|
+
changeSummary?: boolean;
|
|
1056
|
+
createdAt?: boolean;
|
|
1057
|
+
createdById?: boolean;
|
|
1058
|
+
updatedAt?: boolean;
|
|
1059
|
+
updatedById?: boolean;
|
|
1060
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1061
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1062
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1063
|
+
orderRuns?: boolean | Prisma.OrderRevision$orderRunsArgs<ExtArgs>;
|
|
1064
|
+
operations?: boolean | Prisma.OrderRevision$operationsArgs<ExtArgs>;
|
|
1065
|
+
_count?: boolean | Prisma.OrderRevisionCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1066
|
+
}, ExtArgs["result"]["orderRevision"]>;
|
|
1067
|
+
export type OrderRevisionSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1068
|
+
id?: boolean;
|
|
1069
|
+
orderId?: boolean;
|
|
1070
|
+
revNo?: boolean;
|
|
1071
|
+
status?: boolean;
|
|
1072
|
+
description?: boolean;
|
|
1073
|
+
changeSummary?: boolean;
|
|
1074
|
+
createdAt?: boolean;
|
|
1075
|
+
createdById?: boolean;
|
|
1076
|
+
updatedAt?: boolean;
|
|
1077
|
+
updatedById?: boolean;
|
|
1078
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1079
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1080
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1081
|
+
}, ExtArgs["result"]["orderRevision"]>;
|
|
1082
|
+
export type OrderRevisionSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
1083
|
+
id?: boolean;
|
|
1084
|
+
orderId?: boolean;
|
|
1085
|
+
revNo?: boolean;
|
|
1086
|
+
status?: boolean;
|
|
1087
|
+
description?: boolean;
|
|
1088
|
+
changeSummary?: boolean;
|
|
1089
|
+
createdAt?: boolean;
|
|
1090
|
+
createdById?: boolean;
|
|
1091
|
+
updatedAt?: boolean;
|
|
1092
|
+
updatedById?: boolean;
|
|
1093
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1094
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1095
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1096
|
+
}, ExtArgs["result"]["orderRevision"]>;
|
|
1097
|
+
export type OrderRevisionSelectScalar = {
|
|
1098
|
+
id?: boolean;
|
|
1099
|
+
orderId?: boolean;
|
|
1100
|
+
revNo?: boolean;
|
|
1101
|
+
status?: boolean;
|
|
1102
|
+
description?: boolean;
|
|
1103
|
+
changeSummary?: boolean;
|
|
1104
|
+
createdAt?: boolean;
|
|
1105
|
+
createdById?: boolean;
|
|
1106
|
+
updatedAt?: boolean;
|
|
1107
|
+
updatedById?: boolean;
|
|
1108
|
+
};
|
|
1109
|
+
export type OrderRevisionOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "orderId" | "revNo" | "status" | "description" | "changeSummary" | "createdAt" | "createdById" | "updatedAt" | "updatedById", ExtArgs["result"]["orderRevision"]>;
|
|
1110
|
+
export type OrderRevisionInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1111
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1112
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1113
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1114
|
+
orderRuns?: boolean | Prisma.OrderRevision$orderRunsArgs<ExtArgs>;
|
|
1115
|
+
operations?: boolean | Prisma.OrderRevision$operationsArgs<ExtArgs>;
|
|
1116
|
+
_count?: boolean | Prisma.OrderRevisionCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1117
|
+
};
|
|
1118
|
+
export type OrderRevisionIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1119
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1120
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1121
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1122
|
+
};
|
|
1123
|
+
export type OrderRevisionIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1124
|
+
createdBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1125
|
+
updatedBy?: boolean | Prisma.UserDefaultArgs<ExtArgs>;
|
|
1126
|
+
order?: boolean | Prisma.OrderDefaultArgs<ExtArgs>;
|
|
1127
|
+
};
|
|
1128
|
+
export type $OrderRevisionPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1129
|
+
name: "OrderRevision";
|
|
1130
|
+
objects: {
|
|
1131
|
+
createdBy: Prisma.$UserPayload<ExtArgs>;
|
|
1132
|
+
updatedBy: Prisma.$UserPayload<ExtArgs>;
|
|
1133
|
+
order: Prisma.$OrderPayload<ExtArgs>;
|
|
1134
|
+
orderRuns: Prisma.$OrderRunPayload<ExtArgs>[];
|
|
1135
|
+
operations: Prisma.$OperationPayload<ExtArgs>[];
|
|
1136
|
+
};
|
|
1137
|
+
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
1138
|
+
id: number;
|
|
1139
|
+
orderId: number;
|
|
1140
|
+
revNo: number;
|
|
1141
|
+
status: $Enums.RevisionStatus;
|
|
1142
|
+
description: string;
|
|
1143
|
+
changeSummary: string | null;
|
|
1144
|
+
createdAt: Date;
|
|
1145
|
+
createdById: number;
|
|
1146
|
+
updatedAt: Date;
|
|
1147
|
+
updatedById: number;
|
|
1148
|
+
}, ExtArgs["result"]["orderRevision"]>;
|
|
1149
|
+
composites: {};
|
|
1150
|
+
};
|
|
1151
|
+
export type OrderRevisionGetPayload<S extends boolean | null | undefined | OrderRevisionDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload, S>;
|
|
1152
|
+
export type OrderRevisionCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = Omit<OrderRevisionFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
1153
|
+
select?: OrderRevisionCountAggregateInputType | true;
|
|
1154
|
+
};
|
|
1155
|
+
export interface OrderRevisionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
1156
|
+
[K: symbol]: {
|
|
1157
|
+
types: Prisma.TypeMap<ExtArgs>['model']['OrderRevision'];
|
|
1158
|
+
meta: {
|
|
1159
|
+
name: 'OrderRevision';
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
/**
|
|
1163
|
+
* Find zero or one OrderRevision that matches the filter.
|
|
1164
|
+
* @param {OrderRevisionFindUniqueArgs} args - Arguments to find a OrderRevision
|
|
1165
|
+
* @example
|
|
1166
|
+
* // Get one OrderRevision
|
|
1167
|
+
* const orderRevision = await prisma.orderRevision.findUnique({
|
|
1168
|
+
* where: {
|
|
1169
|
+
* // ... provide filter here
|
|
1170
|
+
* }
|
|
1171
|
+
* })
|
|
1172
|
+
*/
|
|
1173
|
+
findUnique<T extends OrderRevisionFindUniqueArgs>(args: Prisma.SelectSubset<T, OrderRevisionFindUniqueArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1174
|
+
/**
|
|
1175
|
+
* Find one OrderRevision that matches the filter or throw an error with `error.code='P2025'`
|
|
1176
|
+
* if no matches were found.
|
|
1177
|
+
* @param {OrderRevisionFindUniqueOrThrowArgs} args - Arguments to find a OrderRevision
|
|
1178
|
+
* @example
|
|
1179
|
+
* // Get one OrderRevision
|
|
1180
|
+
* const orderRevision = await prisma.orderRevision.findUniqueOrThrow({
|
|
1181
|
+
* where: {
|
|
1182
|
+
* // ... provide filter here
|
|
1183
|
+
* }
|
|
1184
|
+
* })
|
|
1185
|
+
*/
|
|
1186
|
+
findUniqueOrThrow<T extends OrderRevisionFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, OrderRevisionFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1187
|
+
/**
|
|
1188
|
+
* Find the first OrderRevision that matches the filter.
|
|
1189
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1190
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1191
|
+
* @param {OrderRevisionFindFirstArgs} args - Arguments to find a OrderRevision
|
|
1192
|
+
* @example
|
|
1193
|
+
* // Get one OrderRevision
|
|
1194
|
+
* const orderRevision = await prisma.orderRevision.findFirst({
|
|
1195
|
+
* where: {
|
|
1196
|
+
* // ... provide filter here
|
|
1197
|
+
* }
|
|
1198
|
+
* })
|
|
1199
|
+
*/
|
|
1200
|
+
findFirst<T extends OrderRevisionFindFirstArgs>(args?: Prisma.SelectSubset<T, OrderRevisionFindFirstArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1201
|
+
/**
|
|
1202
|
+
* Find the first OrderRevision that matches the filter or
|
|
1203
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
1204
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1205
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1206
|
+
* @param {OrderRevisionFindFirstOrThrowArgs} args - Arguments to find a OrderRevision
|
|
1207
|
+
* @example
|
|
1208
|
+
* // Get one OrderRevision
|
|
1209
|
+
* const orderRevision = await prisma.orderRevision.findFirstOrThrow({
|
|
1210
|
+
* where: {
|
|
1211
|
+
* // ... provide filter here
|
|
1212
|
+
* }
|
|
1213
|
+
* })
|
|
1214
|
+
*/
|
|
1215
|
+
findFirstOrThrow<T extends OrderRevisionFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, OrderRevisionFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1216
|
+
/**
|
|
1217
|
+
* Find zero or more OrderRevisions that matches the filter.
|
|
1218
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1219
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1220
|
+
* @param {OrderRevisionFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
1221
|
+
* @example
|
|
1222
|
+
* // Get all OrderRevisions
|
|
1223
|
+
* const orderRevisions = await prisma.orderRevision.findMany()
|
|
1224
|
+
*
|
|
1225
|
+
* // Get first 10 OrderRevisions
|
|
1226
|
+
* const orderRevisions = await prisma.orderRevision.findMany({ take: 10 })
|
|
1227
|
+
*
|
|
1228
|
+
* // Only select the `id`
|
|
1229
|
+
* const orderRevisionWithIdOnly = await prisma.orderRevision.findMany({ select: { id: true } })
|
|
1230
|
+
*
|
|
1231
|
+
*/
|
|
1232
|
+
findMany<T extends OrderRevisionFindManyArgs>(args?: Prisma.SelectSubset<T, OrderRevisionFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
1233
|
+
/**
|
|
1234
|
+
* Create a OrderRevision.
|
|
1235
|
+
* @param {OrderRevisionCreateArgs} args - Arguments to create a OrderRevision.
|
|
1236
|
+
* @example
|
|
1237
|
+
* // Create one OrderRevision
|
|
1238
|
+
* const OrderRevision = await prisma.orderRevision.create({
|
|
1239
|
+
* data: {
|
|
1240
|
+
* // ... data to create a OrderRevision
|
|
1241
|
+
* }
|
|
1242
|
+
* })
|
|
1243
|
+
*
|
|
1244
|
+
*/
|
|
1245
|
+
create<T extends OrderRevisionCreateArgs>(args: Prisma.SelectSubset<T, OrderRevisionCreateArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1246
|
+
/**
|
|
1247
|
+
* Create many OrderRevisions.
|
|
1248
|
+
* @param {OrderRevisionCreateManyArgs} args - Arguments to create many OrderRevisions.
|
|
1249
|
+
* @example
|
|
1250
|
+
* // Create many OrderRevisions
|
|
1251
|
+
* const orderRevision = await prisma.orderRevision.createMany({
|
|
1252
|
+
* data: [
|
|
1253
|
+
* // ... provide data here
|
|
1254
|
+
* ]
|
|
1255
|
+
* })
|
|
1256
|
+
*
|
|
1257
|
+
*/
|
|
1258
|
+
createMany<T extends OrderRevisionCreateManyArgs>(args?: Prisma.SelectSubset<T, OrderRevisionCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1259
|
+
/**
|
|
1260
|
+
* Create many OrderRevisions and returns the data saved in the database.
|
|
1261
|
+
* @param {OrderRevisionCreateManyAndReturnArgs} args - Arguments to create many OrderRevisions.
|
|
1262
|
+
* @example
|
|
1263
|
+
* // Create many OrderRevisions
|
|
1264
|
+
* const orderRevision = await prisma.orderRevision.createManyAndReturn({
|
|
1265
|
+
* data: [
|
|
1266
|
+
* // ... provide data here
|
|
1267
|
+
* ]
|
|
1268
|
+
* })
|
|
1269
|
+
*
|
|
1270
|
+
* // Create many OrderRevisions and only return the `id`
|
|
1271
|
+
* const orderRevisionWithIdOnly = await prisma.orderRevision.createManyAndReturn({
|
|
1272
|
+
* select: { id: true },
|
|
1273
|
+
* data: [
|
|
1274
|
+
* // ... provide data here
|
|
1275
|
+
* ]
|
|
1276
|
+
* })
|
|
1277
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1278
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1279
|
+
*
|
|
1280
|
+
*/
|
|
1281
|
+
createManyAndReturn<T extends OrderRevisionCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, OrderRevisionCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
1282
|
+
/**
|
|
1283
|
+
* Delete a OrderRevision.
|
|
1284
|
+
* @param {OrderRevisionDeleteArgs} args - Arguments to delete one OrderRevision.
|
|
1285
|
+
* @example
|
|
1286
|
+
* // Delete one OrderRevision
|
|
1287
|
+
* const OrderRevision = await prisma.orderRevision.delete({
|
|
1288
|
+
* where: {
|
|
1289
|
+
* // ... filter to delete one OrderRevision
|
|
1290
|
+
* }
|
|
1291
|
+
* })
|
|
1292
|
+
*
|
|
1293
|
+
*/
|
|
1294
|
+
delete<T extends OrderRevisionDeleteArgs>(args: Prisma.SelectSubset<T, OrderRevisionDeleteArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1295
|
+
/**
|
|
1296
|
+
* Update one OrderRevision.
|
|
1297
|
+
* @param {OrderRevisionUpdateArgs} args - Arguments to update one OrderRevision.
|
|
1298
|
+
* @example
|
|
1299
|
+
* // Update one OrderRevision
|
|
1300
|
+
* const orderRevision = await prisma.orderRevision.update({
|
|
1301
|
+
* where: {
|
|
1302
|
+
* // ... provide filter here
|
|
1303
|
+
* },
|
|
1304
|
+
* data: {
|
|
1305
|
+
* // ... provide data here
|
|
1306
|
+
* }
|
|
1307
|
+
* })
|
|
1308
|
+
*
|
|
1309
|
+
*/
|
|
1310
|
+
update<T extends OrderRevisionUpdateArgs>(args: Prisma.SelectSubset<T, OrderRevisionUpdateArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1311
|
+
/**
|
|
1312
|
+
* Delete zero or more OrderRevisions.
|
|
1313
|
+
* @param {OrderRevisionDeleteManyArgs} args - Arguments to filter OrderRevisions to delete.
|
|
1314
|
+
* @example
|
|
1315
|
+
* // Delete a few OrderRevisions
|
|
1316
|
+
* const { count } = await prisma.orderRevision.deleteMany({
|
|
1317
|
+
* where: {
|
|
1318
|
+
* // ... provide filter here
|
|
1319
|
+
* }
|
|
1320
|
+
* })
|
|
1321
|
+
*
|
|
1322
|
+
*/
|
|
1323
|
+
deleteMany<T extends OrderRevisionDeleteManyArgs>(args?: Prisma.SelectSubset<T, OrderRevisionDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1324
|
+
/**
|
|
1325
|
+
* Update zero or more OrderRevisions.
|
|
1326
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1327
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1328
|
+
* @param {OrderRevisionUpdateManyArgs} args - Arguments to update one or more rows.
|
|
1329
|
+
* @example
|
|
1330
|
+
* // Update many OrderRevisions
|
|
1331
|
+
* const orderRevision = await prisma.orderRevision.updateMany({
|
|
1332
|
+
* where: {
|
|
1333
|
+
* // ... provide filter here
|
|
1334
|
+
* },
|
|
1335
|
+
* data: {
|
|
1336
|
+
* // ... provide data here
|
|
1337
|
+
* }
|
|
1338
|
+
* })
|
|
1339
|
+
*
|
|
1340
|
+
*/
|
|
1341
|
+
updateMany<T extends OrderRevisionUpdateManyArgs>(args: Prisma.SelectSubset<T, OrderRevisionUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>;
|
|
1342
|
+
/**
|
|
1343
|
+
* Update zero or more OrderRevisions and returns the data updated in the database.
|
|
1344
|
+
* @param {OrderRevisionUpdateManyAndReturnArgs} args - Arguments to update many OrderRevisions.
|
|
1345
|
+
* @example
|
|
1346
|
+
* // Update many OrderRevisions
|
|
1347
|
+
* const orderRevision = await prisma.orderRevision.updateManyAndReturn({
|
|
1348
|
+
* where: {
|
|
1349
|
+
* // ... provide filter here
|
|
1350
|
+
* },
|
|
1351
|
+
* data: [
|
|
1352
|
+
* // ... provide data here
|
|
1353
|
+
* ]
|
|
1354
|
+
* })
|
|
1355
|
+
*
|
|
1356
|
+
* // Update zero or more OrderRevisions and only return the `id`
|
|
1357
|
+
* const orderRevisionWithIdOnly = await prisma.orderRevision.updateManyAndReturn({
|
|
1358
|
+
* select: { id: true },
|
|
1359
|
+
* where: {
|
|
1360
|
+
* // ... provide filter here
|
|
1361
|
+
* },
|
|
1362
|
+
* data: [
|
|
1363
|
+
* // ... provide data here
|
|
1364
|
+
* ]
|
|
1365
|
+
* })
|
|
1366
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1367
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1368
|
+
*
|
|
1369
|
+
*/
|
|
1370
|
+
updateManyAndReturn<T extends OrderRevisionUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, OrderRevisionUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
1371
|
+
/**
|
|
1372
|
+
* Create or update one OrderRevision.
|
|
1373
|
+
* @param {OrderRevisionUpsertArgs} args - Arguments to update or create a OrderRevision.
|
|
1374
|
+
* @example
|
|
1375
|
+
* // Update or create a OrderRevision
|
|
1376
|
+
* const orderRevision = await prisma.orderRevision.upsert({
|
|
1377
|
+
* create: {
|
|
1378
|
+
* // ... data to create a OrderRevision
|
|
1379
|
+
* },
|
|
1380
|
+
* update: {
|
|
1381
|
+
* // ... in case it already exists, update
|
|
1382
|
+
* },
|
|
1383
|
+
* where: {
|
|
1384
|
+
* // ... the filter for the OrderRevision we want to update
|
|
1385
|
+
* }
|
|
1386
|
+
* })
|
|
1387
|
+
*/
|
|
1388
|
+
upsert<T extends OrderRevisionUpsertArgs>(args: Prisma.SelectSubset<T, OrderRevisionUpsertArgs<ExtArgs>>): Prisma.Prisma__OrderRevisionClient<runtime.Types.Result.GetResult<Prisma.$OrderRevisionPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1389
|
+
/**
|
|
1390
|
+
* Count the number of OrderRevisions.
|
|
1391
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1392
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1393
|
+
* @param {OrderRevisionCountArgs} args - Arguments to filter OrderRevisions to count.
|
|
1394
|
+
* @example
|
|
1395
|
+
* // Count the number of OrderRevisions
|
|
1396
|
+
* const count = await prisma.orderRevision.count({
|
|
1397
|
+
* where: {
|
|
1398
|
+
* // ... the filter for the OrderRevisions we want to count
|
|
1399
|
+
* }
|
|
1400
|
+
* })
|
|
1401
|
+
**/
|
|
1402
|
+
count<T extends OrderRevisionCountArgs>(args?: Prisma.Subset<T, OrderRevisionCountArgs>): Prisma.PrismaPromise<T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType<T['select'], OrderRevisionCountAggregateOutputType> : number>;
|
|
1403
|
+
/**
|
|
1404
|
+
* Allows you to perform aggregations operations on a OrderRevision.
|
|
1405
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1406
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1407
|
+
* @param {OrderRevisionAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
1408
|
+
* @example
|
|
1409
|
+
* // Ordered by age ascending
|
|
1410
|
+
* // Where email contains prisma.io
|
|
1411
|
+
* // Limited to the 10 users
|
|
1412
|
+
* const aggregations = await prisma.user.aggregate({
|
|
1413
|
+
* _avg: {
|
|
1414
|
+
* age: true,
|
|
1415
|
+
* },
|
|
1416
|
+
* where: {
|
|
1417
|
+
* email: {
|
|
1418
|
+
* contains: "prisma.io",
|
|
1419
|
+
* },
|
|
1420
|
+
* },
|
|
1421
|
+
* orderBy: {
|
|
1422
|
+
* age: "asc",
|
|
1423
|
+
* },
|
|
1424
|
+
* take: 10,
|
|
1425
|
+
* })
|
|
1426
|
+
**/
|
|
1427
|
+
aggregate<T extends OrderRevisionAggregateArgs>(args: Prisma.Subset<T, OrderRevisionAggregateArgs>): Prisma.PrismaPromise<GetOrderRevisionAggregateType<T>>;
|
|
1428
|
+
/**
|
|
1429
|
+
* Group by OrderRevision.
|
|
1430
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
1431
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
1432
|
+
* @param {OrderRevisionGroupByArgs} args - Group by arguments.
|
|
1433
|
+
* @example
|
|
1434
|
+
* // Group by city, order by createdAt, get count
|
|
1435
|
+
* const result = await prisma.user.groupBy({
|
|
1436
|
+
* by: ['city', 'createdAt'],
|
|
1437
|
+
* orderBy: {
|
|
1438
|
+
* createdAt: true
|
|
1439
|
+
* },
|
|
1440
|
+
* _count: {
|
|
1441
|
+
* _all: true
|
|
1442
|
+
* },
|
|
1443
|
+
* })
|
|
1444
|
+
*
|
|
1445
|
+
**/
|
|
1446
|
+
groupBy<T extends OrderRevisionGroupByArgs, HasSelectOrTake extends Prisma.Or<Prisma.Extends<'skip', Prisma.Keys<T>>, Prisma.Extends<'take', Prisma.Keys<T>>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? {
|
|
1447
|
+
orderBy: OrderRevisionGroupByArgs['orderBy'];
|
|
1448
|
+
} : {
|
|
1449
|
+
orderBy?: OrderRevisionGroupByArgs['orderBy'];
|
|
1450
|
+
}, 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 ? {
|
|
1451
|
+
[P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [
|
|
1452
|
+
Error,
|
|
1453
|
+
'Field ',
|
|
1454
|
+
P,
|
|
1455
|
+
` in "having" needs to be provided in "by"`
|
|
1456
|
+
];
|
|
1457
|
+
}[HavingFields] : 'take' extends Prisma.Keys<T> ? 'orderBy' extends Prisma.Keys<T> ? ByValid extends Prisma.True ? {} : {
|
|
1458
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1459
|
+
}[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 ? {} : {
|
|
1460
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1461
|
+
}[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : {
|
|
1462
|
+
[P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
|
|
1463
|
+
}[OrderFields]>(args: Prisma.SubsetIntersection<T, OrderRevisionGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetOrderRevisionGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>;
|
|
1464
|
+
/**
|
|
1465
|
+
* Fields of the OrderRevision model
|
|
1466
|
+
*/
|
|
1467
|
+
readonly fields: OrderRevisionFieldRefs;
|
|
1468
|
+
}
|
|
1469
|
+
/**
|
|
1470
|
+
* The delegate class that acts as a "Promise-like" for OrderRevision.
|
|
1471
|
+
* Why is this prefixed with `Prisma__`?
|
|
1472
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
1473
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
1474
|
+
*/
|
|
1475
|
+
export interface Prisma__OrderRevisionClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1476
|
+
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1477
|
+
createdBy<T extends Prisma.UserDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.UserDefaultArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1478
|
+
updatedBy<T extends Prisma.UserDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.UserDefaultArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1479
|
+
order<T extends Prisma.OrderDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.OrderDefaultArgs<ExtArgs>>): Prisma.Prisma__OrderClient<runtime.Types.Result.GetResult<Prisma.$OrderPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1480
|
+
orderRuns<T extends Prisma.OrderRevision$orderRunsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.OrderRevision$orderRunsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OrderRunPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1481
|
+
operations<T extends Prisma.OrderRevision$operationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.OrderRevision$operationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OperationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1482
|
+
/**
|
|
1483
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1484
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
1485
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1486
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
1487
|
+
*/
|
|
1488
|
+
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>;
|
|
1489
|
+
/**
|
|
1490
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
1491
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1492
|
+
* @returns A Promise for the completion of the callback.
|
|
1493
|
+
*/
|
|
1494
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>;
|
|
1495
|
+
/**
|
|
1496
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1497
|
+
* resolved value cannot be modified from the callback.
|
|
1498
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1499
|
+
* @returns A Promise for the completion of the callback.
|
|
1500
|
+
*/
|
|
1501
|
+
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>;
|
|
1502
|
+
}
|
|
1503
|
+
/**
|
|
1504
|
+
* Fields of the OrderRevision model
|
|
1505
|
+
*/
|
|
1506
|
+
export interface OrderRevisionFieldRefs {
|
|
1507
|
+
readonly id: Prisma.FieldRef<"OrderRevision", 'Int'>;
|
|
1508
|
+
readonly orderId: Prisma.FieldRef<"OrderRevision", 'Int'>;
|
|
1509
|
+
readonly revNo: Prisma.FieldRef<"OrderRevision", 'Int'>;
|
|
1510
|
+
readonly status: Prisma.FieldRef<"OrderRevision", 'RevisionStatus'>;
|
|
1511
|
+
readonly description: Prisma.FieldRef<"OrderRevision", 'String'>;
|
|
1512
|
+
readonly changeSummary: Prisma.FieldRef<"OrderRevision", 'String'>;
|
|
1513
|
+
readonly createdAt: Prisma.FieldRef<"OrderRevision", 'DateTime'>;
|
|
1514
|
+
readonly createdById: Prisma.FieldRef<"OrderRevision", 'Int'>;
|
|
1515
|
+
readonly updatedAt: Prisma.FieldRef<"OrderRevision", 'DateTime'>;
|
|
1516
|
+
readonly updatedById: Prisma.FieldRef<"OrderRevision", 'Int'>;
|
|
1517
|
+
}
|
|
1518
|
+
/**
|
|
1519
|
+
* OrderRevision findUnique
|
|
1520
|
+
*/
|
|
1521
|
+
export type OrderRevisionFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1522
|
+
/**
|
|
1523
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1524
|
+
*/
|
|
1525
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1526
|
+
/**
|
|
1527
|
+
* Omit specific fields from the OrderRevision
|
|
1528
|
+
*/
|
|
1529
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1530
|
+
/**
|
|
1531
|
+
* Choose, which related nodes to fetch as well
|
|
1532
|
+
*/
|
|
1533
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1534
|
+
/**
|
|
1535
|
+
* Filter, which OrderRevision to fetch.
|
|
1536
|
+
*/
|
|
1537
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
1538
|
+
};
|
|
1539
|
+
/**
|
|
1540
|
+
* OrderRevision findUniqueOrThrow
|
|
1541
|
+
*/
|
|
1542
|
+
export type OrderRevisionFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1543
|
+
/**
|
|
1544
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1545
|
+
*/
|
|
1546
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1547
|
+
/**
|
|
1548
|
+
* Omit specific fields from the OrderRevision
|
|
1549
|
+
*/
|
|
1550
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1551
|
+
/**
|
|
1552
|
+
* Choose, which related nodes to fetch as well
|
|
1553
|
+
*/
|
|
1554
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1555
|
+
/**
|
|
1556
|
+
* Filter, which OrderRevision to fetch.
|
|
1557
|
+
*/
|
|
1558
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
1559
|
+
};
|
|
1560
|
+
/**
|
|
1561
|
+
* OrderRevision findFirst
|
|
1562
|
+
*/
|
|
1563
|
+
export type OrderRevisionFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1564
|
+
/**
|
|
1565
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1566
|
+
*/
|
|
1567
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1568
|
+
/**
|
|
1569
|
+
* Omit specific fields from the OrderRevision
|
|
1570
|
+
*/
|
|
1571
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1572
|
+
/**
|
|
1573
|
+
* Choose, which related nodes to fetch as well
|
|
1574
|
+
*/
|
|
1575
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1576
|
+
/**
|
|
1577
|
+
* Filter, which OrderRevision to fetch.
|
|
1578
|
+
*/
|
|
1579
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1580
|
+
/**
|
|
1581
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1582
|
+
*
|
|
1583
|
+
* Determine the order of OrderRevisions to fetch.
|
|
1584
|
+
*/
|
|
1585
|
+
orderBy?: Prisma.OrderRevisionOrderByWithRelationInput | Prisma.OrderRevisionOrderByWithRelationInput[];
|
|
1586
|
+
/**
|
|
1587
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1588
|
+
*
|
|
1589
|
+
* Sets the position for searching for OrderRevisions.
|
|
1590
|
+
*/
|
|
1591
|
+
cursor?: Prisma.OrderRevisionWhereUniqueInput;
|
|
1592
|
+
/**
|
|
1593
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1594
|
+
*
|
|
1595
|
+
* Take `±n` OrderRevisions from the position of the cursor.
|
|
1596
|
+
*/
|
|
1597
|
+
take?: number;
|
|
1598
|
+
/**
|
|
1599
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1600
|
+
*
|
|
1601
|
+
* Skip the first `n` OrderRevisions.
|
|
1602
|
+
*/
|
|
1603
|
+
skip?: number;
|
|
1604
|
+
/**
|
|
1605
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1606
|
+
*
|
|
1607
|
+
* Filter by unique combinations of OrderRevisions.
|
|
1608
|
+
*/
|
|
1609
|
+
distinct?: Prisma.OrderRevisionScalarFieldEnum | Prisma.OrderRevisionScalarFieldEnum[];
|
|
1610
|
+
};
|
|
1611
|
+
/**
|
|
1612
|
+
* OrderRevision findFirstOrThrow
|
|
1613
|
+
*/
|
|
1614
|
+
export type OrderRevisionFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1615
|
+
/**
|
|
1616
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1617
|
+
*/
|
|
1618
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1619
|
+
/**
|
|
1620
|
+
* Omit specific fields from the OrderRevision
|
|
1621
|
+
*/
|
|
1622
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1623
|
+
/**
|
|
1624
|
+
* Choose, which related nodes to fetch as well
|
|
1625
|
+
*/
|
|
1626
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1627
|
+
/**
|
|
1628
|
+
* Filter, which OrderRevision to fetch.
|
|
1629
|
+
*/
|
|
1630
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1631
|
+
/**
|
|
1632
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1633
|
+
*
|
|
1634
|
+
* Determine the order of OrderRevisions to fetch.
|
|
1635
|
+
*/
|
|
1636
|
+
orderBy?: Prisma.OrderRevisionOrderByWithRelationInput | Prisma.OrderRevisionOrderByWithRelationInput[];
|
|
1637
|
+
/**
|
|
1638
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1639
|
+
*
|
|
1640
|
+
* Sets the position for searching for OrderRevisions.
|
|
1641
|
+
*/
|
|
1642
|
+
cursor?: Prisma.OrderRevisionWhereUniqueInput;
|
|
1643
|
+
/**
|
|
1644
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1645
|
+
*
|
|
1646
|
+
* Take `±n` OrderRevisions from the position of the cursor.
|
|
1647
|
+
*/
|
|
1648
|
+
take?: number;
|
|
1649
|
+
/**
|
|
1650
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1651
|
+
*
|
|
1652
|
+
* Skip the first `n` OrderRevisions.
|
|
1653
|
+
*/
|
|
1654
|
+
skip?: number;
|
|
1655
|
+
/**
|
|
1656
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1657
|
+
*
|
|
1658
|
+
* Filter by unique combinations of OrderRevisions.
|
|
1659
|
+
*/
|
|
1660
|
+
distinct?: Prisma.OrderRevisionScalarFieldEnum | Prisma.OrderRevisionScalarFieldEnum[];
|
|
1661
|
+
};
|
|
1662
|
+
/**
|
|
1663
|
+
* OrderRevision findMany
|
|
1664
|
+
*/
|
|
1665
|
+
export type OrderRevisionFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1666
|
+
/**
|
|
1667
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1668
|
+
*/
|
|
1669
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1670
|
+
/**
|
|
1671
|
+
* Omit specific fields from the OrderRevision
|
|
1672
|
+
*/
|
|
1673
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1674
|
+
/**
|
|
1675
|
+
* Choose, which related nodes to fetch as well
|
|
1676
|
+
*/
|
|
1677
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1678
|
+
/**
|
|
1679
|
+
* Filter, which OrderRevisions to fetch.
|
|
1680
|
+
*/
|
|
1681
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1682
|
+
/**
|
|
1683
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
1684
|
+
*
|
|
1685
|
+
* Determine the order of OrderRevisions to fetch.
|
|
1686
|
+
*/
|
|
1687
|
+
orderBy?: Prisma.OrderRevisionOrderByWithRelationInput | Prisma.OrderRevisionOrderByWithRelationInput[];
|
|
1688
|
+
/**
|
|
1689
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
1690
|
+
*
|
|
1691
|
+
* Sets the position for listing OrderRevisions.
|
|
1692
|
+
*/
|
|
1693
|
+
cursor?: Prisma.OrderRevisionWhereUniqueInput;
|
|
1694
|
+
/**
|
|
1695
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1696
|
+
*
|
|
1697
|
+
* Take `±n` OrderRevisions from the position of the cursor.
|
|
1698
|
+
*/
|
|
1699
|
+
take?: number;
|
|
1700
|
+
/**
|
|
1701
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
1702
|
+
*
|
|
1703
|
+
* Skip the first `n` OrderRevisions.
|
|
1704
|
+
*/
|
|
1705
|
+
skip?: number;
|
|
1706
|
+
/**
|
|
1707
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
1708
|
+
*
|
|
1709
|
+
* Filter by unique combinations of OrderRevisions.
|
|
1710
|
+
*/
|
|
1711
|
+
distinct?: Prisma.OrderRevisionScalarFieldEnum | Prisma.OrderRevisionScalarFieldEnum[];
|
|
1712
|
+
};
|
|
1713
|
+
/**
|
|
1714
|
+
* OrderRevision create
|
|
1715
|
+
*/
|
|
1716
|
+
export type OrderRevisionCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1717
|
+
/**
|
|
1718
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1719
|
+
*/
|
|
1720
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1721
|
+
/**
|
|
1722
|
+
* Omit specific fields from the OrderRevision
|
|
1723
|
+
*/
|
|
1724
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1725
|
+
/**
|
|
1726
|
+
* Choose, which related nodes to fetch as well
|
|
1727
|
+
*/
|
|
1728
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1729
|
+
/**
|
|
1730
|
+
* The data needed to create a OrderRevision.
|
|
1731
|
+
*/
|
|
1732
|
+
data: Prisma.XOR<Prisma.OrderRevisionCreateInput, Prisma.OrderRevisionUncheckedCreateInput>;
|
|
1733
|
+
};
|
|
1734
|
+
/**
|
|
1735
|
+
* OrderRevision createMany
|
|
1736
|
+
*/
|
|
1737
|
+
export type OrderRevisionCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1738
|
+
/**
|
|
1739
|
+
* The data used to create many OrderRevisions.
|
|
1740
|
+
*/
|
|
1741
|
+
data: Prisma.OrderRevisionCreateManyInput | Prisma.OrderRevisionCreateManyInput[];
|
|
1742
|
+
};
|
|
1743
|
+
/**
|
|
1744
|
+
* OrderRevision createManyAndReturn
|
|
1745
|
+
*/
|
|
1746
|
+
export type OrderRevisionCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1747
|
+
/**
|
|
1748
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1749
|
+
*/
|
|
1750
|
+
select?: Prisma.OrderRevisionSelectCreateManyAndReturn<ExtArgs> | null;
|
|
1751
|
+
/**
|
|
1752
|
+
* Omit specific fields from the OrderRevision
|
|
1753
|
+
*/
|
|
1754
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1755
|
+
/**
|
|
1756
|
+
* The data used to create many OrderRevisions.
|
|
1757
|
+
*/
|
|
1758
|
+
data: Prisma.OrderRevisionCreateManyInput | Prisma.OrderRevisionCreateManyInput[];
|
|
1759
|
+
/**
|
|
1760
|
+
* Choose, which related nodes to fetch as well
|
|
1761
|
+
*/
|
|
1762
|
+
include?: Prisma.OrderRevisionIncludeCreateManyAndReturn<ExtArgs> | null;
|
|
1763
|
+
};
|
|
1764
|
+
/**
|
|
1765
|
+
* OrderRevision update
|
|
1766
|
+
*/
|
|
1767
|
+
export type OrderRevisionUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1768
|
+
/**
|
|
1769
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1770
|
+
*/
|
|
1771
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1772
|
+
/**
|
|
1773
|
+
* Omit specific fields from the OrderRevision
|
|
1774
|
+
*/
|
|
1775
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1776
|
+
/**
|
|
1777
|
+
* Choose, which related nodes to fetch as well
|
|
1778
|
+
*/
|
|
1779
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1780
|
+
/**
|
|
1781
|
+
* The data needed to update a OrderRevision.
|
|
1782
|
+
*/
|
|
1783
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateInput, Prisma.OrderRevisionUncheckedUpdateInput>;
|
|
1784
|
+
/**
|
|
1785
|
+
* Choose, which OrderRevision to update.
|
|
1786
|
+
*/
|
|
1787
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
1788
|
+
};
|
|
1789
|
+
/**
|
|
1790
|
+
* OrderRevision updateMany
|
|
1791
|
+
*/
|
|
1792
|
+
export type OrderRevisionUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1793
|
+
/**
|
|
1794
|
+
* The data used to update OrderRevisions.
|
|
1795
|
+
*/
|
|
1796
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateManyMutationInput, Prisma.OrderRevisionUncheckedUpdateManyInput>;
|
|
1797
|
+
/**
|
|
1798
|
+
* Filter which OrderRevisions to update
|
|
1799
|
+
*/
|
|
1800
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1801
|
+
/**
|
|
1802
|
+
* Limit how many OrderRevisions to update.
|
|
1803
|
+
*/
|
|
1804
|
+
limit?: number;
|
|
1805
|
+
};
|
|
1806
|
+
/**
|
|
1807
|
+
* OrderRevision updateManyAndReturn
|
|
1808
|
+
*/
|
|
1809
|
+
export type OrderRevisionUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1810
|
+
/**
|
|
1811
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1812
|
+
*/
|
|
1813
|
+
select?: Prisma.OrderRevisionSelectUpdateManyAndReturn<ExtArgs> | null;
|
|
1814
|
+
/**
|
|
1815
|
+
* Omit specific fields from the OrderRevision
|
|
1816
|
+
*/
|
|
1817
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1818
|
+
/**
|
|
1819
|
+
* The data used to update OrderRevisions.
|
|
1820
|
+
*/
|
|
1821
|
+
data: Prisma.XOR<Prisma.OrderRevisionUpdateManyMutationInput, Prisma.OrderRevisionUncheckedUpdateManyInput>;
|
|
1822
|
+
/**
|
|
1823
|
+
* Filter which OrderRevisions to update
|
|
1824
|
+
*/
|
|
1825
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1826
|
+
/**
|
|
1827
|
+
* Limit how many OrderRevisions to update.
|
|
1828
|
+
*/
|
|
1829
|
+
limit?: number;
|
|
1830
|
+
/**
|
|
1831
|
+
* Choose, which related nodes to fetch as well
|
|
1832
|
+
*/
|
|
1833
|
+
include?: Prisma.OrderRevisionIncludeUpdateManyAndReturn<ExtArgs> | null;
|
|
1834
|
+
};
|
|
1835
|
+
/**
|
|
1836
|
+
* OrderRevision upsert
|
|
1837
|
+
*/
|
|
1838
|
+
export type OrderRevisionUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1839
|
+
/**
|
|
1840
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1841
|
+
*/
|
|
1842
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1843
|
+
/**
|
|
1844
|
+
* Omit specific fields from the OrderRevision
|
|
1845
|
+
*/
|
|
1846
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1847
|
+
/**
|
|
1848
|
+
* Choose, which related nodes to fetch as well
|
|
1849
|
+
*/
|
|
1850
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1851
|
+
/**
|
|
1852
|
+
* The filter to search for the OrderRevision to update in case it exists.
|
|
1853
|
+
*/
|
|
1854
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
1855
|
+
/**
|
|
1856
|
+
* In case the OrderRevision found by the `where` argument doesn't exist, create a new OrderRevision with this data.
|
|
1857
|
+
*/
|
|
1858
|
+
create: Prisma.XOR<Prisma.OrderRevisionCreateInput, Prisma.OrderRevisionUncheckedCreateInput>;
|
|
1859
|
+
/**
|
|
1860
|
+
* In case the OrderRevision was found with the provided `where` argument, update it with this data.
|
|
1861
|
+
*/
|
|
1862
|
+
update: Prisma.XOR<Prisma.OrderRevisionUpdateInput, Prisma.OrderRevisionUncheckedUpdateInput>;
|
|
1863
|
+
};
|
|
1864
|
+
/**
|
|
1865
|
+
* OrderRevision delete
|
|
1866
|
+
*/
|
|
1867
|
+
export type OrderRevisionDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1868
|
+
/**
|
|
1869
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1870
|
+
*/
|
|
1871
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1872
|
+
/**
|
|
1873
|
+
* Omit specific fields from the OrderRevision
|
|
1874
|
+
*/
|
|
1875
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1876
|
+
/**
|
|
1877
|
+
* Choose, which related nodes to fetch as well
|
|
1878
|
+
*/
|
|
1879
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1880
|
+
/**
|
|
1881
|
+
* Filter which OrderRevision to delete.
|
|
1882
|
+
*/
|
|
1883
|
+
where: Prisma.OrderRevisionWhereUniqueInput;
|
|
1884
|
+
};
|
|
1885
|
+
/**
|
|
1886
|
+
* OrderRevision deleteMany
|
|
1887
|
+
*/
|
|
1888
|
+
export type OrderRevisionDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1889
|
+
/**
|
|
1890
|
+
* Filter which OrderRevisions to delete
|
|
1891
|
+
*/
|
|
1892
|
+
where?: Prisma.OrderRevisionWhereInput;
|
|
1893
|
+
/**
|
|
1894
|
+
* Limit how many OrderRevisions to delete.
|
|
1895
|
+
*/
|
|
1896
|
+
limit?: number;
|
|
1897
|
+
};
|
|
1898
|
+
/**
|
|
1899
|
+
* OrderRevision.orderRuns
|
|
1900
|
+
*/
|
|
1901
|
+
export type OrderRevision$orderRunsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1902
|
+
/**
|
|
1903
|
+
* Select specific fields to fetch from the OrderRun
|
|
1904
|
+
*/
|
|
1905
|
+
select?: Prisma.OrderRunSelect<ExtArgs> | null;
|
|
1906
|
+
/**
|
|
1907
|
+
* Omit specific fields from the OrderRun
|
|
1908
|
+
*/
|
|
1909
|
+
omit?: Prisma.OrderRunOmit<ExtArgs> | null;
|
|
1910
|
+
/**
|
|
1911
|
+
* Choose, which related nodes to fetch as well
|
|
1912
|
+
*/
|
|
1913
|
+
include?: Prisma.OrderRunInclude<ExtArgs> | null;
|
|
1914
|
+
where?: Prisma.OrderRunWhereInput;
|
|
1915
|
+
orderBy?: Prisma.OrderRunOrderByWithRelationInput | Prisma.OrderRunOrderByWithRelationInput[];
|
|
1916
|
+
cursor?: Prisma.OrderRunWhereUniqueInput;
|
|
1917
|
+
take?: number;
|
|
1918
|
+
skip?: number;
|
|
1919
|
+
distinct?: Prisma.OrderRunScalarFieldEnum | Prisma.OrderRunScalarFieldEnum[];
|
|
1920
|
+
};
|
|
1921
|
+
/**
|
|
1922
|
+
* OrderRevision.operations
|
|
1923
|
+
*/
|
|
1924
|
+
export type OrderRevision$operationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1925
|
+
/**
|
|
1926
|
+
* Select specific fields to fetch from the Operation
|
|
1927
|
+
*/
|
|
1928
|
+
select?: Prisma.OperationSelect<ExtArgs> | null;
|
|
1929
|
+
/**
|
|
1930
|
+
* Omit specific fields from the Operation
|
|
1931
|
+
*/
|
|
1932
|
+
omit?: Prisma.OperationOmit<ExtArgs> | null;
|
|
1933
|
+
/**
|
|
1934
|
+
* Choose, which related nodes to fetch as well
|
|
1935
|
+
*/
|
|
1936
|
+
include?: Prisma.OperationInclude<ExtArgs> | null;
|
|
1937
|
+
where?: Prisma.OperationWhereInput;
|
|
1938
|
+
orderBy?: Prisma.OperationOrderByWithRelationInput | Prisma.OperationOrderByWithRelationInput[];
|
|
1939
|
+
cursor?: Prisma.OperationWhereUniqueInput;
|
|
1940
|
+
take?: number;
|
|
1941
|
+
skip?: number;
|
|
1942
|
+
distinct?: Prisma.OperationScalarFieldEnum | Prisma.OperationScalarFieldEnum[];
|
|
1943
|
+
};
|
|
1944
|
+
/**
|
|
1945
|
+
* OrderRevision without action
|
|
1946
|
+
*/
|
|
1947
|
+
export type OrderRevisionDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1948
|
+
/**
|
|
1949
|
+
* Select specific fields to fetch from the OrderRevision
|
|
1950
|
+
*/
|
|
1951
|
+
select?: Prisma.OrderRevisionSelect<ExtArgs> | null;
|
|
1952
|
+
/**
|
|
1953
|
+
* Omit specific fields from the OrderRevision
|
|
1954
|
+
*/
|
|
1955
|
+
omit?: Prisma.OrderRevisionOmit<ExtArgs> | null;
|
|
1956
|
+
/**
|
|
1957
|
+
* Choose, which related nodes to fetch as well
|
|
1958
|
+
*/
|
|
1959
|
+
include?: Prisma.OrderRevisionInclude<ExtArgs> | null;
|
|
1960
|
+
};
|
|
1961
|
+
export {};
|
|
1962
|
+
//# sourceMappingURL=OrderRevision.d.ts.map
|