@highstate/backend 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-SEPC66ZL.js → chunk-4JUMOKLV.js} +4 -3
- package/dist/chunk-4JUMOKLV.js.map +1 -0
- package/dist/highstate.manifest.json +3 -3
- package/dist/index.js +87 -63
- package/dist/index.js.map +1 -1
- package/dist/library/worker/main.js +4 -2
- package/dist/library/worker/main.js.map +1 -1
- package/dist/shared/index.js +1 -1
- package/package.json +3 -3
- package/prisma/project/main.prisma +1 -1
- package/prisma/project/operation.prisma +1 -0
- package/src/business/instance-state.ts +61 -27
- package/src/database/_generated/project/browser.ts +244 -0
- package/src/database/_generated/project/client.ts +5 -30
- package/src/database/_generated/project/commonInputTypes.ts +2 -2
- package/src/database/_generated/project/enums.ts +3 -1
- package/src/database/_generated/project/internal/class.ts +11 -16
- package/src/database/_generated/project/internal/prismaNamespace.ts +7 -13
- package/src/database/_generated/project/internal/prismaNamespaceBrowser.ts +445 -0
- package/src/database/_generated/project/models/ApiKey.ts +21 -21
- package/src/database/_generated/project/models/Artifact.ts +31 -31
- package/src/database/_generated/project/models/HubModel.ts +11 -11
- package/src/database/_generated/project/models/InstanceCustomStatus.ts +23 -23
- package/src/database/_generated/project/models/InstanceEvaluationState.ts +15 -15
- package/src/database/_generated/project/models/InstanceLock.ts +15 -15
- package/src/database/_generated/project/models/InstanceModel.ts +11 -11
- package/src/database/_generated/project/models/InstanceOperationState.ts +44 -44
- package/src/database/_generated/project/models/InstanceState.ts +206 -206
- package/src/database/_generated/project/models/Operation.ts +70 -70
- package/src/database/_generated/project/models/OperationLog.ts +2 -2
- package/src/database/_generated/project/models/Page.ts +54 -54
- package/src/database/_generated/project/models/Secret.ts +44 -44
- package/src/database/_generated/project/models/ServiceAccount.ts +40 -40
- package/src/database/_generated/project/models/Terminal.ts +62 -62
- package/src/database/_generated/project/models/TerminalSession.ts +2 -2
- package/src/database/_generated/project/models/TerminalSessionLog.ts +2 -2
- package/src/database/_generated/project/models/Trigger.ts +32 -32
- package/src/database/_generated/project/models/UnlockMethod.ts +11 -11
- package/src/database/_generated/project/models/UserCompositeViewport.ts +17 -17
- package/src/database/_generated/project/models/UserProjectViewport.ts +11 -11
- package/src/database/_generated/project/models/Worker.ts +2 -2
- package/src/database/_generated/project/models/WorkerUnitRegistration.ts +23 -23
- package/src/database/_generated/project/models/WorkerVersion.ts +29 -29
- package/src/database/_generated/project/models/WorkerVersionLog.ts +2 -2
- package/src/database/_generated/project/models.ts +1 -1
- package/src/database/_generated/project/pjtg.ts +1 -0
- package/src/library/local.ts +4 -3
- package/src/library/worker/evaluator.ts +5 -1
- package/src/orchestrator/operation-workset.ts +22 -11
- package/src/orchestrator/operation.ts +11 -5
- package/src/shared/models/project/operation.ts +1 -0
- package/dist/chunk-SEPC66ZL.js.map +0 -1
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `UnlockMethod` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -170,7 +170,7 @@ export type UnlockMethodGroupByArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
170
170
|
|
|
171
171
|
export type UnlockMethodGroupByOutputType = {
|
|
172
172
|
id: string
|
|
173
|
-
meta:
|
|
173
|
+
meta:PrismaJson.UnlockMethodMeta
|
|
174
174
|
type: $Enums.UnlockMethodType
|
|
175
175
|
encryptedIdentity: string
|
|
176
176
|
recipient: string
|
|
@@ -260,7 +260,7 @@ export type UnlockMethodScalarWhereWithAggregatesInput = {
|
|
|
260
260
|
|
|
261
261
|
export type UnlockMethodCreateInput = {
|
|
262
262
|
id?: string
|
|
263
|
-
meta:
|
|
263
|
+
meta:PrismaJson.UnlockMethodMeta
|
|
264
264
|
type: $Enums.UnlockMethodType
|
|
265
265
|
encryptedIdentity: string
|
|
266
266
|
recipient: string
|
|
@@ -270,7 +270,7 @@ export type UnlockMethodCreateInput = {
|
|
|
270
270
|
|
|
271
271
|
export type UnlockMethodUncheckedCreateInput = {
|
|
272
272
|
id?: string
|
|
273
|
-
meta:
|
|
273
|
+
meta:PrismaJson.UnlockMethodMeta
|
|
274
274
|
type: $Enums.UnlockMethodType
|
|
275
275
|
encryptedIdentity: string
|
|
276
276
|
recipient: string
|
|
@@ -280,7 +280,7 @@ export type UnlockMethodUncheckedCreateInput = {
|
|
|
280
280
|
|
|
281
281
|
export type UnlockMethodUpdateInput = {
|
|
282
282
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
283
|
-
meta?:
|
|
283
|
+
meta?:PrismaJson.UnlockMethodMeta
|
|
284
284
|
type?: Prisma.EnumUnlockMethodTypeFieldUpdateOperationsInput | $Enums.UnlockMethodType
|
|
285
285
|
encryptedIdentity?: Prisma.StringFieldUpdateOperationsInput | string
|
|
286
286
|
recipient?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -290,7 +290,7 @@ export type UnlockMethodUpdateInput = {
|
|
|
290
290
|
|
|
291
291
|
export type UnlockMethodUncheckedUpdateInput = {
|
|
292
292
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
293
|
-
meta?:
|
|
293
|
+
meta?:PrismaJson.UnlockMethodMeta
|
|
294
294
|
type?: Prisma.EnumUnlockMethodTypeFieldUpdateOperationsInput | $Enums.UnlockMethodType
|
|
295
295
|
encryptedIdentity?: Prisma.StringFieldUpdateOperationsInput | string
|
|
296
296
|
recipient?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -300,7 +300,7 @@ export type UnlockMethodUncheckedUpdateInput = {
|
|
|
300
300
|
|
|
301
301
|
export type UnlockMethodCreateManyInput = {
|
|
302
302
|
id?: string
|
|
303
|
-
meta:
|
|
303
|
+
meta:PrismaJson.UnlockMethodMeta
|
|
304
304
|
type: $Enums.UnlockMethodType
|
|
305
305
|
encryptedIdentity: string
|
|
306
306
|
recipient: string
|
|
@@ -310,7 +310,7 @@ export type UnlockMethodCreateManyInput = {
|
|
|
310
310
|
|
|
311
311
|
export type UnlockMethodUpdateManyMutationInput = {
|
|
312
312
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
313
|
-
meta?:
|
|
313
|
+
meta?:PrismaJson.UnlockMethodMeta
|
|
314
314
|
type?: Prisma.EnumUnlockMethodTypeFieldUpdateOperationsInput | $Enums.UnlockMethodType
|
|
315
315
|
encryptedIdentity?: Prisma.StringFieldUpdateOperationsInput | string
|
|
316
316
|
recipient?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -320,7 +320,7 @@ export type UnlockMethodUpdateManyMutationInput = {
|
|
|
320
320
|
|
|
321
321
|
export type UnlockMethodUncheckedUpdateManyInput = {
|
|
322
322
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
323
|
-
meta?:
|
|
323
|
+
meta?:PrismaJson.UnlockMethodMeta
|
|
324
324
|
type?: Prisma.EnumUnlockMethodTypeFieldUpdateOperationsInput | $Enums.UnlockMethodType
|
|
325
325
|
encryptedIdentity?: Prisma.StringFieldUpdateOperationsInput | string
|
|
326
326
|
recipient?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -417,7 +417,7 @@ export type $UnlockMethodPayload<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
417
417
|
*
|
|
418
418
|
* [UnlockMethodMeta]
|
|
419
419
|
*/
|
|
420
|
-
meta:
|
|
420
|
+
meta:PrismaJson.UnlockMethodMeta
|
|
421
421
|
/**
|
|
422
422
|
* The type of unlock method.
|
|
423
423
|
*/
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `UserCompositeViewport` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -135,7 +135,7 @@ export type UserCompositeViewportGroupByArgs<ExtArgs extends runtime.Types.Exten
|
|
|
135
135
|
export type UserCompositeViewportGroupByOutputType = {
|
|
136
136
|
userId: string
|
|
137
137
|
stateId: string
|
|
138
|
-
viewport:
|
|
138
|
+
viewport:(unknown)
|
|
139
139
|
_count: UserCompositeViewportCountAggregateOutputType | null
|
|
140
140
|
_min: UserCompositeViewportMinAggregateOutputType | null
|
|
141
141
|
_max: UserCompositeViewportMaxAggregateOutputType | null
|
|
@@ -204,43 +204,43 @@ export type UserCompositeViewportScalarWhereWithAggregatesInput = {
|
|
|
204
204
|
|
|
205
205
|
export type UserCompositeViewportCreateInput = {
|
|
206
206
|
userId: string
|
|
207
|
-
viewport:
|
|
207
|
+
viewport:(unknown)
|
|
208
208
|
state: Prisma.InstanceStateCreateNestedOneWithoutUserViewportsInput
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
export type UserCompositeViewportUncheckedCreateInput = {
|
|
212
212
|
userId: string
|
|
213
213
|
stateId: string
|
|
214
|
-
viewport:
|
|
214
|
+
viewport:(unknown)
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
export type UserCompositeViewportUpdateInput = {
|
|
218
218
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
219
|
-
viewport?:
|
|
219
|
+
viewport?:(unknown)
|
|
220
220
|
state?: Prisma.InstanceStateUpdateOneRequiredWithoutUserViewportsNestedInput
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
export type UserCompositeViewportUncheckedUpdateInput = {
|
|
224
224
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
225
225
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
226
|
-
viewport?:
|
|
226
|
+
viewport?:(unknown)
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
export type UserCompositeViewportCreateManyInput = {
|
|
230
230
|
userId: string
|
|
231
231
|
stateId: string
|
|
232
|
-
viewport:
|
|
232
|
+
viewport:(unknown)
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
export type UserCompositeViewportUpdateManyMutationInput = {
|
|
236
236
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
237
|
-
viewport?:
|
|
237
|
+
viewport?:(unknown)
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
export type UserCompositeViewportUncheckedUpdateManyInput = {
|
|
241
241
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
242
242
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
243
|
-
viewport?:
|
|
243
|
+
viewport?:(unknown)
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
export type UserCompositeViewportListRelationFilter = {
|
|
@@ -318,12 +318,12 @@ export type UserCompositeViewportUncheckedUpdateManyWithoutStateNestedInput = {
|
|
|
318
318
|
|
|
319
319
|
export type UserCompositeViewportCreateWithoutStateInput = {
|
|
320
320
|
userId: string
|
|
321
|
-
viewport:
|
|
321
|
+
viewport:(unknown)
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
export type UserCompositeViewportUncheckedCreateWithoutStateInput = {
|
|
325
325
|
userId: string
|
|
326
|
-
viewport:
|
|
326
|
+
viewport:(unknown)
|
|
327
327
|
}
|
|
328
328
|
|
|
329
329
|
export type UserCompositeViewportCreateOrConnectWithoutStateInput = {
|
|
@@ -362,22 +362,22 @@ export type UserCompositeViewportScalarWhereInput = {
|
|
|
362
362
|
|
|
363
363
|
export type UserCompositeViewportCreateManyStateInput = {
|
|
364
364
|
userId: string
|
|
365
|
-
viewport:
|
|
365
|
+
viewport:(unknown)
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
export type UserCompositeViewportUpdateWithoutStateInput = {
|
|
369
369
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
370
|
-
viewport?:
|
|
370
|
+
viewport?:(unknown)
|
|
371
371
|
}
|
|
372
372
|
|
|
373
373
|
export type UserCompositeViewportUncheckedUpdateWithoutStateInput = {
|
|
374
374
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
375
|
-
viewport?:
|
|
375
|
+
viewport?:(unknown)
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
export type UserCompositeViewportUncheckedUpdateManyWithoutStateInput = {
|
|
379
379
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
380
|
-
viewport?:
|
|
380
|
+
viewport?:(unknown)
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
|
|
@@ -442,7 +442,7 @@ export type $UserCompositeViewportPayload<ExtArgs extends runtime.Types.Extensio
|
|
|
442
442
|
*
|
|
443
443
|
* ![unknown]
|
|
444
444
|
*/
|
|
445
|
-
viewport:
|
|
445
|
+
viewport:(unknown)
|
|
446
446
|
}, ExtArgs["result"]["userCompositeViewport"]>
|
|
447
447
|
composites: {}
|
|
448
448
|
}
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `UserProjectViewport` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -128,7 +128,7 @@ export type UserProjectViewportGroupByArgs<ExtArgs extends runtime.Types.Extensi
|
|
|
128
128
|
|
|
129
129
|
export type UserProjectViewportGroupByOutputType = {
|
|
130
130
|
userId: string
|
|
131
|
-
viewport:
|
|
131
|
+
viewport:(unknown)
|
|
132
132
|
_count: UserProjectViewportCountAggregateOutputType | null
|
|
133
133
|
_min: UserProjectViewportMinAggregateOutputType | null
|
|
134
134
|
_max: UserProjectViewportMaxAggregateOutputType | null
|
|
@@ -188,37 +188,37 @@ export type UserProjectViewportScalarWhereWithAggregatesInput = {
|
|
|
188
188
|
|
|
189
189
|
export type UserProjectViewportCreateInput = {
|
|
190
190
|
userId: string
|
|
191
|
-
viewport:
|
|
191
|
+
viewport:(unknown)
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
export type UserProjectViewportUncheckedCreateInput = {
|
|
195
195
|
userId: string
|
|
196
|
-
viewport:
|
|
196
|
+
viewport:(unknown)
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
export type UserProjectViewportUpdateInput = {
|
|
200
200
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
201
|
-
viewport?:
|
|
201
|
+
viewport?:(unknown)
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
export type UserProjectViewportUncheckedUpdateInput = {
|
|
205
205
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
206
|
-
viewport?:
|
|
206
|
+
viewport?:(unknown)
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
export type UserProjectViewportCreateManyInput = {
|
|
210
210
|
userId: string
|
|
211
|
-
viewport:
|
|
211
|
+
viewport:(unknown)
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
export type UserProjectViewportUpdateManyMutationInput = {
|
|
215
215
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
216
|
-
viewport?:
|
|
216
|
+
viewport?:(unknown)
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
export type UserProjectViewportUncheckedUpdateManyInput = {
|
|
220
220
|
userId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
221
|
-
viewport?:
|
|
221
|
+
viewport?:(unknown)
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
export type UserProjectViewportCountOrderByAggregateInput = {
|
|
@@ -271,7 +271,7 @@ export type $UserProjectViewportPayload<ExtArgs extends runtime.Types.Extensions
|
|
|
271
271
|
*
|
|
272
272
|
* ![unknown]
|
|
273
273
|
*/
|
|
274
|
-
viewport:
|
|
274
|
+
viewport:(unknown)
|
|
275
275
|
}, ExtArgs["result"]["userProjectViewport"]>
|
|
276
276
|
composites: {}
|
|
277
277
|
}
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `Worker` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `WorkerUnitRegistration` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -160,7 +160,7 @@ export type WorkerUnitRegistrationGroupByArgs<ExtArgs extends runtime.Types.Exte
|
|
|
160
160
|
export type WorkerUnitRegistrationGroupByOutputType = {
|
|
161
161
|
stateId: string
|
|
162
162
|
name: string
|
|
163
|
-
params:
|
|
163
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
164
164
|
workerVersionId: string
|
|
165
165
|
createdAt: Date
|
|
166
166
|
updatedAt: Date
|
|
@@ -250,7 +250,7 @@ export type WorkerUnitRegistrationScalarWhereWithAggregatesInput = {
|
|
|
250
250
|
|
|
251
251
|
export type WorkerUnitRegistrationCreateInput = {
|
|
252
252
|
name: string
|
|
253
|
-
params:
|
|
253
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
254
254
|
createdAt?: Date | string
|
|
255
255
|
updatedAt?: Date | string
|
|
256
256
|
state: Prisma.InstanceStateCreateNestedOneWithoutWorkerRegistrationsInput
|
|
@@ -260,7 +260,7 @@ export type WorkerUnitRegistrationCreateInput = {
|
|
|
260
260
|
export type WorkerUnitRegistrationUncheckedCreateInput = {
|
|
261
261
|
stateId: string
|
|
262
262
|
name: string
|
|
263
|
-
params:
|
|
263
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
264
264
|
workerVersionId: string
|
|
265
265
|
createdAt?: Date | string
|
|
266
266
|
updatedAt?: Date | string
|
|
@@ -268,7 +268,7 @@ export type WorkerUnitRegistrationUncheckedCreateInput = {
|
|
|
268
268
|
|
|
269
269
|
export type WorkerUnitRegistrationUpdateInput = {
|
|
270
270
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
271
|
-
params?:
|
|
271
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
272
272
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
273
273
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
274
274
|
state?: Prisma.InstanceStateUpdateOneRequiredWithoutWorkerRegistrationsNestedInput
|
|
@@ -278,7 +278,7 @@ export type WorkerUnitRegistrationUpdateInput = {
|
|
|
278
278
|
export type WorkerUnitRegistrationUncheckedUpdateInput = {
|
|
279
279
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
280
280
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
281
|
-
params?:
|
|
281
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
282
282
|
workerVersionId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
283
283
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
284
284
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -287,7 +287,7 @@ export type WorkerUnitRegistrationUncheckedUpdateInput = {
|
|
|
287
287
|
export type WorkerUnitRegistrationCreateManyInput = {
|
|
288
288
|
stateId: string
|
|
289
289
|
name: string
|
|
290
|
-
params:
|
|
290
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
291
291
|
workerVersionId: string
|
|
292
292
|
createdAt?: Date | string
|
|
293
293
|
updatedAt?: Date | string
|
|
@@ -295,7 +295,7 @@ export type WorkerUnitRegistrationCreateManyInput = {
|
|
|
295
295
|
|
|
296
296
|
export type WorkerUnitRegistrationUpdateManyMutationInput = {
|
|
297
297
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
298
|
-
params?:
|
|
298
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
299
299
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
300
300
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
301
301
|
}
|
|
@@ -303,7 +303,7 @@ export type WorkerUnitRegistrationUpdateManyMutationInput = {
|
|
|
303
303
|
export type WorkerUnitRegistrationUncheckedUpdateManyInput = {
|
|
304
304
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
305
305
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
306
|
-
params?:
|
|
306
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
307
307
|
workerVersionId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
308
308
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
309
309
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -435,7 +435,7 @@ export type WorkerUnitRegistrationUncheckedUpdateManyWithoutWorkerVersionNestedI
|
|
|
435
435
|
|
|
436
436
|
export type WorkerUnitRegistrationCreateWithoutStateInput = {
|
|
437
437
|
name: string
|
|
438
|
-
params:
|
|
438
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
439
439
|
createdAt?: Date | string
|
|
440
440
|
updatedAt?: Date | string
|
|
441
441
|
workerVersion: Prisma.WorkerVersionCreateNestedOneWithoutUnitRegistrationsInput
|
|
@@ -443,7 +443,7 @@ export type WorkerUnitRegistrationCreateWithoutStateInput = {
|
|
|
443
443
|
|
|
444
444
|
export type WorkerUnitRegistrationUncheckedCreateWithoutStateInput = {
|
|
445
445
|
name: string
|
|
446
|
-
params:
|
|
446
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
447
447
|
workerVersionId: string
|
|
448
448
|
createdAt?: Date | string
|
|
449
449
|
updatedAt?: Date | string
|
|
@@ -488,7 +488,7 @@ export type WorkerUnitRegistrationScalarWhereInput = {
|
|
|
488
488
|
|
|
489
489
|
export type WorkerUnitRegistrationCreateWithoutWorkerVersionInput = {
|
|
490
490
|
name: string
|
|
491
|
-
params:
|
|
491
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
492
492
|
createdAt?: Date | string
|
|
493
493
|
updatedAt?: Date | string
|
|
494
494
|
state: Prisma.InstanceStateCreateNestedOneWithoutWorkerRegistrationsInput
|
|
@@ -497,7 +497,7 @@ export type WorkerUnitRegistrationCreateWithoutWorkerVersionInput = {
|
|
|
497
497
|
export type WorkerUnitRegistrationUncheckedCreateWithoutWorkerVersionInput = {
|
|
498
498
|
stateId: string
|
|
499
499
|
name: string
|
|
500
|
-
params:
|
|
500
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
501
501
|
createdAt?: Date | string
|
|
502
502
|
updatedAt?: Date | string
|
|
503
503
|
}
|
|
@@ -529,7 +529,7 @@ export type WorkerUnitRegistrationUpdateManyWithWhereWithoutWorkerVersionInput =
|
|
|
529
529
|
|
|
530
530
|
export type WorkerUnitRegistrationCreateManyStateInput = {
|
|
531
531
|
name: string
|
|
532
|
-
params:
|
|
532
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
533
533
|
workerVersionId: string
|
|
534
534
|
createdAt?: Date | string
|
|
535
535
|
updatedAt?: Date | string
|
|
@@ -537,7 +537,7 @@ export type WorkerUnitRegistrationCreateManyStateInput = {
|
|
|
537
537
|
|
|
538
538
|
export type WorkerUnitRegistrationUpdateWithoutStateInput = {
|
|
539
539
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
540
|
-
params?:
|
|
540
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
541
541
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
542
542
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
543
543
|
workerVersion?: Prisma.WorkerVersionUpdateOneRequiredWithoutUnitRegistrationsNestedInput
|
|
@@ -545,7 +545,7 @@ export type WorkerUnitRegistrationUpdateWithoutStateInput = {
|
|
|
545
545
|
|
|
546
546
|
export type WorkerUnitRegistrationUncheckedUpdateWithoutStateInput = {
|
|
547
547
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
548
|
-
params?:
|
|
548
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
549
549
|
workerVersionId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
550
550
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
551
551
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -553,7 +553,7 @@ export type WorkerUnitRegistrationUncheckedUpdateWithoutStateInput = {
|
|
|
553
553
|
|
|
554
554
|
export type WorkerUnitRegistrationUncheckedUpdateManyWithoutStateInput = {
|
|
555
555
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
556
|
-
params?:
|
|
556
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
557
557
|
workerVersionId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
558
558
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
559
559
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -562,14 +562,14 @@ export type WorkerUnitRegistrationUncheckedUpdateManyWithoutStateInput = {
|
|
|
562
562
|
export type WorkerUnitRegistrationCreateManyWorkerVersionInput = {
|
|
563
563
|
stateId: string
|
|
564
564
|
name: string
|
|
565
|
-
params:
|
|
565
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
566
566
|
createdAt?: Date | string
|
|
567
567
|
updatedAt?: Date | string
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
export type WorkerUnitRegistrationUpdateWithoutWorkerVersionInput = {
|
|
571
571
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
572
|
-
params?:
|
|
572
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
573
573
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
574
574
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
575
575
|
state?: Prisma.InstanceStateUpdateOneRequiredWithoutWorkerRegistrationsNestedInput
|
|
@@ -578,7 +578,7 @@ export type WorkerUnitRegistrationUpdateWithoutWorkerVersionInput = {
|
|
|
578
578
|
export type WorkerUnitRegistrationUncheckedUpdateWithoutWorkerVersionInput = {
|
|
579
579
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
580
580
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
581
|
-
params?:
|
|
581
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
582
582
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
583
583
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
584
584
|
}
|
|
@@ -586,7 +586,7 @@ export type WorkerUnitRegistrationUncheckedUpdateWithoutWorkerVersionInput = {
|
|
|
586
586
|
export type WorkerUnitRegistrationUncheckedUpdateManyWithoutWorkerVersionInput = {
|
|
587
587
|
stateId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
588
588
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
589
|
-
params?:
|
|
589
|
+
params?:PrismaJson.WorkerUnitRegistrationParams
|
|
590
590
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
591
591
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
592
592
|
}
|
|
@@ -675,7 +675,7 @@ export type $WorkerUnitRegistrationPayload<ExtArgs extends runtime.Types.Extensi
|
|
|
675
675
|
*
|
|
676
676
|
* [WorkerUnitRegistrationParams]
|
|
677
677
|
*/
|
|
678
|
-
params:
|
|
678
|
+
params:PrismaJson.WorkerUnitRegistrationParams
|
|
679
679
|
/**
|
|
680
680
|
* The ID of the worker version this registration currently uses.
|
|
681
681
|
*/
|