@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,2722 @@
|
|
|
1
|
+
import * as runtime from "@prisma/client/runtime/client";
|
|
2
|
+
import type * as Prisma from "../models.js";
|
|
3
|
+
import { type PrismaClient } from "./class.js";
|
|
4
|
+
export type * from '../models.js';
|
|
5
|
+
export type DMMF = typeof runtime.DMMF;
|
|
6
|
+
export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>;
|
|
7
|
+
/**
|
|
8
|
+
* Prisma Errors
|
|
9
|
+
*/
|
|
10
|
+
export declare const PrismaClientKnownRequestError: typeof runtime.PrismaClientKnownRequestError;
|
|
11
|
+
export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError;
|
|
12
|
+
export declare const PrismaClientUnknownRequestError: typeof runtime.PrismaClientUnknownRequestError;
|
|
13
|
+
export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError;
|
|
14
|
+
export declare const PrismaClientRustPanicError: typeof runtime.PrismaClientRustPanicError;
|
|
15
|
+
export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError;
|
|
16
|
+
export declare const PrismaClientInitializationError: typeof runtime.PrismaClientInitializationError;
|
|
17
|
+
export type PrismaClientInitializationError = runtime.PrismaClientInitializationError;
|
|
18
|
+
export declare const PrismaClientValidationError: typeof runtime.PrismaClientValidationError;
|
|
19
|
+
export type PrismaClientValidationError = runtime.PrismaClientValidationError;
|
|
20
|
+
/**
|
|
21
|
+
* Re-export of sql-template-tag
|
|
22
|
+
*/
|
|
23
|
+
export declare const sql: typeof runtime.sqltag;
|
|
24
|
+
export declare const empty: runtime.Sql;
|
|
25
|
+
export declare const join: typeof runtime.join;
|
|
26
|
+
export declare const raw: typeof runtime.raw;
|
|
27
|
+
export declare const Sql: typeof runtime.Sql;
|
|
28
|
+
export type Sql = runtime.Sql;
|
|
29
|
+
/**
|
|
30
|
+
* Decimal.js
|
|
31
|
+
*/
|
|
32
|
+
export declare const Decimal: typeof runtime.Decimal;
|
|
33
|
+
export type Decimal = runtime.Decimal;
|
|
34
|
+
export type DecimalJsLike = runtime.DecimalJsLike;
|
|
35
|
+
/**
|
|
36
|
+
* Extensions
|
|
37
|
+
*/
|
|
38
|
+
export type Extension = runtime.Types.Extensions.UserArgs;
|
|
39
|
+
export declare const getExtensionContext: typeof runtime.Extensions.getExtensionContext;
|
|
40
|
+
export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>;
|
|
41
|
+
export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>;
|
|
42
|
+
export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>;
|
|
43
|
+
export type Exact<A, W> = runtime.Types.Public.Exact<A, W>;
|
|
44
|
+
export type PrismaVersion = {
|
|
45
|
+
client: string;
|
|
46
|
+
engine: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Prisma Client JS version: 7.5.0
|
|
50
|
+
* Query Engine version: 280c870be64f457428992c43c1f6d557fab6e29e
|
|
51
|
+
*/
|
|
52
|
+
export declare const prismaVersion: PrismaVersion;
|
|
53
|
+
/**
|
|
54
|
+
* Utility Types
|
|
55
|
+
*/
|
|
56
|
+
export type Bytes = runtime.Bytes;
|
|
57
|
+
export type JsonObject = runtime.JsonObject;
|
|
58
|
+
export type JsonArray = runtime.JsonArray;
|
|
59
|
+
export type JsonValue = runtime.JsonValue;
|
|
60
|
+
export type InputJsonObject = runtime.InputJsonObject;
|
|
61
|
+
export type InputJsonArray = runtime.InputJsonArray;
|
|
62
|
+
export type InputJsonValue = runtime.InputJsonValue;
|
|
63
|
+
export declare const NullTypes: {
|
|
64
|
+
DbNull: (new (secret: never) => typeof runtime.DbNull);
|
|
65
|
+
JsonNull: (new (secret: never) => typeof runtime.JsonNull);
|
|
66
|
+
AnyNull: (new (secret: never) => typeof runtime.AnyNull);
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
70
|
+
*
|
|
71
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
72
|
+
*/
|
|
73
|
+
export declare const DbNull: runtime.DbNullClass;
|
|
74
|
+
/**
|
|
75
|
+
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
76
|
+
*
|
|
77
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
78
|
+
*/
|
|
79
|
+
export declare const JsonNull: runtime.JsonNullClass;
|
|
80
|
+
/**
|
|
81
|
+
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
82
|
+
*
|
|
83
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
84
|
+
*/
|
|
85
|
+
export declare const AnyNull: runtime.AnyNullClass;
|
|
86
|
+
type SelectAndInclude = {
|
|
87
|
+
select: any;
|
|
88
|
+
include: any;
|
|
89
|
+
};
|
|
90
|
+
type SelectAndOmit = {
|
|
91
|
+
select: any;
|
|
92
|
+
omit: any;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
96
|
+
*/
|
|
97
|
+
type Prisma__Pick<T, K extends keyof T> = {
|
|
98
|
+
[P in K]: T[P];
|
|
99
|
+
};
|
|
100
|
+
export type Enumerable<T> = T | Array<T>;
|
|
101
|
+
/**
|
|
102
|
+
* Subset
|
|
103
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection
|
|
104
|
+
*/
|
|
105
|
+
export type Subset<T, U> = {
|
|
106
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* SelectSubset
|
|
110
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
|
|
111
|
+
* Additionally, it validates, if both select and include are present. If the case, it errors.
|
|
112
|
+
*/
|
|
113
|
+
export type SelectSubset<T, U> = {
|
|
114
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
115
|
+
} & (T extends SelectAndInclude ? 'Please either choose `select` or `include`.' : T extends SelectAndOmit ? 'Please either choose `select` or `omit`.' : {});
|
|
116
|
+
/**
|
|
117
|
+
* Subset + Intersection
|
|
118
|
+
* @desc From `T` pick properties that exist in `U` and intersect `K`
|
|
119
|
+
*/
|
|
120
|
+
export type SubsetIntersection<T, U, K> = {
|
|
121
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
122
|
+
} & K;
|
|
123
|
+
type Without<T, U> = {
|
|
124
|
+
[P in Exclude<keyof T, keyof U>]?: never;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* XOR is needed to have a real mutually exclusive union type
|
|
128
|
+
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
129
|
+
*/
|
|
130
|
+
export type XOR<T, U> = T extends object ? U extends object ? (Without<T, U> & U) | (Without<U, T> & T) : U : T;
|
|
131
|
+
/**
|
|
132
|
+
* Is T a Record?
|
|
133
|
+
*/
|
|
134
|
+
type IsObject<T extends any> = T extends Array<any> ? False : T extends Date ? False : T extends Uint8Array ? False : T extends BigInt ? False : T extends object ? True : False;
|
|
135
|
+
/**
|
|
136
|
+
* If it's T[], return T
|
|
137
|
+
*/
|
|
138
|
+
export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T;
|
|
139
|
+
/**
|
|
140
|
+
* From ts-toolbelt
|
|
141
|
+
*/
|
|
142
|
+
type __Either<O extends object, K extends Key> = Omit<O, K> & {
|
|
143
|
+
[P in K]: Prisma__Pick<O, P & keyof O>;
|
|
144
|
+
}[K];
|
|
145
|
+
type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>;
|
|
146
|
+
type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>;
|
|
147
|
+
type _Either<O extends object, K extends Key, strict extends Boolean> = {
|
|
148
|
+
1: EitherStrict<O, K>;
|
|
149
|
+
0: EitherLoose<O, K>;
|
|
150
|
+
}[strict];
|
|
151
|
+
export type Either<O extends object, K extends Key, strict extends Boolean = 1> = O extends unknown ? _Either<O, K, strict> : never;
|
|
152
|
+
export type Union = any;
|
|
153
|
+
export type PatchUndefined<O extends object, O1 extends object> = {
|
|
154
|
+
[K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K];
|
|
155
|
+
} & {};
|
|
156
|
+
/** Helper Types for "Merge" **/
|
|
157
|
+
export type IntersectOf<U extends Union> = (U extends unknown ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
|
158
|
+
export type Overwrite<O extends object, O1 extends object> = {
|
|
159
|
+
[K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
|
|
160
|
+
} & {};
|
|
161
|
+
type _Merge<U extends object> = IntersectOf<Overwrite<U, {
|
|
162
|
+
[K in keyof U]-?: At<U, K>;
|
|
163
|
+
}>>;
|
|
164
|
+
type Key = string | number | symbol;
|
|
165
|
+
type AtStrict<O extends object, K extends Key> = O[K & keyof O];
|
|
166
|
+
type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
|
|
167
|
+
export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
|
|
168
|
+
1: AtStrict<O, K>;
|
|
169
|
+
0: AtLoose<O, K>;
|
|
170
|
+
}[strict];
|
|
171
|
+
export type ComputeRaw<A extends any> = A extends Function ? A : {
|
|
172
|
+
[K in keyof A]: A[K];
|
|
173
|
+
} & {};
|
|
174
|
+
export type OptionalFlat<O> = {
|
|
175
|
+
[K in keyof O]?: O[K];
|
|
176
|
+
} & {};
|
|
177
|
+
type _Record<K extends keyof any, T> = {
|
|
178
|
+
[P in K]: T;
|
|
179
|
+
};
|
|
180
|
+
type NoExpand<T> = T extends unknown ? T : never;
|
|
181
|
+
export type AtLeast<O extends object, K extends string> = NoExpand<O extends unknown ? (K extends keyof O ? {
|
|
182
|
+
[P in K]: O[P];
|
|
183
|
+
} & O : O) | {
|
|
184
|
+
[P in keyof O as P extends K ? P : never]-?: O[P];
|
|
185
|
+
} & O : never>;
|
|
186
|
+
type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
|
|
187
|
+
export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
|
|
188
|
+
/** End Helper Types for "Merge" **/
|
|
189
|
+
export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
|
|
190
|
+
export type Boolean = True | False;
|
|
191
|
+
export type True = 1;
|
|
192
|
+
export type False = 0;
|
|
193
|
+
export type Not<B extends Boolean> = {
|
|
194
|
+
0: 1;
|
|
195
|
+
1: 0;
|
|
196
|
+
}[B];
|
|
197
|
+
export type Extends<A1 extends any, A2 extends any> = [A1] extends [never] ? 0 : A1 extends A2 ? 1 : 0;
|
|
198
|
+
export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
|
|
199
|
+
export type Or<B1 extends Boolean, B2 extends Boolean> = {
|
|
200
|
+
0: {
|
|
201
|
+
0: 0;
|
|
202
|
+
1: 1;
|
|
203
|
+
};
|
|
204
|
+
1: {
|
|
205
|
+
0: 1;
|
|
206
|
+
1: 1;
|
|
207
|
+
};
|
|
208
|
+
}[B1][B2];
|
|
209
|
+
export type Keys<U extends Union> = U extends unknown ? keyof U : never;
|
|
210
|
+
export type GetScalarType<T, O> = O extends object ? {
|
|
211
|
+
[P in keyof T]: P extends keyof O ? O[P] : never;
|
|
212
|
+
} : never;
|
|
213
|
+
type FieldPaths<T, U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>> = IsObject<T> extends True ? U : T;
|
|
214
|
+
export type GetHavingFields<T> = {
|
|
215
|
+
[K in keyof T]: Or<Or<Extends<'OR', K>, Extends<'AND', K>>, Extends<'NOT', K>> extends True ? T[K] extends infer TK ? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never> : never : {} extends FieldPaths<T[K]> ? never : K;
|
|
216
|
+
}[keyof T];
|
|
217
|
+
/**
|
|
218
|
+
* Convert tuple to union
|
|
219
|
+
*/
|
|
220
|
+
type _TupleToUnion<T> = T extends (infer E)[] ? E : never;
|
|
221
|
+
type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>;
|
|
222
|
+
export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T;
|
|
223
|
+
/**
|
|
224
|
+
* Like `Pick`, but additionally can also accept an array of keys
|
|
225
|
+
*/
|
|
226
|
+
export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>;
|
|
227
|
+
/**
|
|
228
|
+
* Exclude all keys with underscores
|
|
229
|
+
*/
|
|
230
|
+
export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T;
|
|
231
|
+
export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>;
|
|
232
|
+
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>;
|
|
233
|
+
export declare const ModelName: {
|
|
234
|
+
readonly Order: "Order";
|
|
235
|
+
readonly OrderRevision: "OrderRevision";
|
|
236
|
+
readonly Operation: "Operation";
|
|
237
|
+
readonly OperationFieldRef: "OperationFieldRef";
|
|
238
|
+
readonly OperationDependency: "OperationDependency";
|
|
239
|
+
readonly WorkCenter: "WorkCenter";
|
|
240
|
+
readonly WorkCenterUser: "WorkCenterUser";
|
|
241
|
+
readonly FieldSet: "FieldSet";
|
|
242
|
+
readonly FieldRecord: "FieldRecord";
|
|
243
|
+
readonly Field: "Field";
|
|
244
|
+
readonly Step: "Step";
|
|
245
|
+
readonly OrderRun: "OrderRun";
|
|
246
|
+
readonly OperationRun: "OperationRun";
|
|
247
|
+
readonly StepRun: "StepRun";
|
|
248
|
+
readonly FieldValue: "FieldValue";
|
|
249
|
+
readonly Item: "Item";
|
|
250
|
+
readonly ItemInstance: "ItemInstance";
|
|
251
|
+
readonly User: "User";
|
|
252
|
+
readonly UserPermission: "UserPermission";
|
|
253
|
+
readonly Session: "Session";
|
|
254
|
+
readonly SchemaVersion: "SchemaVersion";
|
|
255
|
+
readonly LaborTicket: "LaborTicket";
|
|
256
|
+
readonly AuditLog: "AuditLog";
|
|
257
|
+
readonly Attachment: "Attachment";
|
|
258
|
+
readonly FieldAttachment: "FieldAttachment";
|
|
259
|
+
readonly OperationRunComment: "OperationRunComment";
|
|
260
|
+
};
|
|
261
|
+
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
262
|
+
export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{
|
|
263
|
+
extArgs: runtime.Types.Extensions.InternalArgs;
|
|
264
|
+
}, runtime.Types.Utils.Record<string, any>> {
|
|
265
|
+
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>;
|
|
266
|
+
}
|
|
267
|
+
export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
268
|
+
globalOmitOptions: {
|
|
269
|
+
omit: GlobalOmitOptions;
|
|
270
|
+
};
|
|
271
|
+
meta: {
|
|
272
|
+
modelProps: "order" | "orderRevision" | "operation" | "operationFieldRef" | "operationDependency" | "workCenter" | "workCenterUser" | "fieldSet" | "fieldRecord" | "field" | "step" | "orderRun" | "operationRun" | "stepRun" | "fieldValue" | "item" | "itemInstance" | "user" | "userPermission" | "session" | "schemaVersion" | "laborTicket" | "auditLog" | "attachment" | "fieldAttachment" | "operationRunComment";
|
|
273
|
+
txIsolationLevel: TransactionIsolationLevel;
|
|
274
|
+
};
|
|
275
|
+
model: {
|
|
276
|
+
Order: {
|
|
277
|
+
payload: Prisma.$OrderPayload<ExtArgs>;
|
|
278
|
+
fields: Prisma.OrderFieldRefs;
|
|
279
|
+
operations: {
|
|
280
|
+
findUnique: {
|
|
281
|
+
args: Prisma.OrderFindUniqueArgs<ExtArgs>;
|
|
282
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload> | null;
|
|
283
|
+
};
|
|
284
|
+
findUniqueOrThrow: {
|
|
285
|
+
args: Prisma.OrderFindUniqueOrThrowArgs<ExtArgs>;
|
|
286
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
287
|
+
};
|
|
288
|
+
findFirst: {
|
|
289
|
+
args: Prisma.OrderFindFirstArgs<ExtArgs>;
|
|
290
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload> | null;
|
|
291
|
+
};
|
|
292
|
+
findFirstOrThrow: {
|
|
293
|
+
args: Prisma.OrderFindFirstOrThrowArgs<ExtArgs>;
|
|
294
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
295
|
+
};
|
|
296
|
+
findMany: {
|
|
297
|
+
args: Prisma.OrderFindManyArgs<ExtArgs>;
|
|
298
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>[];
|
|
299
|
+
};
|
|
300
|
+
create: {
|
|
301
|
+
args: Prisma.OrderCreateArgs<ExtArgs>;
|
|
302
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
303
|
+
};
|
|
304
|
+
createMany: {
|
|
305
|
+
args: Prisma.OrderCreateManyArgs<ExtArgs>;
|
|
306
|
+
result: BatchPayload;
|
|
307
|
+
};
|
|
308
|
+
createManyAndReturn: {
|
|
309
|
+
args: Prisma.OrderCreateManyAndReturnArgs<ExtArgs>;
|
|
310
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>[];
|
|
311
|
+
};
|
|
312
|
+
delete: {
|
|
313
|
+
args: Prisma.OrderDeleteArgs<ExtArgs>;
|
|
314
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
315
|
+
};
|
|
316
|
+
update: {
|
|
317
|
+
args: Prisma.OrderUpdateArgs<ExtArgs>;
|
|
318
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
319
|
+
};
|
|
320
|
+
deleteMany: {
|
|
321
|
+
args: Prisma.OrderDeleteManyArgs<ExtArgs>;
|
|
322
|
+
result: BatchPayload;
|
|
323
|
+
};
|
|
324
|
+
updateMany: {
|
|
325
|
+
args: Prisma.OrderUpdateManyArgs<ExtArgs>;
|
|
326
|
+
result: BatchPayload;
|
|
327
|
+
};
|
|
328
|
+
updateManyAndReturn: {
|
|
329
|
+
args: Prisma.OrderUpdateManyAndReturnArgs<ExtArgs>;
|
|
330
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>[];
|
|
331
|
+
};
|
|
332
|
+
upsert: {
|
|
333
|
+
args: Prisma.OrderUpsertArgs<ExtArgs>;
|
|
334
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderPayload>;
|
|
335
|
+
};
|
|
336
|
+
aggregate: {
|
|
337
|
+
args: Prisma.OrderAggregateArgs<ExtArgs>;
|
|
338
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOrder>;
|
|
339
|
+
};
|
|
340
|
+
groupBy: {
|
|
341
|
+
args: Prisma.OrderGroupByArgs<ExtArgs>;
|
|
342
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderGroupByOutputType>[];
|
|
343
|
+
};
|
|
344
|
+
count: {
|
|
345
|
+
args: Prisma.OrderCountArgs<ExtArgs>;
|
|
346
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderCountAggregateOutputType> | number;
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
OrderRevision: {
|
|
351
|
+
payload: Prisma.$OrderRevisionPayload<ExtArgs>;
|
|
352
|
+
fields: Prisma.OrderRevisionFieldRefs;
|
|
353
|
+
operations: {
|
|
354
|
+
findUnique: {
|
|
355
|
+
args: Prisma.OrderRevisionFindUniqueArgs<ExtArgs>;
|
|
356
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload> | null;
|
|
357
|
+
};
|
|
358
|
+
findUniqueOrThrow: {
|
|
359
|
+
args: Prisma.OrderRevisionFindUniqueOrThrowArgs<ExtArgs>;
|
|
360
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
361
|
+
};
|
|
362
|
+
findFirst: {
|
|
363
|
+
args: Prisma.OrderRevisionFindFirstArgs<ExtArgs>;
|
|
364
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload> | null;
|
|
365
|
+
};
|
|
366
|
+
findFirstOrThrow: {
|
|
367
|
+
args: Prisma.OrderRevisionFindFirstOrThrowArgs<ExtArgs>;
|
|
368
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
369
|
+
};
|
|
370
|
+
findMany: {
|
|
371
|
+
args: Prisma.OrderRevisionFindManyArgs<ExtArgs>;
|
|
372
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>[];
|
|
373
|
+
};
|
|
374
|
+
create: {
|
|
375
|
+
args: Prisma.OrderRevisionCreateArgs<ExtArgs>;
|
|
376
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
377
|
+
};
|
|
378
|
+
createMany: {
|
|
379
|
+
args: Prisma.OrderRevisionCreateManyArgs<ExtArgs>;
|
|
380
|
+
result: BatchPayload;
|
|
381
|
+
};
|
|
382
|
+
createManyAndReturn: {
|
|
383
|
+
args: Prisma.OrderRevisionCreateManyAndReturnArgs<ExtArgs>;
|
|
384
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>[];
|
|
385
|
+
};
|
|
386
|
+
delete: {
|
|
387
|
+
args: Prisma.OrderRevisionDeleteArgs<ExtArgs>;
|
|
388
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
389
|
+
};
|
|
390
|
+
update: {
|
|
391
|
+
args: Prisma.OrderRevisionUpdateArgs<ExtArgs>;
|
|
392
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
393
|
+
};
|
|
394
|
+
deleteMany: {
|
|
395
|
+
args: Prisma.OrderRevisionDeleteManyArgs<ExtArgs>;
|
|
396
|
+
result: BatchPayload;
|
|
397
|
+
};
|
|
398
|
+
updateMany: {
|
|
399
|
+
args: Prisma.OrderRevisionUpdateManyArgs<ExtArgs>;
|
|
400
|
+
result: BatchPayload;
|
|
401
|
+
};
|
|
402
|
+
updateManyAndReturn: {
|
|
403
|
+
args: Prisma.OrderRevisionUpdateManyAndReturnArgs<ExtArgs>;
|
|
404
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>[];
|
|
405
|
+
};
|
|
406
|
+
upsert: {
|
|
407
|
+
args: Prisma.OrderRevisionUpsertArgs<ExtArgs>;
|
|
408
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRevisionPayload>;
|
|
409
|
+
};
|
|
410
|
+
aggregate: {
|
|
411
|
+
args: Prisma.OrderRevisionAggregateArgs<ExtArgs>;
|
|
412
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOrderRevision>;
|
|
413
|
+
};
|
|
414
|
+
groupBy: {
|
|
415
|
+
args: Prisma.OrderRevisionGroupByArgs<ExtArgs>;
|
|
416
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderRevisionGroupByOutputType>[];
|
|
417
|
+
};
|
|
418
|
+
count: {
|
|
419
|
+
args: Prisma.OrderRevisionCountArgs<ExtArgs>;
|
|
420
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderRevisionCountAggregateOutputType> | number;
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
Operation: {
|
|
425
|
+
payload: Prisma.$OperationPayload<ExtArgs>;
|
|
426
|
+
fields: Prisma.OperationFieldRefs;
|
|
427
|
+
operations: {
|
|
428
|
+
findUnique: {
|
|
429
|
+
args: Prisma.OperationFindUniqueArgs<ExtArgs>;
|
|
430
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload> | null;
|
|
431
|
+
};
|
|
432
|
+
findUniqueOrThrow: {
|
|
433
|
+
args: Prisma.OperationFindUniqueOrThrowArgs<ExtArgs>;
|
|
434
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
435
|
+
};
|
|
436
|
+
findFirst: {
|
|
437
|
+
args: Prisma.OperationFindFirstArgs<ExtArgs>;
|
|
438
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload> | null;
|
|
439
|
+
};
|
|
440
|
+
findFirstOrThrow: {
|
|
441
|
+
args: Prisma.OperationFindFirstOrThrowArgs<ExtArgs>;
|
|
442
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
443
|
+
};
|
|
444
|
+
findMany: {
|
|
445
|
+
args: Prisma.OperationFindManyArgs<ExtArgs>;
|
|
446
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[];
|
|
447
|
+
};
|
|
448
|
+
create: {
|
|
449
|
+
args: Prisma.OperationCreateArgs<ExtArgs>;
|
|
450
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
451
|
+
};
|
|
452
|
+
createMany: {
|
|
453
|
+
args: Prisma.OperationCreateManyArgs<ExtArgs>;
|
|
454
|
+
result: BatchPayload;
|
|
455
|
+
};
|
|
456
|
+
createManyAndReturn: {
|
|
457
|
+
args: Prisma.OperationCreateManyAndReturnArgs<ExtArgs>;
|
|
458
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[];
|
|
459
|
+
};
|
|
460
|
+
delete: {
|
|
461
|
+
args: Prisma.OperationDeleteArgs<ExtArgs>;
|
|
462
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
463
|
+
};
|
|
464
|
+
update: {
|
|
465
|
+
args: Prisma.OperationUpdateArgs<ExtArgs>;
|
|
466
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
467
|
+
};
|
|
468
|
+
deleteMany: {
|
|
469
|
+
args: Prisma.OperationDeleteManyArgs<ExtArgs>;
|
|
470
|
+
result: BatchPayload;
|
|
471
|
+
};
|
|
472
|
+
updateMany: {
|
|
473
|
+
args: Prisma.OperationUpdateManyArgs<ExtArgs>;
|
|
474
|
+
result: BatchPayload;
|
|
475
|
+
};
|
|
476
|
+
updateManyAndReturn: {
|
|
477
|
+
args: Prisma.OperationUpdateManyAndReturnArgs<ExtArgs>;
|
|
478
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[];
|
|
479
|
+
};
|
|
480
|
+
upsert: {
|
|
481
|
+
args: Prisma.OperationUpsertArgs<ExtArgs>;
|
|
482
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>;
|
|
483
|
+
};
|
|
484
|
+
aggregate: {
|
|
485
|
+
args: Prisma.OperationAggregateArgs<ExtArgs>;
|
|
486
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperation>;
|
|
487
|
+
};
|
|
488
|
+
groupBy: {
|
|
489
|
+
args: Prisma.OperationGroupByArgs<ExtArgs>;
|
|
490
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationGroupByOutputType>[];
|
|
491
|
+
};
|
|
492
|
+
count: {
|
|
493
|
+
args: Prisma.OperationCountArgs<ExtArgs>;
|
|
494
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationCountAggregateOutputType> | number;
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
OperationFieldRef: {
|
|
499
|
+
payload: Prisma.$OperationFieldRefPayload<ExtArgs>;
|
|
500
|
+
fields: Prisma.OperationFieldRefFieldRefs;
|
|
501
|
+
operations: {
|
|
502
|
+
findUnique: {
|
|
503
|
+
args: Prisma.OperationFieldRefFindUniqueArgs<ExtArgs>;
|
|
504
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload> | null;
|
|
505
|
+
};
|
|
506
|
+
findUniqueOrThrow: {
|
|
507
|
+
args: Prisma.OperationFieldRefFindUniqueOrThrowArgs<ExtArgs>;
|
|
508
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
509
|
+
};
|
|
510
|
+
findFirst: {
|
|
511
|
+
args: Prisma.OperationFieldRefFindFirstArgs<ExtArgs>;
|
|
512
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload> | null;
|
|
513
|
+
};
|
|
514
|
+
findFirstOrThrow: {
|
|
515
|
+
args: Prisma.OperationFieldRefFindFirstOrThrowArgs<ExtArgs>;
|
|
516
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
517
|
+
};
|
|
518
|
+
findMany: {
|
|
519
|
+
args: Prisma.OperationFieldRefFindManyArgs<ExtArgs>;
|
|
520
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>[];
|
|
521
|
+
};
|
|
522
|
+
create: {
|
|
523
|
+
args: Prisma.OperationFieldRefCreateArgs<ExtArgs>;
|
|
524
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
525
|
+
};
|
|
526
|
+
createMany: {
|
|
527
|
+
args: Prisma.OperationFieldRefCreateManyArgs<ExtArgs>;
|
|
528
|
+
result: BatchPayload;
|
|
529
|
+
};
|
|
530
|
+
createManyAndReturn: {
|
|
531
|
+
args: Prisma.OperationFieldRefCreateManyAndReturnArgs<ExtArgs>;
|
|
532
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>[];
|
|
533
|
+
};
|
|
534
|
+
delete: {
|
|
535
|
+
args: Prisma.OperationFieldRefDeleteArgs<ExtArgs>;
|
|
536
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
537
|
+
};
|
|
538
|
+
update: {
|
|
539
|
+
args: Prisma.OperationFieldRefUpdateArgs<ExtArgs>;
|
|
540
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
541
|
+
};
|
|
542
|
+
deleteMany: {
|
|
543
|
+
args: Prisma.OperationFieldRefDeleteManyArgs<ExtArgs>;
|
|
544
|
+
result: BatchPayload;
|
|
545
|
+
};
|
|
546
|
+
updateMany: {
|
|
547
|
+
args: Prisma.OperationFieldRefUpdateManyArgs<ExtArgs>;
|
|
548
|
+
result: BatchPayload;
|
|
549
|
+
};
|
|
550
|
+
updateManyAndReturn: {
|
|
551
|
+
args: Prisma.OperationFieldRefUpdateManyAndReturnArgs<ExtArgs>;
|
|
552
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>[];
|
|
553
|
+
};
|
|
554
|
+
upsert: {
|
|
555
|
+
args: Prisma.OperationFieldRefUpsertArgs<ExtArgs>;
|
|
556
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationFieldRefPayload>;
|
|
557
|
+
};
|
|
558
|
+
aggregate: {
|
|
559
|
+
args: Prisma.OperationFieldRefAggregateArgs<ExtArgs>;
|
|
560
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperationFieldRef>;
|
|
561
|
+
};
|
|
562
|
+
groupBy: {
|
|
563
|
+
args: Prisma.OperationFieldRefGroupByArgs<ExtArgs>;
|
|
564
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationFieldRefGroupByOutputType>[];
|
|
565
|
+
};
|
|
566
|
+
count: {
|
|
567
|
+
args: Prisma.OperationFieldRefCountArgs<ExtArgs>;
|
|
568
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationFieldRefCountAggregateOutputType> | number;
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
OperationDependency: {
|
|
573
|
+
payload: Prisma.$OperationDependencyPayload<ExtArgs>;
|
|
574
|
+
fields: Prisma.OperationDependencyFieldRefs;
|
|
575
|
+
operations: {
|
|
576
|
+
findUnique: {
|
|
577
|
+
args: Prisma.OperationDependencyFindUniqueArgs<ExtArgs>;
|
|
578
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload> | null;
|
|
579
|
+
};
|
|
580
|
+
findUniqueOrThrow: {
|
|
581
|
+
args: Prisma.OperationDependencyFindUniqueOrThrowArgs<ExtArgs>;
|
|
582
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
583
|
+
};
|
|
584
|
+
findFirst: {
|
|
585
|
+
args: Prisma.OperationDependencyFindFirstArgs<ExtArgs>;
|
|
586
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload> | null;
|
|
587
|
+
};
|
|
588
|
+
findFirstOrThrow: {
|
|
589
|
+
args: Prisma.OperationDependencyFindFirstOrThrowArgs<ExtArgs>;
|
|
590
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
591
|
+
};
|
|
592
|
+
findMany: {
|
|
593
|
+
args: Prisma.OperationDependencyFindManyArgs<ExtArgs>;
|
|
594
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>[];
|
|
595
|
+
};
|
|
596
|
+
create: {
|
|
597
|
+
args: Prisma.OperationDependencyCreateArgs<ExtArgs>;
|
|
598
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
599
|
+
};
|
|
600
|
+
createMany: {
|
|
601
|
+
args: Prisma.OperationDependencyCreateManyArgs<ExtArgs>;
|
|
602
|
+
result: BatchPayload;
|
|
603
|
+
};
|
|
604
|
+
createManyAndReturn: {
|
|
605
|
+
args: Prisma.OperationDependencyCreateManyAndReturnArgs<ExtArgs>;
|
|
606
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>[];
|
|
607
|
+
};
|
|
608
|
+
delete: {
|
|
609
|
+
args: Prisma.OperationDependencyDeleteArgs<ExtArgs>;
|
|
610
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
611
|
+
};
|
|
612
|
+
update: {
|
|
613
|
+
args: Prisma.OperationDependencyUpdateArgs<ExtArgs>;
|
|
614
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
615
|
+
};
|
|
616
|
+
deleteMany: {
|
|
617
|
+
args: Prisma.OperationDependencyDeleteManyArgs<ExtArgs>;
|
|
618
|
+
result: BatchPayload;
|
|
619
|
+
};
|
|
620
|
+
updateMany: {
|
|
621
|
+
args: Prisma.OperationDependencyUpdateManyArgs<ExtArgs>;
|
|
622
|
+
result: BatchPayload;
|
|
623
|
+
};
|
|
624
|
+
updateManyAndReturn: {
|
|
625
|
+
args: Prisma.OperationDependencyUpdateManyAndReturnArgs<ExtArgs>;
|
|
626
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>[];
|
|
627
|
+
};
|
|
628
|
+
upsert: {
|
|
629
|
+
args: Prisma.OperationDependencyUpsertArgs<ExtArgs>;
|
|
630
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationDependencyPayload>;
|
|
631
|
+
};
|
|
632
|
+
aggregate: {
|
|
633
|
+
args: Prisma.OperationDependencyAggregateArgs<ExtArgs>;
|
|
634
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperationDependency>;
|
|
635
|
+
};
|
|
636
|
+
groupBy: {
|
|
637
|
+
args: Prisma.OperationDependencyGroupByArgs<ExtArgs>;
|
|
638
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationDependencyGroupByOutputType>[];
|
|
639
|
+
};
|
|
640
|
+
count: {
|
|
641
|
+
args: Prisma.OperationDependencyCountArgs<ExtArgs>;
|
|
642
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationDependencyCountAggregateOutputType> | number;
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
WorkCenter: {
|
|
647
|
+
payload: Prisma.$WorkCenterPayload<ExtArgs>;
|
|
648
|
+
fields: Prisma.WorkCenterFieldRefs;
|
|
649
|
+
operations: {
|
|
650
|
+
findUnique: {
|
|
651
|
+
args: Prisma.WorkCenterFindUniqueArgs<ExtArgs>;
|
|
652
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload> | null;
|
|
653
|
+
};
|
|
654
|
+
findUniqueOrThrow: {
|
|
655
|
+
args: Prisma.WorkCenterFindUniqueOrThrowArgs<ExtArgs>;
|
|
656
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
657
|
+
};
|
|
658
|
+
findFirst: {
|
|
659
|
+
args: Prisma.WorkCenterFindFirstArgs<ExtArgs>;
|
|
660
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload> | null;
|
|
661
|
+
};
|
|
662
|
+
findFirstOrThrow: {
|
|
663
|
+
args: Prisma.WorkCenterFindFirstOrThrowArgs<ExtArgs>;
|
|
664
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
665
|
+
};
|
|
666
|
+
findMany: {
|
|
667
|
+
args: Prisma.WorkCenterFindManyArgs<ExtArgs>;
|
|
668
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>[];
|
|
669
|
+
};
|
|
670
|
+
create: {
|
|
671
|
+
args: Prisma.WorkCenterCreateArgs<ExtArgs>;
|
|
672
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
673
|
+
};
|
|
674
|
+
createMany: {
|
|
675
|
+
args: Prisma.WorkCenterCreateManyArgs<ExtArgs>;
|
|
676
|
+
result: BatchPayload;
|
|
677
|
+
};
|
|
678
|
+
createManyAndReturn: {
|
|
679
|
+
args: Prisma.WorkCenterCreateManyAndReturnArgs<ExtArgs>;
|
|
680
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>[];
|
|
681
|
+
};
|
|
682
|
+
delete: {
|
|
683
|
+
args: Prisma.WorkCenterDeleteArgs<ExtArgs>;
|
|
684
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
685
|
+
};
|
|
686
|
+
update: {
|
|
687
|
+
args: Prisma.WorkCenterUpdateArgs<ExtArgs>;
|
|
688
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
689
|
+
};
|
|
690
|
+
deleteMany: {
|
|
691
|
+
args: Prisma.WorkCenterDeleteManyArgs<ExtArgs>;
|
|
692
|
+
result: BatchPayload;
|
|
693
|
+
};
|
|
694
|
+
updateMany: {
|
|
695
|
+
args: Prisma.WorkCenterUpdateManyArgs<ExtArgs>;
|
|
696
|
+
result: BatchPayload;
|
|
697
|
+
};
|
|
698
|
+
updateManyAndReturn: {
|
|
699
|
+
args: Prisma.WorkCenterUpdateManyAndReturnArgs<ExtArgs>;
|
|
700
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>[];
|
|
701
|
+
};
|
|
702
|
+
upsert: {
|
|
703
|
+
args: Prisma.WorkCenterUpsertArgs<ExtArgs>;
|
|
704
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterPayload>;
|
|
705
|
+
};
|
|
706
|
+
aggregate: {
|
|
707
|
+
args: Prisma.WorkCenterAggregateArgs<ExtArgs>;
|
|
708
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkCenter>;
|
|
709
|
+
};
|
|
710
|
+
groupBy: {
|
|
711
|
+
args: Prisma.WorkCenterGroupByArgs<ExtArgs>;
|
|
712
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkCenterGroupByOutputType>[];
|
|
713
|
+
};
|
|
714
|
+
count: {
|
|
715
|
+
args: Prisma.WorkCenterCountArgs<ExtArgs>;
|
|
716
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkCenterCountAggregateOutputType> | number;
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
WorkCenterUser: {
|
|
721
|
+
payload: Prisma.$WorkCenterUserPayload<ExtArgs>;
|
|
722
|
+
fields: Prisma.WorkCenterUserFieldRefs;
|
|
723
|
+
operations: {
|
|
724
|
+
findUnique: {
|
|
725
|
+
args: Prisma.WorkCenterUserFindUniqueArgs<ExtArgs>;
|
|
726
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload> | null;
|
|
727
|
+
};
|
|
728
|
+
findUniqueOrThrow: {
|
|
729
|
+
args: Prisma.WorkCenterUserFindUniqueOrThrowArgs<ExtArgs>;
|
|
730
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
731
|
+
};
|
|
732
|
+
findFirst: {
|
|
733
|
+
args: Prisma.WorkCenterUserFindFirstArgs<ExtArgs>;
|
|
734
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload> | null;
|
|
735
|
+
};
|
|
736
|
+
findFirstOrThrow: {
|
|
737
|
+
args: Prisma.WorkCenterUserFindFirstOrThrowArgs<ExtArgs>;
|
|
738
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
739
|
+
};
|
|
740
|
+
findMany: {
|
|
741
|
+
args: Prisma.WorkCenterUserFindManyArgs<ExtArgs>;
|
|
742
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>[];
|
|
743
|
+
};
|
|
744
|
+
create: {
|
|
745
|
+
args: Prisma.WorkCenterUserCreateArgs<ExtArgs>;
|
|
746
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
747
|
+
};
|
|
748
|
+
createMany: {
|
|
749
|
+
args: Prisma.WorkCenterUserCreateManyArgs<ExtArgs>;
|
|
750
|
+
result: BatchPayload;
|
|
751
|
+
};
|
|
752
|
+
createManyAndReturn: {
|
|
753
|
+
args: Prisma.WorkCenterUserCreateManyAndReturnArgs<ExtArgs>;
|
|
754
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>[];
|
|
755
|
+
};
|
|
756
|
+
delete: {
|
|
757
|
+
args: Prisma.WorkCenterUserDeleteArgs<ExtArgs>;
|
|
758
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
759
|
+
};
|
|
760
|
+
update: {
|
|
761
|
+
args: Prisma.WorkCenterUserUpdateArgs<ExtArgs>;
|
|
762
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
763
|
+
};
|
|
764
|
+
deleteMany: {
|
|
765
|
+
args: Prisma.WorkCenterUserDeleteManyArgs<ExtArgs>;
|
|
766
|
+
result: BatchPayload;
|
|
767
|
+
};
|
|
768
|
+
updateMany: {
|
|
769
|
+
args: Prisma.WorkCenterUserUpdateManyArgs<ExtArgs>;
|
|
770
|
+
result: BatchPayload;
|
|
771
|
+
};
|
|
772
|
+
updateManyAndReturn: {
|
|
773
|
+
args: Prisma.WorkCenterUserUpdateManyAndReturnArgs<ExtArgs>;
|
|
774
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>[];
|
|
775
|
+
};
|
|
776
|
+
upsert: {
|
|
777
|
+
args: Prisma.WorkCenterUserUpsertArgs<ExtArgs>;
|
|
778
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkCenterUserPayload>;
|
|
779
|
+
};
|
|
780
|
+
aggregate: {
|
|
781
|
+
args: Prisma.WorkCenterUserAggregateArgs<ExtArgs>;
|
|
782
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkCenterUser>;
|
|
783
|
+
};
|
|
784
|
+
groupBy: {
|
|
785
|
+
args: Prisma.WorkCenterUserGroupByArgs<ExtArgs>;
|
|
786
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkCenterUserGroupByOutputType>[];
|
|
787
|
+
};
|
|
788
|
+
count: {
|
|
789
|
+
args: Prisma.WorkCenterUserCountArgs<ExtArgs>;
|
|
790
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkCenterUserCountAggregateOutputType> | number;
|
|
791
|
+
};
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
FieldSet: {
|
|
795
|
+
payload: Prisma.$FieldSetPayload<ExtArgs>;
|
|
796
|
+
fields: Prisma.FieldSetFieldRefs;
|
|
797
|
+
operations: {
|
|
798
|
+
findUnique: {
|
|
799
|
+
args: Prisma.FieldSetFindUniqueArgs<ExtArgs>;
|
|
800
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload> | null;
|
|
801
|
+
};
|
|
802
|
+
findUniqueOrThrow: {
|
|
803
|
+
args: Prisma.FieldSetFindUniqueOrThrowArgs<ExtArgs>;
|
|
804
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
805
|
+
};
|
|
806
|
+
findFirst: {
|
|
807
|
+
args: Prisma.FieldSetFindFirstArgs<ExtArgs>;
|
|
808
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload> | null;
|
|
809
|
+
};
|
|
810
|
+
findFirstOrThrow: {
|
|
811
|
+
args: Prisma.FieldSetFindFirstOrThrowArgs<ExtArgs>;
|
|
812
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
813
|
+
};
|
|
814
|
+
findMany: {
|
|
815
|
+
args: Prisma.FieldSetFindManyArgs<ExtArgs>;
|
|
816
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>[];
|
|
817
|
+
};
|
|
818
|
+
create: {
|
|
819
|
+
args: Prisma.FieldSetCreateArgs<ExtArgs>;
|
|
820
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
821
|
+
};
|
|
822
|
+
createMany: {
|
|
823
|
+
args: Prisma.FieldSetCreateManyArgs<ExtArgs>;
|
|
824
|
+
result: BatchPayload;
|
|
825
|
+
};
|
|
826
|
+
createManyAndReturn: {
|
|
827
|
+
args: Prisma.FieldSetCreateManyAndReturnArgs<ExtArgs>;
|
|
828
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>[];
|
|
829
|
+
};
|
|
830
|
+
delete: {
|
|
831
|
+
args: Prisma.FieldSetDeleteArgs<ExtArgs>;
|
|
832
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
833
|
+
};
|
|
834
|
+
update: {
|
|
835
|
+
args: Prisma.FieldSetUpdateArgs<ExtArgs>;
|
|
836
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
837
|
+
};
|
|
838
|
+
deleteMany: {
|
|
839
|
+
args: Prisma.FieldSetDeleteManyArgs<ExtArgs>;
|
|
840
|
+
result: BatchPayload;
|
|
841
|
+
};
|
|
842
|
+
updateMany: {
|
|
843
|
+
args: Prisma.FieldSetUpdateManyArgs<ExtArgs>;
|
|
844
|
+
result: BatchPayload;
|
|
845
|
+
};
|
|
846
|
+
updateManyAndReturn: {
|
|
847
|
+
args: Prisma.FieldSetUpdateManyAndReturnArgs<ExtArgs>;
|
|
848
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>[];
|
|
849
|
+
};
|
|
850
|
+
upsert: {
|
|
851
|
+
args: Prisma.FieldSetUpsertArgs<ExtArgs>;
|
|
852
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldSetPayload>;
|
|
853
|
+
};
|
|
854
|
+
aggregate: {
|
|
855
|
+
args: Prisma.FieldSetAggregateArgs<ExtArgs>;
|
|
856
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateFieldSet>;
|
|
857
|
+
};
|
|
858
|
+
groupBy: {
|
|
859
|
+
args: Prisma.FieldSetGroupByArgs<ExtArgs>;
|
|
860
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldSetGroupByOutputType>[];
|
|
861
|
+
};
|
|
862
|
+
count: {
|
|
863
|
+
args: Prisma.FieldSetCountArgs<ExtArgs>;
|
|
864
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldSetCountAggregateOutputType> | number;
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
};
|
|
868
|
+
FieldRecord: {
|
|
869
|
+
payload: Prisma.$FieldRecordPayload<ExtArgs>;
|
|
870
|
+
fields: Prisma.FieldRecordFieldRefs;
|
|
871
|
+
operations: {
|
|
872
|
+
findUnique: {
|
|
873
|
+
args: Prisma.FieldRecordFindUniqueArgs<ExtArgs>;
|
|
874
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload> | null;
|
|
875
|
+
};
|
|
876
|
+
findUniqueOrThrow: {
|
|
877
|
+
args: Prisma.FieldRecordFindUniqueOrThrowArgs<ExtArgs>;
|
|
878
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
879
|
+
};
|
|
880
|
+
findFirst: {
|
|
881
|
+
args: Prisma.FieldRecordFindFirstArgs<ExtArgs>;
|
|
882
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload> | null;
|
|
883
|
+
};
|
|
884
|
+
findFirstOrThrow: {
|
|
885
|
+
args: Prisma.FieldRecordFindFirstOrThrowArgs<ExtArgs>;
|
|
886
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
887
|
+
};
|
|
888
|
+
findMany: {
|
|
889
|
+
args: Prisma.FieldRecordFindManyArgs<ExtArgs>;
|
|
890
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>[];
|
|
891
|
+
};
|
|
892
|
+
create: {
|
|
893
|
+
args: Prisma.FieldRecordCreateArgs<ExtArgs>;
|
|
894
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
895
|
+
};
|
|
896
|
+
createMany: {
|
|
897
|
+
args: Prisma.FieldRecordCreateManyArgs<ExtArgs>;
|
|
898
|
+
result: BatchPayload;
|
|
899
|
+
};
|
|
900
|
+
createManyAndReturn: {
|
|
901
|
+
args: Prisma.FieldRecordCreateManyAndReturnArgs<ExtArgs>;
|
|
902
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>[];
|
|
903
|
+
};
|
|
904
|
+
delete: {
|
|
905
|
+
args: Prisma.FieldRecordDeleteArgs<ExtArgs>;
|
|
906
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
907
|
+
};
|
|
908
|
+
update: {
|
|
909
|
+
args: Prisma.FieldRecordUpdateArgs<ExtArgs>;
|
|
910
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
911
|
+
};
|
|
912
|
+
deleteMany: {
|
|
913
|
+
args: Prisma.FieldRecordDeleteManyArgs<ExtArgs>;
|
|
914
|
+
result: BatchPayload;
|
|
915
|
+
};
|
|
916
|
+
updateMany: {
|
|
917
|
+
args: Prisma.FieldRecordUpdateManyArgs<ExtArgs>;
|
|
918
|
+
result: BatchPayload;
|
|
919
|
+
};
|
|
920
|
+
updateManyAndReturn: {
|
|
921
|
+
args: Prisma.FieldRecordUpdateManyAndReturnArgs<ExtArgs>;
|
|
922
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>[];
|
|
923
|
+
};
|
|
924
|
+
upsert: {
|
|
925
|
+
args: Prisma.FieldRecordUpsertArgs<ExtArgs>;
|
|
926
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldRecordPayload>;
|
|
927
|
+
};
|
|
928
|
+
aggregate: {
|
|
929
|
+
args: Prisma.FieldRecordAggregateArgs<ExtArgs>;
|
|
930
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateFieldRecord>;
|
|
931
|
+
};
|
|
932
|
+
groupBy: {
|
|
933
|
+
args: Prisma.FieldRecordGroupByArgs<ExtArgs>;
|
|
934
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldRecordGroupByOutputType>[];
|
|
935
|
+
};
|
|
936
|
+
count: {
|
|
937
|
+
args: Prisma.FieldRecordCountArgs<ExtArgs>;
|
|
938
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldRecordCountAggregateOutputType> | number;
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
};
|
|
942
|
+
Field: {
|
|
943
|
+
payload: Prisma.$FieldPayload<ExtArgs>;
|
|
944
|
+
fields: Prisma.FieldFieldRefs;
|
|
945
|
+
operations: {
|
|
946
|
+
findUnique: {
|
|
947
|
+
args: Prisma.FieldFindUniqueArgs<ExtArgs>;
|
|
948
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload> | null;
|
|
949
|
+
};
|
|
950
|
+
findUniqueOrThrow: {
|
|
951
|
+
args: Prisma.FieldFindUniqueOrThrowArgs<ExtArgs>;
|
|
952
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
953
|
+
};
|
|
954
|
+
findFirst: {
|
|
955
|
+
args: Prisma.FieldFindFirstArgs<ExtArgs>;
|
|
956
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload> | null;
|
|
957
|
+
};
|
|
958
|
+
findFirstOrThrow: {
|
|
959
|
+
args: Prisma.FieldFindFirstOrThrowArgs<ExtArgs>;
|
|
960
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
961
|
+
};
|
|
962
|
+
findMany: {
|
|
963
|
+
args: Prisma.FieldFindManyArgs<ExtArgs>;
|
|
964
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>[];
|
|
965
|
+
};
|
|
966
|
+
create: {
|
|
967
|
+
args: Prisma.FieldCreateArgs<ExtArgs>;
|
|
968
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
969
|
+
};
|
|
970
|
+
createMany: {
|
|
971
|
+
args: Prisma.FieldCreateManyArgs<ExtArgs>;
|
|
972
|
+
result: BatchPayload;
|
|
973
|
+
};
|
|
974
|
+
createManyAndReturn: {
|
|
975
|
+
args: Prisma.FieldCreateManyAndReturnArgs<ExtArgs>;
|
|
976
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>[];
|
|
977
|
+
};
|
|
978
|
+
delete: {
|
|
979
|
+
args: Prisma.FieldDeleteArgs<ExtArgs>;
|
|
980
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
981
|
+
};
|
|
982
|
+
update: {
|
|
983
|
+
args: Prisma.FieldUpdateArgs<ExtArgs>;
|
|
984
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
985
|
+
};
|
|
986
|
+
deleteMany: {
|
|
987
|
+
args: Prisma.FieldDeleteManyArgs<ExtArgs>;
|
|
988
|
+
result: BatchPayload;
|
|
989
|
+
};
|
|
990
|
+
updateMany: {
|
|
991
|
+
args: Prisma.FieldUpdateManyArgs<ExtArgs>;
|
|
992
|
+
result: BatchPayload;
|
|
993
|
+
};
|
|
994
|
+
updateManyAndReturn: {
|
|
995
|
+
args: Prisma.FieldUpdateManyAndReturnArgs<ExtArgs>;
|
|
996
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>[];
|
|
997
|
+
};
|
|
998
|
+
upsert: {
|
|
999
|
+
args: Prisma.FieldUpsertArgs<ExtArgs>;
|
|
1000
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldPayload>;
|
|
1001
|
+
};
|
|
1002
|
+
aggregate: {
|
|
1003
|
+
args: Prisma.FieldAggregateArgs<ExtArgs>;
|
|
1004
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateField>;
|
|
1005
|
+
};
|
|
1006
|
+
groupBy: {
|
|
1007
|
+
args: Prisma.FieldGroupByArgs<ExtArgs>;
|
|
1008
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldGroupByOutputType>[];
|
|
1009
|
+
};
|
|
1010
|
+
count: {
|
|
1011
|
+
args: Prisma.FieldCountArgs<ExtArgs>;
|
|
1012
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldCountAggregateOutputType> | number;
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
};
|
|
1016
|
+
Step: {
|
|
1017
|
+
payload: Prisma.$StepPayload<ExtArgs>;
|
|
1018
|
+
fields: Prisma.StepFieldRefs;
|
|
1019
|
+
operations: {
|
|
1020
|
+
findUnique: {
|
|
1021
|
+
args: Prisma.StepFindUniqueArgs<ExtArgs>;
|
|
1022
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload> | null;
|
|
1023
|
+
};
|
|
1024
|
+
findUniqueOrThrow: {
|
|
1025
|
+
args: Prisma.StepFindUniqueOrThrowArgs<ExtArgs>;
|
|
1026
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1027
|
+
};
|
|
1028
|
+
findFirst: {
|
|
1029
|
+
args: Prisma.StepFindFirstArgs<ExtArgs>;
|
|
1030
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload> | null;
|
|
1031
|
+
};
|
|
1032
|
+
findFirstOrThrow: {
|
|
1033
|
+
args: Prisma.StepFindFirstOrThrowArgs<ExtArgs>;
|
|
1034
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1035
|
+
};
|
|
1036
|
+
findMany: {
|
|
1037
|
+
args: Prisma.StepFindManyArgs<ExtArgs>;
|
|
1038
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>[];
|
|
1039
|
+
};
|
|
1040
|
+
create: {
|
|
1041
|
+
args: Prisma.StepCreateArgs<ExtArgs>;
|
|
1042
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1043
|
+
};
|
|
1044
|
+
createMany: {
|
|
1045
|
+
args: Prisma.StepCreateManyArgs<ExtArgs>;
|
|
1046
|
+
result: BatchPayload;
|
|
1047
|
+
};
|
|
1048
|
+
createManyAndReturn: {
|
|
1049
|
+
args: Prisma.StepCreateManyAndReturnArgs<ExtArgs>;
|
|
1050
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>[];
|
|
1051
|
+
};
|
|
1052
|
+
delete: {
|
|
1053
|
+
args: Prisma.StepDeleteArgs<ExtArgs>;
|
|
1054
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1055
|
+
};
|
|
1056
|
+
update: {
|
|
1057
|
+
args: Prisma.StepUpdateArgs<ExtArgs>;
|
|
1058
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1059
|
+
};
|
|
1060
|
+
deleteMany: {
|
|
1061
|
+
args: Prisma.StepDeleteManyArgs<ExtArgs>;
|
|
1062
|
+
result: BatchPayload;
|
|
1063
|
+
};
|
|
1064
|
+
updateMany: {
|
|
1065
|
+
args: Prisma.StepUpdateManyArgs<ExtArgs>;
|
|
1066
|
+
result: BatchPayload;
|
|
1067
|
+
};
|
|
1068
|
+
updateManyAndReturn: {
|
|
1069
|
+
args: Prisma.StepUpdateManyAndReturnArgs<ExtArgs>;
|
|
1070
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>[];
|
|
1071
|
+
};
|
|
1072
|
+
upsert: {
|
|
1073
|
+
args: Prisma.StepUpsertArgs<ExtArgs>;
|
|
1074
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepPayload>;
|
|
1075
|
+
};
|
|
1076
|
+
aggregate: {
|
|
1077
|
+
args: Prisma.StepAggregateArgs<ExtArgs>;
|
|
1078
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateStep>;
|
|
1079
|
+
};
|
|
1080
|
+
groupBy: {
|
|
1081
|
+
args: Prisma.StepGroupByArgs<ExtArgs>;
|
|
1082
|
+
result: runtime.Types.Utils.Optional<Prisma.StepGroupByOutputType>[];
|
|
1083
|
+
};
|
|
1084
|
+
count: {
|
|
1085
|
+
args: Prisma.StepCountArgs<ExtArgs>;
|
|
1086
|
+
result: runtime.Types.Utils.Optional<Prisma.StepCountAggregateOutputType> | number;
|
|
1087
|
+
};
|
|
1088
|
+
};
|
|
1089
|
+
};
|
|
1090
|
+
OrderRun: {
|
|
1091
|
+
payload: Prisma.$OrderRunPayload<ExtArgs>;
|
|
1092
|
+
fields: Prisma.OrderRunFieldRefs;
|
|
1093
|
+
operations: {
|
|
1094
|
+
findUnique: {
|
|
1095
|
+
args: Prisma.OrderRunFindUniqueArgs<ExtArgs>;
|
|
1096
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload> | null;
|
|
1097
|
+
};
|
|
1098
|
+
findUniqueOrThrow: {
|
|
1099
|
+
args: Prisma.OrderRunFindUniqueOrThrowArgs<ExtArgs>;
|
|
1100
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1101
|
+
};
|
|
1102
|
+
findFirst: {
|
|
1103
|
+
args: Prisma.OrderRunFindFirstArgs<ExtArgs>;
|
|
1104
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload> | null;
|
|
1105
|
+
};
|
|
1106
|
+
findFirstOrThrow: {
|
|
1107
|
+
args: Prisma.OrderRunFindFirstOrThrowArgs<ExtArgs>;
|
|
1108
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1109
|
+
};
|
|
1110
|
+
findMany: {
|
|
1111
|
+
args: Prisma.OrderRunFindManyArgs<ExtArgs>;
|
|
1112
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>[];
|
|
1113
|
+
};
|
|
1114
|
+
create: {
|
|
1115
|
+
args: Prisma.OrderRunCreateArgs<ExtArgs>;
|
|
1116
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1117
|
+
};
|
|
1118
|
+
createMany: {
|
|
1119
|
+
args: Prisma.OrderRunCreateManyArgs<ExtArgs>;
|
|
1120
|
+
result: BatchPayload;
|
|
1121
|
+
};
|
|
1122
|
+
createManyAndReturn: {
|
|
1123
|
+
args: Prisma.OrderRunCreateManyAndReturnArgs<ExtArgs>;
|
|
1124
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>[];
|
|
1125
|
+
};
|
|
1126
|
+
delete: {
|
|
1127
|
+
args: Prisma.OrderRunDeleteArgs<ExtArgs>;
|
|
1128
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1129
|
+
};
|
|
1130
|
+
update: {
|
|
1131
|
+
args: Prisma.OrderRunUpdateArgs<ExtArgs>;
|
|
1132
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1133
|
+
};
|
|
1134
|
+
deleteMany: {
|
|
1135
|
+
args: Prisma.OrderRunDeleteManyArgs<ExtArgs>;
|
|
1136
|
+
result: BatchPayload;
|
|
1137
|
+
};
|
|
1138
|
+
updateMany: {
|
|
1139
|
+
args: Prisma.OrderRunUpdateManyArgs<ExtArgs>;
|
|
1140
|
+
result: BatchPayload;
|
|
1141
|
+
};
|
|
1142
|
+
updateManyAndReturn: {
|
|
1143
|
+
args: Prisma.OrderRunUpdateManyAndReturnArgs<ExtArgs>;
|
|
1144
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>[];
|
|
1145
|
+
};
|
|
1146
|
+
upsert: {
|
|
1147
|
+
args: Prisma.OrderRunUpsertArgs<ExtArgs>;
|
|
1148
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OrderRunPayload>;
|
|
1149
|
+
};
|
|
1150
|
+
aggregate: {
|
|
1151
|
+
args: Prisma.OrderRunAggregateArgs<ExtArgs>;
|
|
1152
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOrderRun>;
|
|
1153
|
+
};
|
|
1154
|
+
groupBy: {
|
|
1155
|
+
args: Prisma.OrderRunGroupByArgs<ExtArgs>;
|
|
1156
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderRunGroupByOutputType>[];
|
|
1157
|
+
};
|
|
1158
|
+
count: {
|
|
1159
|
+
args: Prisma.OrderRunCountArgs<ExtArgs>;
|
|
1160
|
+
result: runtime.Types.Utils.Optional<Prisma.OrderRunCountAggregateOutputType> | number;
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
OperationRun: {
|
|
1165
|
+
payload: Prisma.$OperationRunPayload<ExtArgs>;
|
|
1166
|
+
fields: Prisma.OperationRunFieldRefs;
|
|
1167
|
+
operations: {
|
|
1168
|
+
findUnique: {
|
|
1169
|
+
args: Prisma.OperationRunFindUniqueArgs<ExtArgs>;
|
|
1170
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload> | null;
|
|
1171
|
+
};
|
|
1172
|
+
findUniqueOrThrow: {
|
|
1173
|
+
args: Prisma.OperationRunFindUniqueOrThrowArgs<ExtArgs>;
|
|
1174
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1175
|
+
};
|
|
1176
|
+
findFirst: {
|
|
1177
|
+
args: Prisma.OperationRunFindFirstArgs<ExtArgs>;
|
|
1178
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload> | null;
|
|
1179
|
+
};
|
|
1180
|
+
findFirstOrThrow: {
|
|
1181
|
+
args: Prisma.OperationRunFindFirstOrThrowArgs<ExtArgs>;
|
|
1182
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1183
|
+
};
|
|
1184
|
+
findMany: {
|
|
1185
|
+
args: Prisma.OperationRunFindManyArgs<ExtArgs>;
|
|
1186
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>[];
|
|
1187
|
+
};
|
|
1188
|
+
create: {
|
|
1189
|
+
args: Prisma.OperationRunCreateArgs<ExtArgs>;
|
|
1190
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1191
|
+
};
|
|
1192
|
+
createMany: {
|
|
1193
|
+
args: Prisma.OperationRunCreateManyArgs<ExtArgs>;
|
|
1194
|
+
result: BatchPayload;
|
|
1195
|
+
};
|
|
1196
|
+
createManyAndReturn: {
|
|
1197
|
+
args: Prisma.OperationRunCreateManyAndReturnArgs<ExtArgs>;
|
|
1198
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>[];
|
|
1199
|
+
};
|
|
1200
|
+
delete: {
|
|
1201
|
+
args: Prisma.OperationRunDeleteArgs<ExtArgs>;
|
|
1202
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1203
|
+
};
|
|
1204
|
+
update: {
|
|
1205
|
+
args: Prisma.OperationRunUpdateArgs<ExtArgs>;
|
|
1206
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1207
|
+
};
|
|
1208
|
+
deleteMany: {
|
|
1209
|
+
args: Prisma.OperationRunDeleteManyArgs<ExtArgs>;
|
|
1210
|
+
result: BatchPayload;
|
|
1211
|
+
};
|
|
1212
|
+
updateMany: {
|
|
1213
|
+
args: Prisma.OperationRunUpdateManyArgs<ExtArgs>;
|
|
1214
|
+
result: BatchPayload;
|
|
1215
|
+
};
|
|
1216
|
+
updateManyAndReturn: {
|
|
1217
|
+
args: Prisma.OperationRunUpdateManyAndReturnArgs<ExtArgs>;
|
|
1218
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>[];
|
|
1219
|
+
};
|
|
1220
|
+
upsert: {
|
|
1221
|
+
args: Prisma.OperationRunUpsertArgs<ExtArgs>;
|
|
1222
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunPayload>;
|
|
1223
|
+
};
|
|
1224
|
+
aggregate: {
|
|
1225
|
+
args: Prisma.OperationRunAggregateArgs<ExtArgs>;
|
|
1226
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperationRun>;
|
|
1227
|
+
};
|
|
1228
|
+
groupBy: {
|
|
1229
|
+
args: Prisma.OperationRunGroupByArgs<ExtArgs>;
|
|
1230
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationRunGroupByOutputType>[];
|
|
1231
|
+
};
|
|
1232
|
+
count: {
|
|
1233
|
+
args: Prisma.OperationRunCountArgs<ExtArgs>;
|
|
1234
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationRunCountAggregateOutputType> | number;
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
};
|
|
1238
|
+
StepRun: {
|
|
1239
|
+
payload: Prisma.$StepRunPayload<ExtArgs>;
|
|
1240
|
+
fields: Prisma.StepRunFieldRefs;
|
|
1241
|
+
operations: {
|
|
1242
|
+
findUnique: {
|
|
1243
|
+
args: Prisma.StepRunFindUniqueArgs<ExtArgs>;
|
|
1244
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload> | null;
|
|
1245
|
+
};
|
|
1246
|
+
findUniqueOrThrow: {
|
|
1247
|
+
args: Prisma.StepRunFindUniqueOrThrowArgs<ExtArgs>;
|
|
1248
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1249
|
+
};
|
|
1250
|
+
findFirst: {
|
|
1251
|
+
args: Prisma.StepRunFindFirstArgs<ExtArgs>;
|
|
1252
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload> | null;
|
|
1253
|
+
};
|
|
1254
|
+
findFirstOrThrow: {
|
|
1255
|
+
args: Prisma.StepRunFindFirstOrThrowArgs<ExtArgs>;
|
|
1256
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1257
|
+
};
|
|
1258
|
+
findMany: {
|
|
1259
|
+
args: Prisma.StepRunFindManyArgs<ExtArgs>;
|
|
1260
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>[];
|
|
1261
|
+
};
|
|
1262
|
+
create: {
|
|
1263
|
+
args: Prisma.StepRunCreateArgs<ExtArgs>;
|
|
1264
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1265
|
+
};
|
|
1266
|
+
createMany: {
|
|
1267
|
+
args: Prisma.StepRunCreateManyArgs<ExtArgs>;
|
|
1268
|
+
result: BatchPayload;
|
|
1269
|
+
};
|
|
1270
|
+
createManyAndReturn: {
|
|
1271
|
+
args: Prisma.StepRunCreateManyAndReturnArgs<ExtArgs>;
|
|
1272
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>[];
|
|
1273
|
+
};
|
|
1274
|
+
delete: {
|
|
1275
|
+
args: Prisma.StepRunDeleteArgs<ExtArgs>;
|
|
1276
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1277
|
+
};
|
|
1278
|
+
update: {
|
|
1279
|
+
args: Prisma.StepRunUpdateArgs<ExtArgs>;
|
|
1280
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1281
|
+
};
|
|
1282
|
+
deleteMany: {
|
|
1283
|
+
args: Prisma.StepRunDeleteManyArgs<ExtArgs>;
|
|
1284
|
+
result: BatchPayload;
|
|
1285
|
+
};
|
|
1286
|
+
updateMany: {
|
|
1287
|
+
args: Prisma.StepRunUpdateManyArgs<ExtArgs>;
|
|
1288
|
+
result: BatchPayload;
|
|
1289
|
+
};
|
|
1290
|
+
updateManyAndReturn: {
|
|
1291
|
+
args: Prisma.StepRunUpdateManyAndReturnArgs<ExtArgs>;
|
|
1292
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>[];
|
|
1293
|
+
};
|
|
1294
|
+
upsert: {
|
|
1295
|
+
args: Prisma.StepRunUpsertArgs<ExtArgs>;
|
|
1296
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$StepRunPayload>;
|
|
1297
|
+
};
|
|
1298
|
+
aggregate: {
|
|
1299
|
+
args: Prisma.StepRunAggregateArgs<ExtArgs>;
|
|
1300
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateStepRun>;
|
|
1301
|
+
};
|
|
1302
|
+
groupBy: {
|
|
1303
|
+
args: Prisma.StepRunGroupByArgs<ExtArgs>;
|
|
1304
|
+
result: runtime.Types.Utils.Optional<Prisma.StepRunGroupByOutputType>[];
|
|
1305
|
+
};
|
|
1306
|
+
count: {
|
|
1307
|
+
args: Prisma.StepRunCountArgs<ExtArgs>;
|
|
1308
|
+
result: runtime.Types.Utils.Optional<Prisma.StepRunCountAggregateOutputType> | number;
|
|
1309
|
+
};
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
FieldValue: {
|
|
1313
|
+
payload: Prisma.$FieldValuePayload<ExtArgs>;
|
|
1314
|
+
fields: Prisma.FieldValueFieldRefs;
|
|
1315
|
+
operations: {
|
|
1316
|
+
findUnique: {
|
|
1317
|
+
args: Prisma.FieldValueFindUniqueArgs<ExtArgs>;
|
|
1318
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload> | null;
|
|
1319
|
+
};
|
|
1320
|
+
findUniqueOrThrow: {
|
|
1321
|
+
args: Prisma.FieldValueFindUniqueOrThrowArgs<ExtArgs>;
|
|
1322
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1323
|
+
};
|
|
1324
|
+
findFirst: {
|
|
1325
|
+
args: Prisma.FieldValueFindFirstArgs<ExtArgs>;
|
|
1326
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload> | null;
|
|
1327
|
+
};
|
|
1328
|
+
findFirstOrThrow: {
|
|
1329
|
+
args: Prisma.FieldValueFindFirstOrThrowArgs<ExtArgs>;
|
|
1330
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1331
|
+
};
|
|
1332
|
+
findMany: {
|
|
1333
|
+
args: Prisma.FieldValueFindManyArgs<ExtArgs>;
|
|
1334
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>[];
|
|
1335
|
+
};
|
|
1336
|
+
create: {
|
|
1337
|
+
args: Prisma.FieldValueCreateArgs<ExtArgs>;
|
|
1338
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1339
|
+
};
|
|
1340
|
+
createMany: {
|
|
1341
|
+
args: Prisma.FieldValueCreateManyArgs<ExtArgs>;
|
|
1342
|
+
result: BatchPayload;
|
|
1343
|
+
};
|
|
1344
|
+
createManyAndReturn: {
|
|
1345
|
+
args: Prisma.FieldValueCreateManyAndReturnArgs<ExtArgs>;
|
|
1346
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>[];
|
|
1347
|
+
};
|
|
1348
|
+
delete: {
|
|
1349
|
+
args: Prisma.FieldValueDeleteArgs<ExtArgs>;
|
|
1350
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1351
|
+
};
|
|
1352
|
+
update: {
|
|
1353
|
+
args: Prisma.FieldValueUpdateArgs<ExtArgs>;
|
|
1354
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1355
|
+
};
|
|
1356
|
+
deleteMany: {
|
|
1357
|
+
args: Prisma.FieldValueDeleteManyArgs<ExtArgs>;
|
|
1358
|
+
result: BatchPayload;
|
|
1359
|
+
};
|
|
1360
|
+
updateMany: {
|
|
1361
|
+
args: Prisma.FieldValueUpdateManyArgs<ExtArgs>;
|
|
1362
|
+
result: BatchPayload;
|
|
1363
|
+
};
|
|
1364
|
+
updateManyAndReturn: {
|
|
1365
|
+
args: Prisma.FieldValueUpdateManyAndReturnArgs<ExtArgs>;
|
|
1366
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>[];
|
|
1367
|
+
};
|
|
1368
|
+
upsert: {
|
|
1369
|
+
args: Prisma.FieldValueUpsertArgs<ExtArgs>;
|
|
1370
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldValuePayload>;
|
|
1371
|
+
};
|
|
1372
|
+
aggregate: {
|
|
1373
|
+
args: Prisma.FieldValueAggregateArgs<ExtArgs>;
|
|
1374
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateFieldValue>;
|
|
1375
|
+
};
|
|
1376
|
+
groupBy: {
|
|
1377
|
+
args: Prisma.FieldValueGroupByArgs<ExtArgs>;
|
|
1378
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldValueGroupByOutputType>[];
|
|
1379
|
+
};
|
|
1380
|
+
count: {
|
|
1381
|
+
args: Prisma.FieldValueCountArgs<ExtArgs>;
|
|
1382
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldValueCountAggregateOutputType> | number;
|
|
1383
|
+
};
|
|
1384
|
+
};
|
|
1385
|
+
};
|
|
1386
|
+
Item: {
|
|
1387
|
+
payload: Prisma.$ItemPayload<ExtArgs>;
|
|
1388
|
+
fields: Prisma.ItemFieldRefs;
|
|
1389
|
+
operations: {
|
|
1390
|
+
findUnique: {
|
|
1391
|
+
args: Prisma.ItemFindUniqueArgs<ExtArgs>;
|
|
1392
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload> | null;
|
|
1393
|
+
};
|
|
1394
|
+
findUniqueOrThrow: {
|
|
1395
|
+
args: Prisma.ItemFindUniqueOrThrowArgs<ExtArgs>;
|
|
1396
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1397
|
+
};
|
|
1398
|
+
findFirst: {
|
|
1399
|
+
args: Prisma.ItemFindFirstArgs<ExtArgs>;
|
|
1400
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload> | null;
|
|
1401
|
+
};
|
|
1402
|
+
findFirstOrThrow: {
|
|
1403
|
+
args: Prisma.ItemFindFirstOrThrowArgs<ExtArgs>;
|
|
1404
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1405
|
+
};
|
|
1406
|
+
findMany: {
|
|
1407
|
+
args: Prisma.ItemFindManyArgs<ExtArgs>;
|
|
1408
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>[];
|
|
1409
|
+
};
|
|
1410
|
+
create: {
|
|
1411
|
+
args: Prisma.ItemCreateArgs<ExtArgs>;
|
|
1412
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1413
|
+
};
|
|
1414
|
+
createMany: {
|
|
1415
|
+
args: Prisma.ItemCreateManyArgs<ExtArgs>;
|
|
1416
|
+
result: BatchPayload;
|
|
1417
|
+
};
|
|
1418
|
+
createManyAndReturn: {
|
|
1419
|
+
args: Prisma.ItemCreateManyAndReturnArgs<ExtArgs>;
|
|
1420
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>[];
|
|
1421
|
+
};
|
|
1422
|
+
delete: {
|
|
1423
|
+
args: Prisma.ItemDeleteArgs<ExtArgs>;
|
|
1424
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1425
|
+
};
|
|
1426
|
+
update: {
|
|
1427
|
+
args: Prisma.ItemUpdateArgs<ExtArgs>;
|
|
1428
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1429
|
+
};
|
|
1430
|
+
deleteMany: {
|
|
1431
|
+
args: Prisma.ItemDeleteManyArgs<ExtArgs>;
|
|
1432
|
+
result: BatchPayload;
|
|
1433
|
+
};
|
|
1434
|
+
updateMany: {
|
|
1435
|
+
args: Prisma.ItemUpdateManyArgs<ExtArgs>;
|
|
1436
|
+
result: BatchPayload;
|
|
1437
|
+
};
|
|
1438
|
+
updateManyAndReturn: {
|
|
1439
|
+
args: Prisma.ItemUpdateManyAndReturnArgs<ExtArgs>;
|
|
1440
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>[];
|
|
1441
|
+
};
|
|
1442
|
+
upsert: {
|
|
1443
|
+
args: Prisma.ItemUpsertArgs<ExtArgs>;
|
|
1444
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemPayload>;
|
|
1445
|
+
};
|
|
1446
|
+
aggregate: {
|
|
1447
|
+
args: Prisma.ItemAggregateArgs<ExtArgs>;
|
|
1448
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateItem>;
|
|
1449
|
+
};
|
|
1450
|
+
groupBy: {
|
|
1451
|
+
args: Prisma.ItemGroupByArgs<ExtArgs>;
|
|
1452
|
+
result: runtime.Types.Utils.Optional<Prisma.ItemGroupByOutputType>[];
|
|
1453
|
+
};
|
|
1454
|
+
count: {
|
|
1455
|
+
args: Prisma.ItemCountArgs<ExtArgs>;
|
|
1456
|
+
result: runtime.Types.Utils.Optional<Prisma.ItemCountAggregateOutputType> | number;
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
};
|
|
1460
|
+
ItemInstance: {
|
|
1461
|
+
payload: Prisma.$ItemInstancePayload<ExtArgs>;
|
|
1462
|
+
fields: Prisma.ItemInstanceFieldRefs;
|
|
1463
|
+
operations: {
|
|
1464
|
+
findUnique: {
|
|
1465
|
+
args: Prisma.ItemInstanceFindUniqueArgs<ExtArgs>;
|
|
1466
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload> | null;
|
|
1467
|
+
};
|
|
1468
|
+
findUniqueOrThrow: {
|
|
1469
|
+
args: Prisma.ItemInstanceFindUniqueOrThrowArgs<ExtArgs>;
|
|
1470
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1471
|
+
};
|
|
1472
|
+
findFirst: {
|
|
1473
|
+
args: Prisma.ItemInstanceFindFirstArgs<ExtArgs>;
|
|
1474
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload> | null;
|
|
1475
|
+
};
|
|
1476
|
+
findFirstOrThrow: {
|
|
1477
|
+
args: Prisma.ItemInstanceFindFirstOrThrowArgs<ExtArgs>;
|
|
1478
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1479
|
+
};
|
|
1480
|
+
findMany: {
|
|
1481
|
+
args: Prisma.ItemInstanceFindManyArgs<ExtArgs>;
|
|
1482
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>[];
|
|
1483
|
+
};
|
|
1484
|
+
create: {
|
|
1485
|
+
args: Prisma.ItemInstanceCreateArgs<ExtArgs>;
|
|
1486
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1487
|
+
};
|
|
1488
|
+
createMany: {
|
|
1489
|
+
args: Prisma.ItemInstanceCreateManyArgs<ExtArgs>;
|
|
1490
|
+
result: BatchPayload;
|
|
1491
|
+
};
|
|
1492
|
+
createManyAndReturn: {
|
|
1493
|
+
args: Prisma.ItemInstanceCreateManyAndReturnArgs<ExtArgs>;
|
|
1494
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>[];
|
|
1495
|
+
};
|
|
1496
|
+
delete: {
|
|
1497
|
+
args: Prisma.ItemInstanceDeleteArgs<ExtArgs>;
|
|
1498
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1499
|
+
};
|
|
1500
|
+
update: {
|
|
1501
|
+
args: Prisma.ItemInstanceUpdateArgs<ExtArgs>;
|
|
1502
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1503
|
+
};
|
|
1504
|
+
deleteMany: {
|
|
1505
|
+
args: Prisma.ItemInstanceDeleteManyArgs<ExtArgs>;
|
|
1506
|
+
result: BatchPayload;
|
|
1507
|
+
};
|
|
1508
|
+
updateMany: {
|
|
1509
|
+
args: Prisma.ItemInstanceUpdateManyArgs<ExtArgs>;
|
|
1510
|
+
result: BatchPayload;
|
|
1511
|
+
};
|
|
1512
|
+
updateManyAndReturn: {
|
|
1513
|
+
args: Prisma.ItemInstanceUpdateManyAndReturnArgs<ExtArgs>;
|
|
1514
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>[];
|
|
1515
|
+
};
|
|
1516
|
+
upsert: {
|
|
1517
|
+
args: Prisma.ItemInstanceUpsertArgs<ExtArgs>;
|
|
1518
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ItemInstancePayload>;
|
|
1519
|
+
};
|
|
1520
|
+
aggregate: {
|
|
1521
|
+
args: Prisma.ItemInstanceAggregateArgs<ExtArgs>;
|
|
1522
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateItemInstance>;
|
|
1523
|
+
};
|
|
1524
|
+
groupBy: {
|
|
1525
|
+
args: Prisma.ItemInstanceGroupByArgs<ExtArgs>;
|
|
1526
|
+
result: runtime.Types.Utils.Optional<Prisma.ItemInstanceGroupByOutputType>[];
|
|
1527
|
+
};
|
|
1528
|
+
count: {
|
|
1529
|
+
args: Prisma.ItemInstanceCountArgs<ExtArgs>;
|
|
1530
|
+
result: runtime.Types.Utils.Optional<Prisma.ItemInstanceCountAggregateOutputType> | number;
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
};
|
|
1534
|
+
User: {
|
|
1535
|
+
payload: Prisma.$UserPayload<ExtArgs>;
|
|
1536
|
+
fields: Prisma.UserFieldRefs;
|
|
1537
|
+
operations: {
|
|
1538
|
+
findUnique: {
|
|
1539
|
+
args: Prisma.UserFindUniqueArgs<ExtArgs>;
|
|
1540
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload> | null;
|
|
1541
|
+
};
|
|
1542
|
+
findUniqueOrThrow: {
|
|
1543
|
+
args: Prisma.UserFindUniqueOrThrowArgs<ExtArgs>;
|
|
1544
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1545
|
+
};
|
|
1546
|
+
findFirst: {
|
|
1547
|
+
args: Prisma.UserFindFirstArgs<ExtArgs>;
|
|
1548
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload> | null;
|
|
1549
|
+
};
|
|
1550
|
+
findFirstOrThrow: {
|
|
1551
|
+
args: Prisma.UserFindFirstOrThrowArgs<ExtArgs>;
|
|
1552
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1553
|
+
};
|
|
1554
|
+
findMany: {
|
|
1555
|
+
args: Prisma.UserFindManyArgs<ExtArgs>;
|
|
1556
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[];
|
|
1557
|
+
};
|
|
1558
|
+
create: {
|
|
1559
|
+
args: Prisma.UserCreateArgs<ExtArgs>;
|
|
1560
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1561
|
+
};
|
|
1562
|
+
createMany: {
|
|
1563
|
+
args: Prisma.UserCreateManyArgs<ExtArgs>;
|
|
1564
|
+
result: BatchPayload;
|
|
1565
|
+
};
|
|
1566
|
+
createManyAndReturn: {
|
|
1567
|
+
args: Prisma.UserCreateManyAndReturnArgs<ExtArgs>;
|
|
1568
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[];
|
|
1569
|
+
};
|
|
1570
|
+
delete: {
|
|
1571
|
+
args: Prisma.UserDeleteArgs<ExtArgs>;
|
|
1572
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1573
|
+
};
|
|
1574
|
+
update: {
|
|
1575
|
+
args: Prisma.UserUpdateArgs<ExtArgs>;
|
|
1576
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1577
|
+
};
|
|
1578
|
+
deleteMany: {
|
|
1579
|
+
args: Prisma.UserDeleteManyArgs<ExtArgs>;
|
|
1580
|
+
result: BatchPayload;
|
|
1581
|
+
};
|
|
1582
|
+
updateMany: {
|
|
1583
|
+
args: Prisma.UserUpdateManyArgs<ExtArgs>;
|
|
1584
|
+
result: BatchPayload;
|
|
1585
|
+
};
|
|
1586
|
+
updateManyAndReturn: {
|
|
1587
|
+
args: Prisma.UserUpdateManyAndReturnArgs<ExtArgs>;
|
|
1588
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>[];
|
|
1589
|
+
};
|
|
1590
|
+
upsert: {
|
|
1591
|
+
args: Prisma.UserUpsertArgs<ExtArgs>;
|
|
1592
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPayload>;
|
|
1593
|
+
};
|
|
1594
|
+
aggregate: {
|
|
1595
|
+
args: Prisma.UserAggregateArgs<ExtArgs>;
|
|
1596
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateUser>;
|
|
1597
|
+
};
|
|
1598
|
+
groupBy: {
|
|
1599
|
+
args: Prisma.UserGroupByArgs<ExtArgs>;
|
|
1600
|
+
result: runtime.Types.Utils.Optional<Prisma.UserGroupByOutputType>[];
|
|
1601
|
+
};
|
|
1602
|
+
count: {
|
|
1603
|
+
args: Prisma.UserCountArgs<ExtArgs>;
|
|
1604
|
+
result: runtime.Types.Utils.Optional<Prisma.UserCountAggregateOutputType> | number;
|
|
1605
|
+
};
|
|
1606
|
+
};
|
|
1607
|
+
};
|
|
1608
|
+
UserPermission: {
|
|
1609
|
+
payload: Prisma.$UserPermissionPayload<ExtArgs>;
|
|
1610
|
+
fields: Prisma.UserPermissionFieldRefs;
|
|
1611
|
+
operations: {
|
|
1612
|
+
findUnique: {
|
|
1613
|
+
args: Prisma.UserPermissionFindUniqueArgs<ExtArgs>;
|
|
1614
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload> | null;
|
|
1615
|
+
};
|
|
1616
|
+
findUniqueOrThrow: {
|
|
1617
|
+
args: Prisma.UserPermissionFindUniqueOrThrowArgs<ExtArgs>;
|
|
1618
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1619
|
+
};
|
|
1620
|
+
findFirst: {
|
|
1621
|
+
args: Prisma.UserPermissionFindFirstArgs<ExtArgs>;
|
|
1622
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload> | null;
|
|
1623
|
+
};
|
|
1624
|
+
findFirstOrThrow: {
|
|
1625
|
+
args: Prisma.UserPermissionFindFirstOrThrowArgs<ExtArgs>;
|
|
1626
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1627
|
+
};
|
|
1628
|
+
findMany: {
|
|
1629
|
+
args: Prisma.UserPermissionFindManyArgs<ExtArgs>;
|
|
1630
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>[];
|
|
1631
|
+
};
|
|
1632
|
+
create: {
|
|
1633
|
+
args: Prisma.UserPermissionCreateArgs<ExtArgs>;
|
|
1634
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1635
|
+
};
|
|
1636
|
+
createMany: {
|
|
1637
|
+
args: Prisma.UserPermissionCreateManyArgs<ExtArgs>;
|
|
1638
|
+
result: BatchPayload;
|
|
1639
|
+
};
|
|
1640
|
+
createManyAndReturn: {
|
|
1641
|
+
args: Prisma.UserPermissionCreateManyAndReturnArgs<ExtArgs>;
|
|
1642
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>[];
|
|
1643
|
+
};
|
|
1644
|
+
delete: {
|
|
1645
|
+
args: Prisma.UserPermissionDeleteArgs<ExtArgs>;
|
|
1646
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1647
|
+
};
|
|
1648
|
+
update: {
|
|
1649
|
+
args: Prisma.UserPermissionUpdateArgs<ExtArgs>;
|
|
1650
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1651
|
+
};
|
|
1652
|
+
deleteMany: {
|
|
1653
|
+
args: Prisma.UserPermissionDeleteManyArgs<ExtArgs>;
|
|
1654
|
+
result: BatchPayload;
|
|
1655
|
+
};
|
|
1656
|
+
updateMany: {
|
|
1657
|
+
args: Prisma.UserPermissionUpdateManyArgs<ExtArgs>;
|
|
1658
|
+
result: BatchPayload;
|
|
1659
|
+
};
|
|
1660
|
+
updateManyAndReturn: {
|
|
1661
|
+
args: Prisma.UserPermissionUpdateManyAndReturnArgs<ExtArgs>;
|
|
1662
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>[];
|
|
1663
|
+
};
|
|
1664
|
+
upsert: {
|
|
1665
|
+
args: Prisma.UserPermissionUpsertArgs<ExtArgs>;
|
|
1666
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserPermissionPayload>;
|
|
1667
|
+
};
|
|
1668
|
+
aggregate: {
|
|
1669
|
+
args: Prisma.UserPermissionAggregateArgs<ExtArgs>;
|
|
1670
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateUserPermission>;
|
|
1671
|
+
};
|
|
1672
|
+
groupBy: {
|
|
1673
|
+
args: Prisma.UserPermissionGroupByArgs<ExtArgs>;
|
|
1674
|
+
result: runtime.Types.Utils.Optional<Prisma.UserPermissionGroupByOutputType>[];
|
|
1675
|
+
};
|
|
1676
|
+
count: {
|
|
1677
|
+
args: Prisma.UserPermissionCountArgs<ExtArgs>;
|
|
1678
|
+
result: runtime.Types.Utils.Optional<Prisma.UserPermissionCountAggregateOutputType> | number;
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
};
|
|
1682
|
+
Session: {
|
|
1683
|
+
payload: Prisma.$SessionPayload<ExtArgs>;
|
|
1684
|
+
fields: Prisma.SessionFieldRefs;
|
|
1685
|
+
operations: {
|
|
1686
|
+
findUnique: {
|
|
1687
|
+
args: Prisma.SessionFindUniqueArgs<ExtArgs>;
|
|
1688
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload> | null;
|
|
1689
|
+
};
|
|
1690
|
+
findUniqueOrThrow: {
|
|
1691
|
+
args: Prisma.SessionFindUniqueOrThrowArgs<ExtArgs>;
|
|
1692
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1693
|
+
};
|
|
1694
|
+
findFirst: {
|
|
1695
|
+
args: Prisma.SessionFindFirstArgs<ExtArgs>;
|
|
1696
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload> | null;
|
|
1697
|
+
};
|
|
1698
|
+
findFirstOrThrow: {
|
|
1699
|
+
args: Prisma.SessionFindFirstOrThrowArgs<ExtArgs>;
|
|
1700
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1701
|
+
};
|
|
1702
|
+
findMany: {
|
|
1703
|
+
args: Prisma.SessionFindManyArgs<ExtArgs>;
|
|
1704
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[];
|
|
1705
|
+
};
|
|
1706
|
+
create: {
|
|
1707
|
+
args: Prisma.SessionCreateArgs<ExtArgs>;
|
|
1708
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1709
|
+
};
|
|
1710
|
+
createMany: {
|
|
1711
|
+
args: Prisma.SessionCreateManyArgs<ExtArgs>;
|
|
1712
|
+
result: BatchPayload;
|
|
1713
|
+
};
|
|
1714
|
+
createManyAndReturn: {
|
|
1715
|
+
args: Prisma.SessionCreateManyAndReturnArgs<ExtArgs>;
|
|
1716
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[];
|
|
1717
|
+
};
|
|
1718
|
+
delete: {
|
|
1719
|
+
args: Prisma.SessionDeleteArgs<ExtArgs>;
|
|
1720
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1721
|
+
};
|
|
1722
|
+
update: {
|
|
1723
|
+
args: Prisma.SessionUpdateArgs<ExtArgs>;
|
|
1724
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1725
|
+
};
|
|
1726
|
+
deleteMany: {
|
|
1727
|
+
args: Prisma.SessionDeleteManyArgs<ExtArgs>;
|
|
1728
|
+
result: BatchPayload;
|
|
1729
|
+
};
|
|
1730
|
+
updateMany: {
|
|
1731
|
+
args: Prisma.SessionUpdateManyArgs<ExtArgs>;
|
|
1732
|
+
result: BatchPayload;
|
|
1733
|
+
};
|
|
1734
|
+
updateManyAndReturn: {
|
|
1735
|
+
args: Prisma.SessionUpdateManyAndReturnArgs<ExtArgs>;
|
|
1736
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>[];
|
|
1737
|
+
};
|
|
1738
|
+
upsert: {
|
|
1739
|
+
args: Prisma.SessionUpsertArgs<ExtArgs>;
|
|
1740
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SessionPayload>;
|
|
1741
|
+
};
|
|
1742
|
+
aggregate: {
|
|
1743
|
+
args: Prisma.SessionAggregateArgs<ExtArgs>;
|
|
1744
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateSession>;
|
|
1745
|
+
};
|
|
1746
|
+
groupBy: {
|
|
1747
|
+
args: Prisma.SessionGroupByArgs<ExtArgs>;
|
|
1748
|
+
result: runtime.Types.Utils.Optional<Prisma.SessionGroupByOutputType>[];
|
|
1749
|
+
};
|
|
1750
|
+
count: {
|
|
1751
|
+
args: Prisma.SessionCountArgs<ExtArgs>;
|
|
1752
|
+
result: runtime.Types.Utils.Optional<Prisma.SessionCountAggregateOutputType> | number;
|
|
1753
|
+
};
|
|
1754
|
+
};
|
|
1755
|
+
};
|
|
1756
|
+
SchemaVersion: {
|
|
1757
|
+
payload: Prisma.$SchemaVersionPayload<ExtArgs>;
|
|
1758
|
+
fields: Prisma.SchemaVersionFieldRefs;
|
|
1759
|
+
operations: {
|
|
1760
|
+
findUnique: {
|
|
1761
|
+
args: Prisma.SchemaVersionFindUniqueArgs<ExtArgs>;
|
|
1762
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload> | null;
|
|
1763
|
+
};
|
|
1764
|
+
findUniqueOrThrow: {
|
|
1765
|
+
args: Prisma.SchemaVersionFindUniqueOrThrowArgs<ExtArgs>;
|
|
1766
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1767
|
+
};
|
|
1768
|
+
findFirst: {
|
|
1769
|
+
args: Prisma.SchemaVersionFindFirstArgs<ExtArgs>;
|
|
1770
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload> | null;
|
|
1771
|
+
};
|
|
1772
|
+
findFirstOrThrow: {
|
|
1773
|
+
args: Prisma.SchemaVersionFindFirstOrThrowArgs<ExtArgs>;
|
|
1774
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1775
|
+
};
|
|
1776
|
+
findMany: {
|
|
1777
|
+
args: Prisma.SchemaVersionFindManyArgs<ExtArgs>;
|
|
1778
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>[];
|
|
1779
|
+
};
|
|
1780
|
+
create: {
|
|
1781
|
+
args: Prisma.SchemaVersionCreateArgs<ExtArgs>;
|
|
1782
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1783
|
+
};
|
|
1784
|
+
createMany: {
|
|
1785
|
+
args: Prisma.SchemaVersionCreateManyArgs<ExtArgs>;
|
|
1786
|
+
result: BatchPayload;
|
|
1787
|
+
};
|
|
1788
|
+
createManyAndReturn: {
|
|
1789
|
+
args: Prisma.SchemaVersionCreateManyAndReturnArgs<ExtArgs>;
|
|
1790
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>[];
|
|
1791
|
+
};
|
|
1792
|
+
delete: {
|
|
1793
|
+
args: Prisma.SchemaVersionDeleteArgs<ExtArgs>;
|
|
1794
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1795
|
+
};
|
|
1796
|
+
update: {
|
|
1797
|
+
args: Prisma.SchemaVersionUpdateArgs<ExtArgs>;
|
|
1798
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1799
|
+
};
|
|
1800
|
+
deleteMany: {
|
|
1801
|
+
args: Prisma.SchemaVersionDeleteManyArgs<ExtArgs>;
|
|
1802
|
+
result: BatchPayload;
|
|
1803
|
+
};
|
|
1804
|
+
updateMany: {
|
|
1805
|
+
args: Prisma.SchemaVersionUpdateManyArgs<ExtArgs>;
|
|
1806
|
+
result: BatchPayload;
|
|
1807
|
+
};
|
|
1808
|
+
updateManyAndReturn: {
|
|
1809
|
+
args: Prisma.SchemaVersionUpdateManyAndReturnArgs<ExtArgs>;
|
|
1810
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>[];
|
|
1811
|
+
};
|
|
1812
|
+
upsert: {
|
|
1813
|
+
args: Prisma.SchemaVersionUpsertArgs<ExtArgs>;
|
|
1814
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SchemaVersionPayload>;
|
|
1815
|
+
};
|
|
1816
|
+
aggregate: {
|
|
1817
|
+
args: Prisma.SchemaVersionAggregateArgs<ExtArgs>;
|
|
1818
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateSchemaVersion>;
|
|
1819
|
+
};
|
|
1820
|
+
groupBy: {
|
|
1821
|
+
args: Prisma.SchemaVersionGroupByArgs<ExtArgs>;
|
|
1822
|
+
result: runtime.Types.Utils.Optional<Prisma.SchemaVersionGroupByOutputType>[];
|
|
1823
|
+
};
|
|
1824
|
+
count: {
|
|
1825
|
+
args: Prisma.SchemaVersionCountArgs<ExtArgs>;
|
|
1826
|
+
result: runtime.Types.Utils.Optional<Prisma.SchemaVersionCountAggregateOutputType> | number;
|
|
1827
|
+
};
|
|
1828
|
+
};
|
|
1829
|
+
};
|
|
1830
|
+
LaborTicket: {
|
|
1831
|
+
payload: Prisma.$LaborTicketPayload<ExtArgs>;
|
|
1832
|
+
fields: Prisma.LaborTicketFieldRefs;
|
|
1833
|
+
operations: {
|
|
1834
|
+
findUnique: {
|
|
1835
|
+
args: Prisma.LaborTicketFindUniqueArgs<ExtArgs>;
|
|
1836
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload> | null;
|
|
1837
|
+
};
|
|
1838
|
+
findUniqueOrThrow: {
|
|
1839
|
+
args: Prisma.LaborTicketFindUniqueOrThrowArgs<ExtArgs>;
|
|
1840
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1841
|
+
};
|
|
1842
|
+
findFirst: {
|
|
1843
|
+
args: Prisma.LaborTicketFindFirstArgs<ExtArgs>;
|
|
1844
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload> | null;
|
|
1845
|
+
};
|
|
1846
|
+
findFirstOrThrow: {
|
|
1847
|
+
args: Prisma.LaborTicketFindFirstOrThrowArgs<ExtArgs>;
|
|
1848
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1849
|
+
};
|
|
1850
|
+
findMany: {
|
|
1851
|
+
args: Prisma.LaborTicketFindManyArgs<ExtArgs>;
|
|
1852
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>[];
|
|
1853
|
+
};
|
|
1854
|
+
create: {
|
|
1855
|
+
args: Prisma.LaborTicketCreateArgs<ExtArgs>;
|
|
1856
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1857
|
+
};
|
|
1858
|
+
createMany: {
|
|
1859
|
+
args: Prisma.LaborTicketCreateManyArgs<ExtArgs>;
|
|
1860
|
+
result: BatchPayload;
|
|
1861
|
+
};
|
|
1862
|
+
createManyAndReturn: {
|
|
1863
|
+
args: Prisma.LaborTicketCreateManyAndReturnArgs<ExtArgs>;
|
|
1864
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>[];
|
|
1865
|
+
};
|
|
1866
|
+
delete: {
|
|
1867
|
+
args: Prisma.LaborTicketDeleteArgs<ExtArgs>;
|
|
1868
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1869
|
+
};
|
|
1870
|
+
update: {
|
|
1871
|
+
args: Prisma.LaborTicketUpdateArgs<ExtArgs>;
|
|
1872
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1873
|
+
};
|
|
1874
|
+
deleteMany: {
|
|
1875
|
+
args: Prisma.LaborTicketDeleteManyArgs<ExtArgs>;
|
|
1876
|
+
result: BatchPayload;
|
|
1877
|
+
};
|
|
1878
|
+
updateMany: {
|
|
1879
|
+
args: Prisma.LaborTicketUpdateManyArgs<ExtArgs>;
|
|
1880
|
+
result: BatchPayload;
|
|
1881
|
+
};
|
|
1882
|
+
updateManyAndReturn: {
|
|
1883
|
+
args: Prisma.LaborTicketUpdateManyAndReturnArgs<ExtArgs>;
|
|
1884
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>[];
|
|
1885
|
+
};
|
|
1886
|
+
upsert: {
|
|
1887
|
+
args: Prisma.LaborTicketUpsertArgs<ExtArgs>;
|
|
1888
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$LaborTicketPayload>;
|
|
1889
|
+
};
|
|
1890
|
+
aggregate: {
|
|
1891
|
+
args: Prisma.LaborTicketAggregateArgs<ExtArgs>;
|
|
1892
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateLaborTicket>;
|
|
1893
|
+
};
|
|
1894
|
+
groupBy: {
|
|
1895
|
+
args: Prisma.LaborTicketGroupByArgs<ExtArgs>;
|
|
1896
|
+
result: runtime.Types.Utils.Optional<Prisma.LaborTicketGroupByOutputType>[];
|
|
1897
|
+
};
|
|
1898
|
+
count: {
|
|
1899
|
+
args: Prisma.LaborTicketCountArgs<ExtArgs>;
|
|
1900
|
+
result: runtime.Types.Utils.Optional<Prisma.LaborTicketCountAggregateOutputType> | number;
|
|
1901
|
+
};
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1904
|
+
AuditLog: {
|
|
1905
|
+
payload: Prisma.$AuditLogPayload<ExtArgs>;
|
|
1906
|
+
fields: Prisma.AuditLogFieldRefs;
|
|
1907
|
+
operations: {
|
|
1908
|
+
findUnique: {
|
|
1909
|
+
args: Prisma.AuditLogFindUniqueArgs<ExtArgs>;
|
|
1910
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload> | null;
|
|
1911
|
+
};
|
|
1912
|
+
findUniqueOrThrow: {
|
|
1913
|
+
args: Prisma.AuditLogFindUniqueOrThrowArgs<ExtArgs>;
|
|
1914
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1915
|
+
};
|
|
1916
|
+
findFirst: {
|
|
1917
|
+
args: Prisma.AuditLogFindFirstArgs<ExtArgs>;
|
|
1918
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload> | null;
|
|
1919
|
+
};
|
|
1920
|
+
findFirstOrThrow: {
|
|
1921
|
+
args: Prisma.AuditLogFindFirstOrThrowArgs<ExtArgs>;
|
|
1922
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1923
|
+
};
|
|
1924
|
+
findMany: {
|
|
1925
|
+
args: Prisma.AuditLogFindManyArgs<ExtArgs>;
|
|
1926
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[];
|
|
1927
|
+
};
|
|
1928
|
+
create: {
|
|
1929
|
+
args: Prisma.AuditLogCreateArgs<ExtArgs>;
|
|
1930
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1931
|
+
};
|
|
1932
|
+
createMany: {
|
|
1933
|
+
args: Prisma.AuditLogCreateManyArgs<ExtArgs>;
|
|
1934
|
+
result: BatchPayload;
|
|
1935
|
+
};
|
|
1936
|
+
createManyAndReturn: {
|
|
1937
|
+
args: Prisma.AuditLogCreateManyAndReturnArgs<ExtArgs>;
|
|
1938
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[];
|
|
1939
|
+
};
|
|
1940
|
+
delete: {
|
|
1941
|
+
args: Prisma.AuditLogDeleteArgs<ExtArgs>;
|
|
1942
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1943
|
+
};
|
|
1944
|
+
update: {
|
|
1945
|
+
args: Prisma.AuditLogUpdateArgs<ExtArgs>;
|
|
1946
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1947
|
+
};
|
|
1948
|
+
deleteMany: {
|
|
1949
|
+
args: Prisma.AuditLogDeleteManyArgs<ExtArgs>;
|
|
1950
|
+
result: BatchPayload;
|
|
1951
|
+
};
|
|
1952
|
+
updateMany: {
|
|
1953
|
+
args: Prisma.AuditLogUpdateManyArgs<ExtArgs>;
|
|
1954
|
+
result: BatchPayload;
|
|
1955
|
+
};
|
|
1956
|
+
updateManyAndReturn: {
|
|
1957
|
+
args: Prisma.AuditLogUpdateManyAndReturnArgs<ExtArgs>;
|
|
1958
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>[];
|
|
1959
|
+
};
|
|
1960
|
+
upsert: {
|
|
1961
|
+
args: Prisma.AuditLogUpsertArgs<ExtArgs>;
|
|
1962
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AuditLogPayload>;
|
|
1963
|
+
};
|
|
1964
|
+
aggregate: {
|
|
1965
|
+
args: Prisma.AuditLogAggregateArgs<ExtArgs>;
|
|
1966
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateAuditLog>;
|
|
1967
|
+
};
|
|
1968
|
+
groupBy: {
|
|
1969
|
+
args: Prisma.AuditLogGroupByArgs<ExtArgs>;
|
|
1970
|
+
result: runtime.Types.Utils.Optional<Prisma.AuditLogGroupByOutputType>[];
|
|
1971
|
+
};
|
|
1972
|
+
count: {
|
|
1973
|
+
args: Prisma.AuditLogCountArgs<ExtArgs>;
|
|
1974
|
+
result: runtime.Types.Utils.Optional<Prisma.AuditLogCountAggregateOutputType> | number;
|
|
1975
|
+
};
|
|
1976
|
+
};
|
|
1977
|
+
};
|
|
1978
|
+
Attachment: {
|
|
1979
|
+
payload: Prisma.$AttachmentPayload<ExtArgs>;
|
|
1980
|
+
fields: Prisma.AttachmentFieldRefs;
|
|
1981
|
+
operations: {
|
|
1982
|
+
findUnique: {
|
|
1983
|
+
args: Prisma.AttachmentFindUniqueArgs<ExtArgs>;
|
|
1984
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload> | null;
|
|
1985
|
+
};
|
|
1986
|
+
findUniqueOrThrow: {
|
|
1987
|
+
args: Prisma.AttachmentFindUniqueOrThrowArgs<ExtArgs>;
|
|
1988
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
1989
|
+
};
|
|
1990
|
+
findFirst: {
|
|
1991
|
+
args: Prisma.AttachmentFindFirstArgs<ExtArgs>;
|
|
1992
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload> | null;
|
|
1993
|
+
};
|
|
1994
|
+
findFirstOrThrow: {
|
|
1995
|
+
args: Prisma.AttachmentFindFirstOrThrowArgs<ExtArgs>;
|
|
1996
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
1997
|
+
};
|
|
1998
|
+
findMany: {
|
|
1999
|
+
args: Prisma.AttachmentFindManyArgs<ExtArgs>;
|
|
2000
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>[];
|
|
2001
|
+
};
|
|
2002
|
+
create: {
|
|
2003
|
+
args: Prisma.AttachmentCreateArgs<ExtArgs>;
|
|
2004
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
2005
|
+
};
|
|
2006
|
+
createMany: {
|
|
2007
|
+
args: Prisma.AttachmentCreateManyArgs<ExtArgs>;
|
|
2008
|
+
result: BatchPayload;
|
|
2009
|
+
};
|
|
2010
|
+
createManyAndReturn: {
|
|
2011
|
+
args: Prisma.AttachmentCreateManyAndReturnArgs<ExtArgs>;
|
|
2012
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>[];
|
|
2013
|
+
};
|
|
2014
|
+
delete: {
|
|
2015
|
+
args: Prisma.AttachmentDeleteArgs<ExtArgs>;
|
|
2016
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
2017
|
+
};
|
|
2018
|
+
update: {
|
|
2019
|
+
args: Prisma.AttachmentUpdateArgs<ExtArgs>;
|
|
2020
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
2021
|
+
};
|
|
2022
|
+
deleteMany: {
|
|
2023
|
+
args: Prisma.AttachmentDeleteManyArgs<ExtArgs>;
|
|
2024
|
+
result: BatchPayload;
|
|
2025
|
+
};
|
|
2026
|
+
updateMany: {
|
|
2027
|
+
args: Prisma.AttachmentUpdateManyArgs<ExtArgs>;
|
|
2028
|
+
result: BatchPayload;
|
|
2029
|
+
};
|
|
2030
|
+
updateManyAndReturn: {
|
|
2031
|
+
args: Prisma.AttachmentUpdateManyAndReturnArgs<ExtArgs>;
|
|
2032
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>[];
|
|
2033
|
+
};
|
|
2034
|
+
upsert: {
|
|
2035
|
+
args: Prisma.AttachmentUpsertArgs<ExtArgs>;
|
|
2036
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$AttachmentPayload>;
|
|
2037
|
+
};
|
|
2038
|
+
aggregate: {
|
|
2039
|
+
args: Prisma.AttachmentAggregateArgs<ExtArgs>;
|
|
2040
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateAttachment>;
|
|
2041
|
+
};
|
|
2042
|
+
groupBy: {
|
|
2043
|
+
args: Prisma.AttachmentGroupByArgs<ExtArgs>;
|
|
2044
|
+
result: runtime.Types.Utils.Optional<Prisma.AttachmentGroupByOutputType>[];
|
|
2045
|
+
};
|
|
2046
|
+
count: {
|
|
2047
|
+
args: Prisma.AttachmentCountArgs<ExtArgs>;
|
|
2048
|
+
result: runtime.Types.Utils.Optional<Prisma.AttachmentCountAggregateOutputType> | number;
|
|
2049
|
+
};
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
FieldAttachment: {
|
|
2053
|
+
payload: Prisma.$FieldAttachmentPayload<ExtArgs>;
|
|
2054
|
+
fields: Prisma.FieldAttachmentFieldRefs;
|
|
2055
|
+
operations: {
|
|
2056
|
+
findUnique: {
|
|
2057
|
+
args: Prisma.FieldAttachmentFindUniqueArgs<ExtArgs>;
|
|
2058
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload> | null;
|
|
2059
|
+
};
|
|
2060
|
+
findUniqueOrThrow: {
|
|
2061
|
+
args: Prisma.FieldAttachmentFindUniqueOrThrowArgs<ExtArgs>;
|
|
2062
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2063
|
+
};
|
|
2064
|
+
findFirst: {
|
|
2065
|
+
args: Prisma.FieldAttachmentFindFirstArgs<ExtArgs>;
|
|
2066
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload> | null;
|
|
2067
|
+
};
|
|
2068
|
+
findFirstOrThrow: {
|
|
2069
|
+
args: Prisma.FieldAttachmentFindFirstOrThrowArgs<ExtArgs>;
|
|
2070
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2071
|
+
};
|
|
2072
|
+
findMany: {
|
|
2073
|
+
args: Prisma.FieldAttachmentFindManyArgs<ExtArgs>;
|
|
2074
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>[];
|
|
2075
|
+
};
|
|
2076
|
+
create: {
|
|
2077
|
+
args: Prisma.FieldAttachmentCreateArgs<ExtArgs>;
|
|
2078
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2079
|
+
};
|
|
2080
|
+
createMany: {
|
|
2081
|
+
args: Prisma.FieldAttachmentCreateManyArgs<ExtArgs>;
|
|
2082
|
+
result: BatchPayload;
|
|
2083
|
+
};
|
|
2084
|
+
createManyAndReturn: {
|
|
2085
|
+
args: Prisma.FieldAttachmentCreateManyAndReturnArgs<ExtArgs>;
|
|
2086
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>[];
|
|
2087
|
+
};
|
|
2088
|
+
delete: {
|
|
2089
|
+
args: Prisma.FieldAttachmentDeleteArgs<ExtArgs>;
|
|
2090
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2091
|
+
};
|
|
2092
|
+
update: {
|
|
2093
|
+
args: Prisma.FieldAttachmentUpdateArgs<ExtArgs>;
|
|
2094
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2095
|
+
};
|
|
2096
|
+
deleteMany: {
|
|
2097
|
+
args: Prisma.FieldAttachmentDeleteManyArgs<ExtArgs>;
|
|
2098
|
+
result: BatchPayload;
|
|
2099
|
+
};
|
|
2100
|
+
updateMany: {
|
|
2101
|
+
args: Prisma.FieldAttachmentUpdateManyArgs<ExtArgs>;
|
|
2102
|
+
result: BatchPayload;
|
|
2103
|
+
};
|
|
2104
|
+
updateManyAndReturn: {
|
|
2105
|
+
args: Prisma.FieldAttachmentUpdateManyAndReturnArgs<ExtArgs>;
|
|
2106
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>[];
|
|
2107
|
+
};
|
|
2108
|
+
upsert: {
|
|
2109
|
+
args: Prisma.FieldAttachmentUpsertArgs<ExtArgs>;
|
|
2110
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$FieldAttachmentPayload>;
|
|
2111
|
+
};
|
|
2112
|
+
aggregate: {
|
|
2113
|
+
args: Prisma.FieldAttachmentAggregateArgs<ExtArgs>;
|
|
2114
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateFieldAttachment>;
|
|
2115
|
+
};
|
|
2116
|
+
groupBy: {
|
|
2117
|
+
args: Prisma.FieldAttachmentGroupByArgs<ExtArgs>;
|
|
2118
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldAttachmentGroupByOutputType>[];
|
|
2119
|
+
};
|
|
2120
|
+
count: {
|
|
2121
|
+
args: Prisma.FieldAttachmentCountArgs<ExtArgs>;
|
|
2122
|
+
result: runtime.Types.Utils.Optional<Prisma.FieldAttachmentCountAggregateOutputType> | number;
|
|
2123
|
+
};
|
|
2124
|
+
};
|
|
2125
|
+
};
|
|
2126
|
+
OperationRunComment: {
|
|
2127
|
+
payload: Prisma.$OperationRunCommentPayload<ExtArgs>;
|
|
2128
|
+
fields: Prisma.OperationRunCommentFieldRefs;
|
|
2129
|
+
operations: {
|
|
2130
|
+
findUnique: {
|
|
2131
|
+
args: Prisma.OperationRunCommentFindUniqueArgs<ExtArgs>;
|
|
2132
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload> | null;
|
|
2133
|
+
};
|
|
2134
|
+
findUniqueOrThrow: {
|
|
2135
|
+
args: Prisma.OperationRunCommentFindUniqueOrThrowArgs<ExtArgs>;
|
|
2136
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2137
|
+
};
|
|
2138
|
+
findFirst: {
|
|
2139
|
+
args: Prisma.OperationRunCommentFindFirstArgs<ExtArgs>;
|
|
2140
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload> | null;
|
|
2141
|
+
};
|
|
2142
|
+
findFirstOrThrow: {
|
|
2143
|
+
args: Prisma.OperationRunCommentFindFirstOrThrowArgs<ExtArgs>;
|
|
2144
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2145
|
+
};
|
|
2146
|
+
findMany: {
|
|
2147
|
+
args: Prisma.OperationRunCommentFindManyArgs<ExtArgs>;
|
|
2148
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>[];
|
|
2149
|
+
};
|
|
2150
|
+
create: {
|
|
2151
|
+
args: Prisma.OperationRunCommentCreateArgs<ExtArgs>;
|
|
2152
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2153
|
+
};
|
|
2154
|
+
createMany: {
|
|
2155
|
+
args: Prisma.OperationRunCommentCreateManyArgs<ExtArgs>;
|
|
2156
|
+
result: BatchPayload;
|
|
2157
|
+
};
|
|
2158
|
+
createManyAndReturn: {
|
|
2159
|
+
args: Prisma.OperationRunCommentCreateManyAndReturnArgs<ExtArgs>;
|
|
2160
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>[];
|
|
2161
|
+
};
|
|
2162
|
+
delete: {
|
|
2163
|
+
args: Prisma.OperationRunCommentDeleteArgs<ExtArgs>;
|
|
2164
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2165
|
+
};
|
|
2166
|
+
update: {
|
|
2167
|
+
args: Prisma.OperationRunCommentUpdateArgs<ExtArgs>;
|
|
2168
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2169
|
+
};
|
|
2170
|
+
deleteMany: {
|
|
2171
|
+
args: Prisma.OperationRunCommentDeleteManyArgs<ExtArgs>;
|
|
2172
|
+
result: BatchPayload;
|
|
2173
|
+
};
|
|
2174
|
+
updateMany: {
|
|
2175
|
+
args: Prisma.OperationRunCommentUpdateManyArgs<ExtArgs>;
|
|
2176
|
+
result: BatchPayload;
|
|
2177
|
+
};
|
|
2178
|
+
updateManyAndReturn: {
|
|
2179
|
+
args: Prisma.OperationRunCommentUpdateManyAndReturnArgs<ExtArgs>;
|
|
2180
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>[];
|
|
2181
|
+
};
|
|
2182
|
+
upsert: {
|
|
2183
|
+
args: Prisma.OperationRunCommentUpsertArgs<ExtArgs>;
|
|
2184
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationRunCommentPayload>;
|
|
2185
|
+
};
|
|
2186
|
+
aggregate: {
|
|
2187
|
+
args: Prisma.OperationRunCommentAggregateArgs<ExtArgs>;
|
|
2188
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperationRunComment>;
|
|
2189
|
+
};
|
|
2190
|
+
groupBy: {
|
|
2191
|
+
args: Prisma.OperationRunCommentGroupByArgs<ExtArgs>;
|
|
2192
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationRunCommentGroupByOutputType>[];
|
|
2193
|
+
};
|
|
2194
|
+
count: {
|
|
2195
|
+
args: Prisma.OperationRunCommentCountArgs<ExtArgs>;
|
|
2196
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationRunCommentCountAggregateOutputType> | number;
|
|
2197
|
+
};
|
|
2198
|
+
};
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
} & {
|
|
2202
|
+
other: {
|
|
2203
|
+
payload: any;
|
|
2204
|
+
operations: {
|
|
2205
|
+
$executeRaw: {
|
|
2206
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
2207
|
+
result: any;
|
|
2208
|
+
};
|
|
2209
|
+
$executeRawUnsafe: {
|
|
2210
|
+
args: [query: string, ...values: any[]];
|
|
2211
|
+
result: any;
|
|
2212
|
+
};
|
|
2213
|
+
$queryRaw: {
|
|
2214
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]];
|
|
2215
|
+
result: any;
|
|
2216
|
+
};
|
|
2217
|
+
$queryRawUnsafe: {
|
|
2218
|
+
args: [query: string, ...values: any[]];
|
|
2219
|
+
result: any;
|
|
2220
|
+
};
|
|
2221
|
+
};
|
|
2222
|
+
};
|
|
2223
|
+
};
|
|
2224
|
+
/**
|
|
2225
|
+
* Enums
|
|
2226
|
+
*/
|
|
2227
|
+
export declare const TransactionIsolationLevel: {
|
|
2228
|
+
readonly Serializable: "Serializable";
|
|
2229
|
+
};
|
|
2230
|
+
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
2231
|
+
export declare const OrderScalarFieldEnum: {
|
|
2232
|
+
readonly id: "id";
|
|
2233
|
+
readonly key: "key";
|
|
2234
|
+
readonly description: "description";
|
|
2235
|
+
readonly status: "status";
|
|
2236
|
+
readonly itemId: "itemId";
|
|
2237
|
+
readonly createdById: "createdById";
|
|
2238
|
+
readonly createdAt: "createdAt";
|
|
2239
|
+
readonly updatedById: "updatedById";
|
|
2240
|
+
readonly updatedAt: "updatedAt";
|
|
2241
|
+
};
|
|
2242
|
+
export type OrderScalarFieldEnum = (typeof OrderScalarFieldEnum)[keyof typeof OrderScalarFieldEnum];
|
|
2243
|
+
export declare const OrderRevisionScalarFieldEnum: {
|
|
2244
|
+
readonly id: "id";
|
|
2245
|
+
readonly orderId: "orderId";
|
|
2246
|
+
readonly revNo: "revNo";
|
|
2247
|
+
readonly status: "status";
|
|
2248
|
+
readonly description: "description";
|
|
2249
|
+
readonly changeSummary: "changeSummary";
|
|
2250
|
+
readonly createdAt: "createdAt";
|
|
2251
|
+
readonly createdById: "createdById";
|
|
2252
|
+
readonly updatedAt: "updatedAt";
|
|
2253
|
+
readonly updatedById: "updatedById";
|
|
2254
|
+
};
|
|
2255
|
+
export type OrderRevisionScalarFieldEnum = (typeof OrderRevisionScalarFieldEnum)[keyof typeof OrderRevisionScalarFieldEnum];
|
|
2256
|
+
export declare const OperationScalarFieldEnum: {
|
|
2257
|
+
readonly id: "id";
|
|
2258
|
+
readonly orderRevId: "orderRevId";
|
|
2259
|
+
readonly workCenterId: "workCenterId";
|
|
2260
|
+
readonly seqNo: "seqNo";
|
|
2261
|
+
readonly title: "title";
|
|
2262
|
+
readonly description: "description";
|
|
2263
|
+
readonly createdAt: "createdAt";
|
|
2264
|
+
readonly createdById: "createdById";
|
|
2265
|
+
readonly updatedAt: "updatedAt";
|
|
2266
|
+
readonly updatedById: "updatedById";
|
|
2267
|
+
};
|
|
2268
|
+
export type OperationScalarFieldEnum = (typeof OperationScalarFieldEnum)[keyof typeof OperationScalarFieldEnum];
|
|
2269
|
+
export declare const OperationFieldRefScalarFieldEnum: {
|
|
2270
|
+
readonly id: "id";
|
|
2271
|
+
readonly operationId: "operationId";
|
|
2272
|
+
readonly seqNo: "seqNo";
|
|
2273
|
+
readonly title: "title";
|
|
2274
|
+
readonly sourceStepId: "sourceStepId";
|
|
2275
|
+
readonly createdAt: "createdAt";
|
|
2276
|
+
readonly createdById: "createdById";
|
|
2277
|
+
};
|
|
2278
|
+
export type OperationFieldRefScalarFieldEnum = (typeof OperationFieldRefScalarFieldEnum)[keyof typeof OperationFieldRefScalarFieldEnum];
|
|
2279
|
+
export declare const OperationDependencyScalarFieldEnum: {
|
|
2280
|
+
readonly id: "id";
|
|
2281
|
+
readonly successorId: "successorId";
|
|
2282
|
+
readonly predecessorId: "predecessorId";
|
|
2283
|
+
readonly createdAt: "createdAt";
|
|
2284
|
+
readonly createdById: "createdById";
|
|
2285
|
+
};
|
|
2286
|
+
export type OperationDependencyScalarFieldEnum = (typeof OperationDependencyScalarFieldEnum)[keyof typeof OperationDependencyScalarFieldEnum];
|
|
2287
|
+
export declare const WorkCenterScalarFieldEnum: {
|
|
2288
|
+
readonly id: "id";
|
|
2289
|
+
readonly key: "key";
|
|
2290
|
+
readonly description: "description";
|
|
2291
|
+
readonly createdAt: "createdAt";
|
|
2292
|
+
readonly createdById: "createdById";
|
|
2293
|
+
readonly updatedAt: "updatedAt";
|
|
2294
|
+
readonly updatedById: "updatedById";
|
|
2295
|
+
};
|
|
2296
|
+
export type WorkCenterScalarFieldEnum = (typeof WorkCenterScalarFieldEnum)[keyof typeof WorkCenterScalarFieldEnum];
|
|
2297
|
+
export declare const WorkCenterUserScalarFieldEnum: {
|
|
2298
|
+
readonly workCenterId: "workCenterId";
|
|
2299
|
+
readonly userId: "userId";
|
|
2300
|
+
readonly createdAt: "createdAt";
|
|
2301
|
+
readonly createdById: "createdById";
|
|
2302
|
+
};
|
|
2303
|
+
export type WorkCenterUserScalarFieldEnum = (typeof WorkCenterUserScalarFieldEnum)[keyof typeof WorkCenterUserScalarFieldEnum];
|
|
2304
|
+
export declare const FieldSetScalarFieldEnum: {
|
|
2305
|
+
readonly id: "id";
|
|
2306
|
+
readonly createdAt: "createdAt";
|
|
2307
|
+
readonly createdById: "createdById";
|
|
2308
|
+
};
|
|
2309
|
+
export type FieldSetScalarFieldEnum = (typeof FieldSetScalarFieldEnum)[keyof typeof FieldSetScalarFieldEnum];
|
|
2310
|
+
export declare const FieldRecordScalarFieldEnum: {
|
|
2311
|
+
readonly id: "id";
|
|
2312
|
+
readonly fieldSetId: "fieldSetId";
|
|
2313
|
+
readonly createdAt: "createdAt";
|
|
2314
|
+
readonly createdById: "createdById";
|
|
2315
|
+
};
|
|
2316
|
+
export type FieldRecordScalarFieldEnum = (typeof FieldRecordScalarFieldEnum)[keyof typeof FieldRecordScalarFieldEnum];
|
|
2317
|
+
export declare const FieldScalarFieldEnum: {
|
|
2318
|
+
readonly id: "id";
|
|
2319
|
+
readonly fieldSetId: "fieldSetId";
|
|
2320
|
+
readonly seqNo: "seqNo";
|
|
2321
|
+
readonly label: "label";
|
|
2322
|
+
readonly type: "type";
|
|
2323
|
+
readonly isArray: "isArray";
|
|
2324
|
+
readonly required: "required";
|
|
2325
|
+
readonly createdAt: "createdAt";
|
|
2326
|
+
readonly createdById: "createdById";
|
|
2327
|
+
readonly updatedAt: "updatedAt";
|
|
2328
|
+
readonly updatedById: "updatedById";
|
|
2329
|
+
};
|
|
2330
|
+
export type FieldScalarFieldEnum = (typeof FieldScalarFieldEnum)[keyof typeof FieldScalarFieldEnum];
|
|
2331
|
+
export declare const StepScalarFieldEnum: {
|
|
2332
|
+
readonly id: "id";
|
|
2333
|
+
readonly operationId: "operationId";
|
|
2334
|
+
readonly fieldSetId: "fieldSetId";
|
|
2335
|
+
readonly seqNo: "seqNo";
|
|
2336
|
+
readonly title: "title";
|
|
2337
|
+
readonly instructions: "instructions";
|
|
2338
|
+
readonly multiSet: "multiSet";
|
|
2339
|
+
readonly createdAt: "createdAt";
|
|
2340
|
+
readonly createdById: "createdById";
|
|
2341
|
+
readonly updatedAt: "updatedAt";
|
|
2342
|
+
readonly updatedById: "updatedById";
|
|
2343
|
+
};
|
|
2344
|
+
export type StepScalarFieldEnum = (typeof StepScalarFieldEnum)[keyof typeof StepScalarFieldEnum];
|
|
2345
|
+
export declare const OrderRunScalarFieldEnum: {
|
|
2346
|
+
readonly id: "id";
|
|
2347
|
+
readonly runNo: "runNo";
|
|
2348
|
+
readonly orderId: "orderId";
|
|
2349
|
+
readonly orderRevId: "orderRevId";
|
|
2350
|
+
readonly status: "status";
|
|
2351
|
+
readonly priority: "priority";
|
|
2352
|
+
readonly cost: "cost";
|
|
2353
|
+
readonly dueAt: "dueAt";
|
|
2354
|
+
readonly releaseNote: "releaseNote";
|
|
2355
|
+
readonly createdAt: "createdAt";
|
|
2356
|
+
readonly createdById: "createdById";
|
|
2357
|
+
readonly updatedAt: "updatedAt";
|
|
2358
|
+
readonly updatedById: "updatedById";
|
|
2359
|
+
};
|
|
2360
|
+
export type OrderRunScalarFieldEnum = (typeof OrderRunScalarFieldEnum)[keyof typeof OrderRunScalarFieldEnum];
|
|
2361
|
+
export declare const OperationRunScalarFieldEnum: {
|
|
2362
|
+
readonly id: "id";
|
|
2363
|
+
readonly orderRunId: "orderRunId";
|
|
2364
|
+
readonly operationId: "operationId";
|
|
2365
|
+
readonly status: "status";
|
|
2366
|
+
readonly assignedToId: "assignedToId";
|
|
2367
|
+
readonly cost: "cost";
|
|
2368
|
+
readonly statusNote: "statusNote";
|
|
2369
|
+
readonly completedAt: "completedAt";
|
|
2370
|
+
readonly createdAt: "createdAt";
|
|
2371
|
+
readonly createdById: "createdById";
|
|
2372
|
+
readonly updatedAt: "updatedAt";
|
|
2373
|
+
readonly updatedById: "updatedById";
|
|
2374
|
+
};
|
|
2375
|
+
export type OperationRunScalarFieldEnum = (typeof OperationRunScalarFieldEnum)[keyof typeof OperationRunScalarFieldEnum];
|
|
2376
|
+
export declare const StepRunScalarFieldEnum: {
|
|
2377
|
+
readonly id: "id";
|
|
2378
|
+
readonly operationRunId: "operationRunId";
|
|
2379
|
+
readonly stepId: "stepId";
|
|
2380
|
+
readonly fieldRecordId: "fieldRecordId";
|
|
2381
|
+
readonly completed: "completed";
|
|
2382
|
+
readonly statusNote: "statusNote";
|
|
2383
|
+
readonly createdAt: "createdAt";
|
|
2384
|
+
readonly createdById: "createdById";
|
|
2385
|
+
readonly updatedAt: "updatedAt";
|
|
2386
|
+
readonly updatedById: "updatedById";
|
|
2387
|
+
};
|
|
2388
|
+
export type StepRunScalarFieldEnum = (typeof StepRunScalarFieldEnum)[keyof typeof StepRunScalarFieldEnum];
|
|
2389
|
+
export declare const FieldValueScalarFieldEnum: {
|
|
2390
|
+
readonly id: "id";
|
|
2391
|
+
readonly fieldRecordId: "fieldRecordId";
|
|
2392
|
+
readonly fieldId: "fieldId";
|
|
2393
|
+
readonly setIndex: "setIndex";
|
|
2394
|
+
readonly value: "value";
|
|
2395
|
+
readonly createdAt: "createdAt";
|
|
2396
|
+
readonly createdById: "createdById";
|
|
2397
|
+
readonly updatedAt: "updatedAt";
|
|
2398
|
+
readonly updatedById: "updatedById";
|
|
2399
|
+
};
|
|
2400
|
+
export type FieldValueScalarFieldEnum = (typeof FieldValueScalarFieldEnum)[keyof typeof FieldValueScalarFieldEnum];
|
|
2401
|
+
export declare const ItemScalarFieldEnum: {
|
|
2402
|
+
readonly id: "id";
|
|
2403
|
+
readonly key: "key";
|
|
2404
|
+
readonly description: "description";
|
|
2405
|
+
readonly fieldSetId: "fieldSetId";
|
|
2406
|
+
readonly createdAt: "createdAt";
|
|
2407
|
+
readonly createdById: "createdById";
|
|
2408
|
+
readonly updatedAt: "updatedAt";
|
|
2409
|
+
readonly updatedById: "updatedById";
|
|
2410
|
+
};
|
|
2411
|
+
export type ItemScalarFieldEnum = (typeof ItemScalarFieldEnum)[keyof typeof ItemScalarFieldEnum];
|
|
2412
|
+
export declare const ItemInstanceScalarFieldEnum: {
|
|
2413
|
+
readonly id: "id";
|
|
2414
|
+
readonly itemId: "itemId";
|
|
2415
|
+
readonly orderRunId: "orderRunId";
|
|
2416
|
+
readonly fieldRecordId: "fieldRecordId";
|
|
2417
|
+
readonly key: "key";
|
|
2418
|
+
readonly quantity: "quantity";
|
|
2419
|
+
readonly createdAt: "createdAt";
|
|
2420
|
+
readonly createdById: "createdById";
|
|
2421
|
+
readonly updatedAt: "updatedAt";
|
|
2422
|
+
readonly updatedById: "updatedById";
|
|
2423
|
+
};
|
|
2424
|
+
export type ItemInstanceScalarFieldEnum = (typeof ItemInstanceScalarFieldEnum)[keyof typeof ItemInstanceScalarFieldEnum];
|
|
2425
|
+
export declare const UserScalarFieldEnum: {
|
|
2426
|
+
readonly id: "id";
|
|
2427
|
+
readonly uuid: "uuid";
|
|
2428
|
+
readonly username: "username";
|
|
2429
|
+
readonly passwordHash: "passwordHash";
|
|
2430
|
+
readonly apiKey: "apiKey";
|
|
2431
|
+
readonly isAgent: "isAgent";
|
|
2432
|
+
readonly createdAt: "createdAt";
|
|
2433
|
+
readonly updatedAt: "updatedAt";
|
|
2434
|
+
readonly deletedAt: "deletedAt";
|
|
2435
|
+
};
|
|
2436
|
+
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum];
|
|
2437
|
+
export declare const UserPermissionScalarFieldEnum: {
|
|
2438
|
+
readonly id: "id";
|
|
2439
|
+
readonly userId: "userId";
|
|
2440
|
+
readonly permission: "permission";
|
|
2441
|
+
readonly grantedAt: "grantedAt";
|
|
2442
|
+
readonly grantedBy: "grantedBy";
|
|
2443
|
+
};
|
|
2444
|
+
export type UserPermissionScalarFieldEnum = (typeof UserPermissionScalarFieldEnum)[keyof typeof UserPermissionScalarFieldEnum];
|
|
2445
|
+
export declare const SessionScalarFieldEnum: {
|
|
2446
|
+
readonly id: "id";
|
|
2447
|
+
readonly userId: "userId";
|
|
2448
|
+
readonly tokenHash: "tokenHash";
|
|
2449
|
+
readonly expiresAt: "expiresAt";
|
|
2450
|
+
readonly createdAt: "createdAt";
|
|
2451
|
+
};
|
|
2452
|
+
export type SessionScalarFieldEnum = (typeof SessionScalarFieldEnum)[keyof typeof SessionScalarFieldEnum];
|
|
2453
|
+
export declare const SchemaVersionScalarFieldEnum: {
|
|
2454
|
+
readonly id: "id";
|
|
2455
|
+
readonly version: "version";
|
|
2456
|
+
readonly updated: "updated";
|
|
2457
|
+
};
|
|
2458
|
+
export type SchemaVersionScalarFieldEnum = (typeof SchemaVersionScalarFieldEnum)[keyof typeof SchemaVersionScalarFieldEnum];
|
|
2459
|
+
export declare const LaborTicketScalarFieldEnum: {
|
|
2460
|
+
readonly id: "id";
|
|
2461
|
+
readonly operationRunId: "operationRunId";
|
|
2462
|
+
readonly userId: "userId";
|
|
2463
|
+
readonly runId: "runId";
|
|
2464
|
+
readonly clockIn: "clockIn";
|
|
2465
|
+
readonly clockOut: "clockOut";
|
|
2466
|
+
readonly cost: "cost";
|
|
2467
|
+
readonly createdAt: "createdAt";
|
|
2468
|
+
readonly createdById: "createdById";
|
|
2469
|
+
readonly updatedAt: "updatedAt";
|
|
2470
|
+
readonly updatedById: "updatedById";
|
|
2471
|
+
};
|
|
2472
|
+
export type LaborTicketScalarFieldEnum = (typeof LaborTicketScalarFieldEnum)[keyof typeof LaborTicketScalarFieldEnum];
|
|
2473
|
+
export declare const AuditLogScalarFieldEnum: {
|
|
2474
|
+
readonly id: "id";
|
|
2475
|
+
readonly entityType: "entityType";
|
|
2476
|
+
readonly entityId: "entityId";
|
|
2477
|
+
readonly action: "action";
|
|
2478
|
+
readonly field: "field";
|
|
2479
|
+
readonly oldValue: "oldValue";
|
|
2480
|
+
readonly newValue: "newValue";
|
|
2481
|
+
readonly userId: "userId";
|
|
2482
|
+
readonly createdAt: "createdAt";
|
|
2483
|
+
};
|
|
2484
|
+
export type AuditLogScalarFieldEnum = (typeof AuditLogScalarFieldEnum)[keyof typeof AuditLogScalarFieldEnum];
|
|
2485
|
+
export declare const AttachmentScalarFieldEnum: {
|
|
2486
|
+
readonly id: "id";
|
|
2487
|
+
readonly publicId: "publicId";
|
|
2488
|
+
readonly filepath: "filepath";
|
|
2489
|
+
readonly filename: "filename";
|
|
2490
|
+
readonly fileSize: "fileSize";
|
|
2491
|
+
readonly fileHash: "fileHash";
|
|
2492
|
+
readonly uploadedById: "uploadedById";
|
|
2493
|
+
readonly createdAt: "createdAt";
|
|
2494
|
+
};
|
|
2495
|
+
export type AttachmentScalarFieldEnum = (typeof AttachmentScalarFieldEnum)[keyof typeof AttachmentScalarFieldEnum];
|
|
2496
|
+
export declare const FieldAttachmentScalarFieldEnum: {
|
|
2497
|
+
readonly fieldValueId: "fieldValueId";
|
|
2498
|
+
readonly attachmentId: "attachmentId";
|
|
2499
|
+
readonly createdAt: "createdAt";
|
|
2500
|
+
};
|
|
2501
|
+
export type FieldAttachmentScalarFieldEnum = (typeof FieldAttachmentScalarFieldEnum)[keyof typeof FieldAttachmentScalarFieldEnum];
|
|
2502
|
+
export declare const OperationRunCommentScalarFieldEnum: {
|
|
2503
|
+
readonly id: "id";
|
|
2504
|
+
readonly operationRunId: "operationRunId";
|
|
2505
|
+
readonly type: "type";
|
|
2506
|
+
readonly body: "body";
|
|
2507
|
+
readonly createdAt: "createdAt";
|
|
2508
|
+
readonly createdById: "createdById";
|
|
2509
|
+
};
|
|
2510
|
+
export type OperationRunCommentScalarFieldEnum = (typeof OperationRunCommentScalarFieldEnum)[keyof typeof OperationRunCommentScalarFieldEnum];
|
|
2511
|
+
export declare const SortOrder: {
|
|
2512
|
+
readonly asc: "asc";
|
|
2513
|
+
readonly desc: "desc";
|
|
2514
|
+
};
|
|
2515
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2516
|
+
export declare const NullsOrder: {
|
|
2517
|
+
readonly first: "first";
|
|
2518
|
+
readonly last: "last";
|
|
2519
|
+
};
|
|
2520
|
+
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
2521
|
+
/**
|
|
2522
|
+
* Field references
|
|
2523
|
+
*/
|
|
2524
|
+
/**
|
|
2525
|
+
* Reference to a field of type 'Int'
|
|
2526
|
+
*/
|
|
2527
|
+
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>;
|
|
2528
|
+
/**
|
|
2529
|
+
* Reference to a field of type 'String'
|
|
2530
|
+
*/
|
|
2531
|
+
export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>;
|
|
2532
|
+
/**
|
|
2533
|
+
* Reference to a field of type 'OrderStatus'
|
|
2534
|
+
*/
|
|
2535
|
+
export type EnumOrderStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OrderStatus'>;
|
|
2536
|
+
/**
|
|
2537
|
+
* Reference to a field of type 'DateTime'
|
|
2538
|
+
*/
|
|
2539
|
+
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>;
|
|
2540
|
+
/**
|
|
2541
|
+
* Reference to a field of type 'RevisionStatus'
|
|
2542
|
+
*/
|
|
2543
|
+
export type EnumRevisionStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RevisionStatus'>;
|
|
2544
|
+
/**
|
|
2545
|
+
* Reference to a field of type 'FieldType'
|
|
2546
|
+
*/
|
|
2547
|
+
export type EnumFieldTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'FieldType'>;
|
|
2548
|
+
/**
|
|
2549
|
+
* Reference to a field of type 'Boolean'
|
|
2550
|
+
*/
|
|
2551
|
+
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>;
|
|
2552
|
+
/**
|
|
2553
|
+
* Reference to a field of type 'OrderRunStatus'
|
|
2554
|
+
*/
|
|
2555
|
+
export type EnumOrderRunStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OrderRunStatus'>;
|
|
2556
|
+
/**
|
|
2557
|
+
* Reference to a field of type 'OrderRunPriority'
|
|
2558
|
+
*/
|
|
2559
|
+
export type EnumOrderRunPriorityFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OrderRunPriority'>;
|
|
2560
|
+
/**
|
|
2561
|
+
* Reference to a field of type 'Float'
|
|
2562
|
+
*/
|
|
2563
|
+
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>;
|
|
2564
|
+
/**
|
|
2565
|
+
* Reference to a field of type 'OperationRunStatus'
|
|
2566
|
+
*/
|
|
2567
|
+
export type EnumOperationRunStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OperationRunStatus'>;
|
|
2568
|
+
/**
|
|
2569
|
+
* Reference to a field of type 'ErpPermission'
|
|
2570
|
+
*/
|
|
2571
|
+
export type EnumErpPermissionFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ErpPermission'>;
|
|
2572
|
+
/**
|
|
2573
|
+
* Reference to a field of type 'OperationRunCommentType'
|
|
2574
|
+
*/
|
|
2575
|
+
export type EnumOperationRunCommentTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OperationRunCommentType'>;
|
|
2576
|
+
/**
|
|
2577
|
+
* Batch Payload for updateMany & deleteMany & createMany
|
|
2578
|
+
*/
|
|
2579
|
+
export type BatchPayload = {
|
|
2580
|
+
count: number;
|
|
2581
|
+
};
|
|
2582
|
+
export declare const defineExtension: runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>;
|
|
2583
|
+
export type DefaultPrismaClient = PrismaClient;
|
|
2584
|
+
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal';
|
|
2585
|
+
export type PrismaClientOptions = ({
|
|
2586
|
+
/**
|
|
2587
|
+
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
|
|
2588
|
+
*/
|
|
2589
|
+
adapter: runtime.SqlDriverAdapterFactory;
|
|
2590
|
+
accelerateUrl?: never;
|
|
2591
|
+
} | {
|
|
2592
|
+
/**
|
|
2593
|
+
* Prisma Accelerate URL allowing the client to connect through Accelerate instead of a direct database.
|
|
2594
|
+
*/
|
|
2595
|
+
accelerateUrl: string;
|
|
2596
|
+
adapter?: never;
|
|
2597
|
+
}) & {
|
|
2598
|
+
/**
|
|
2599
|
+
* @default "colorless"
|
|
2600
|
+
*/
|
|
2601
|
+
errorFormat?: ErrorFormat;
|
|
2602
|
+
/**
|
|
2603
|
+
* @example
|
|
2604
|
+
* ```
|
|
2605
|
+
* // Shorthand for `emit: 'stdout'`
|
|
2606
|
+
* log: ['query', 'info', 'warn', 'error']
|
|
2607
|
+
*
|
|
2608
|
+
* // Emit as events only
|
|
2609
|
+
* log: [
|
|
2610
|
+
* { emit: 'event', level: 'query' },
|
|
2611
|
+
* { emit: 'event', level: 'info' },
|
|
2612
|
+
* { emit: 'event', level: 'warn' }
|
|
2613
|
+
* { emit: 'event', level: 'error' }
|
|
2614
|
+
* ]
|
|
2615
|
+
*
|
|
2616
|
+
* / Emit as events and log to stdout
|
|
2617
|
+
* og: [
|
|
2618
|
+
* { emit: 'stdout', level: 'query' },
|
|
2619
|
+
* { emit: 'stdout', level: 'info' },
|
|
2620
|
+
* { emit: 'stdout', level: 'warn' }
|
|
2621
|
+
* { emit: 'stdout', level: 'error' }
|
|
2622
|
+
*
|
|
2623
|
+
* ```
|
|
2624
|
+
* Read more in our [docs](https://pris.ly/d/logging).
|
|
2625
|
+
*/
|
|
2626
|
+
log?: (LogLevel | LogDefinition)[];
|
|
2627
|
+
/**
|
|
2628
|
+
* The default values for transactionOptions
|
|
2629
|
+
* maxWait ?= 2000
|
|
2630
|
+
* timeout ?= 5000
|
|
2631
|
+
*/
|
|
2632
|
+
transactionOptions?: {
|
|
2633
|
+
maxWait?: number;
|
|
2634
|
+
timeout?: number;
|
|
2635
|
+
isolationLevel?: TransactionIsolationLevel;
|
|
2636
|
+
};
|
|
2637
|
+
/**
|
|
2638
|
+
* Global configuration for omitting model fields by default.
|
|
2639
|
+
*
|
|
2640
|
+
* @example
|
|
2641
|
+
* ```
|
|
2642
|
+
* const prisma = new PrismaClient({
|
|
2643
|
+
* omit: {
|
|
2644
|
+
* user: {
|
|
2645
|
+
* password: true
|
|
2646
|
+
* }
|
|
2647
|
+
* }
|
|
2648
|
+
* })
|
|
2649
|
+
* ```
|
|
2650
|
+
*/
|
|
2651
|
+
omit?: GlobalOmitConfig;
|
|
2652
|
+
/**
|
|
2653
|
+
* SQL commenter plugins that add metadata to SQL queries as comments.
|
|
2654
|
+
* Comments follow the sqlcommenter format: https://google.github.io/sqlcommenter/
|
|
2655
|
+
*
|
|
2656
|
+
* @example
|
|
2657
|
+
* ```
|
|
2658
|
+
* const prisma = new PrismaClient({
|
|
2659
|
+
* adapter,
|
|
2660
|
+
* comments: [
|
|
2661
|
+
* traceContext(),
|
|
2662
|
+
* queryInsights(),
|
|
2663
|
+
* ],
|
|
2664
|
+
* })
|
|
2665
|
+
* ```
|
|
2666
|
+
*/
|
|
2667
|
+
comments?: runtime.SqlCommenterPlugin[];
|
|
2668
|
+
};
|
|
2669
|
+
export type GlobalOmitConfig = {
|
|
2670
|
+
order?: Prisma.OrderOmit;
|
|
2671
|
+
orderRevision?: Prisma.OrderRevisionOmit;
|
|
2672
|
+
operation?: Prisma.OperationOmit;
|
|
2673
|
+
operationFieldRef?: Prisma.OperationFieldRefOmit;
|
|
2674
|
+
operationDependency?: Prisma.OperationDependencyOmit;
|
|
2675
|
+
workCenter?: Prisma.WorkCenterOmit;
|
|
2676
|
+
workCenterUser?: Prisma.WorkCenterUserOmit;
|
|
2677
|
+
fieldSet?: Prisma.FieldSetOmit;
|
|
2678
|
+
fieldRecord?: Prisma.FieldRecordOmit;
|
|
2679
|
+
field?: Prisma.FieldOmit;
|
|
2680
|
+
step?: Prisma.StepOmit;
|
|
2681
|
+
orderRun?: Prisma.OrderRunOmit;
|
|
2682
|
+
operationRun?: Prisma.OperationRunOmit;
|
|
2683
|
+
stepRun?: Prisma.StepRunOmit;
|
|
2684
|
+
fieldValue?: Prisma.FieldValueOmit;
|
|
2685
|
+
item?: Prisma.ItemOmit;
|
|
2686
|
+
itemInstance?: Prisma.ItemInstanceOmit;
|
|
2687
|
+
user?: Prisma.UserOmit;
|
|
2688
|
+
userPermission?: Prisma.UserPermissionOmit;
|
|
2689
|
+
session?: Prisma.SessionOmit;
|
|
2690
|
+
schemaVersion?: Prisma.SchemaVersionOmit;
|
|
2691
|
+
laborTicket?: Prisma.LaborTicketOmit;
|
|
2692
|
+
auditLog?: Prisma.AuditLogOmit;
|
|
2693
|
+
attachment?: Prisma.AttachmentOmit;
|
|
2694
|
+
fieldAttachment?: Prisma.FieldAttachmentOmit;
|
|
2695
|
+
operationRunComment?: Prisma.OperationRunCommentOmit;
|
|
2696
|
+
};
|
|
2697
|
+
export type LogLevel = 'info' | 'query' | 'warn' | 'error';
|
|
2698
|
+
export type LogDefinition = {
|
|
2699
|
+
level: LogLevel;
|
|
2700
|
+
emit: 'stdout' | 'event';
|
|
2701
|
+
};
|
|
2702
|
+
export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
|
|
2703
|
+
export type GetLogType<T> = CheckIsLogLevel<T extends LogDefinition ? T['level'] : T>;
|
|
2704
|
+
export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition> ? GetLogType<T[number]> : never;
|
|
2705
|
+
export type QueryEvent = {
|
|
2706
|
+
timestamp: Date;
|
|
2707
|
+
query: string;
|
|
2708
|
+
params: string;
|
|
2709
|
+
duration: number;
|
|
2710
|
+
target: string;
|
|
2711
|
+
};
|
|
2712
|
+
export type LogEvent = {
|
|
2713
|
+
timestamp: Date;
|
|
2714
|
+
message: string;
|
|
2715
|
+
target: string;
|
|
2716
|
+
};
|
|
2717
|
+
export type PrismaAction = 'findUnique' | 'findUniqueOrThrow' | 'findMany' | 'findFirst' | 'findFirstOrThrow' | 'create' | 'createMany' | 'createManyAndReturn' | 'update' | 'updateMany' | 'updateManyAndReturn' | 'upsert' | 'delete' | 'deleteMany' | 'executeRaw' | 'queryRaw' | 'aggregate' | 'count' | 'runCommandRaw' | 'findRaw' | 'groupBy';
|
|
2718
|
+
/**
|
|
2719
|
+
* `PrismaClient` proxy available in interactive transactions.
|
|
2720
|
+
*/
|
|
2721
|
+
export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>;
|
|
2722
|
+
//# sourceMappingURL=prismaNamespace.d.ts.map
|