@highstate/backend 0.12.1 → 0.13.1
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 +2 -2
- package/dist/index.js +86 -60
- package/dist/index.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/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 `Operation` 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
|
|
|
@@ -164,12 +164,12 @@ export type OperationGroupByArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
164
164
|
|
|
165
165
|
export type OperationGroupByOutputType = {
|
|
166
166
|
id: string
|
|
167
|
-
meta:
|
|
167
|
+
meta:PrismaJson.OperationMeta
|
|
168
168
|
type: $Enums.OperationType
|
|
169
169
|
status: $Enums.OperationStatus
|
|
170
|
-
options:
|
|
171
|
-
requestedInstanceIds:
|
|
172
|
-
phases:
|
|
170
|
+
options:PrismaJson.OperationOptions
|
|
171
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
172
|
+
phases:PrismaJson.OperationPhase[] | null
|
|
173
173
|
startedAt: Date
|
|
174
174
|
updatedAt: Date
|
|
175
175
|
finishedAt: Date | null
|
|
@@ -278,12 +278,12 @@ export type OperationScalarWhereWithAggregatesInput = {
|
|
|
278
278
|
|
|
279
279
|
export type OperationCreateInput = {
|
|
280
280
|
id?: string
|
|
281
|
-
meta:
|
|
281
|
+
meta:PrismaJson.OperationMeta
|
|
282
282
|
type: $Enums.OperationType
|
|
283
283
|
status?: $Enums.OperationStatus
|
|
284
|
-
options:
|
|
285
|
-
requestedInstanceIds:
|
|
286
|
-
phases?:
|
|
284
|
+
options:PrismaJson.OperationOptions
|
|
285
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
286
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
287
287
|
startedAt?: Date | string
|
|
288
288
|
updatedAt?: Date | string
|
|
289
289
|
finishedAt?: Date | string | null
|
|
@@ -293,12 +293,12 @@ export type OperationCreateInput = {
|
|
|
293
293
|
|
|
294
294
|
export type OperationUncheckedCreateInput = {
|
|
295
295
|
id?: string
|
|
296
|
-
meta:
|
|
296
|
+
meta:PrismaJson.OperationMeta
|
|
297
297
|
type: $Enums.OperationType
|
|
298
298
|
status?: $Enums.OperationStatus
|
|
299
|
-
options:
|
|
300
|
-
requestedInstanceIds:
|
|
301
|
-
phases?:
|
|
299
|
+
options:PrismaJson.OperationOptions
|
|
300
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
301
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
302
302
|
startedAt?: Date | string
|
|
303
303
|
updatedAt?: Date | string
|
|
304
304
|
finishedAt?: Date | string | null
|
|
@@ -308,12 +308,12 @@ export type OperationUncheckedCreateInput = {
|
|
|
308
308
|
|
|
309
309
|
export type OperationUpdateInput = {
|
|
310
310
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
311
|
-
meta?:
|
|
311
|
+
meta?:PrismaJson.OperationMeta
|
|
312
312
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
313
313
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
314
|
-
options?:
|
|
315
|
-
requestedInstanceIds?:
|
|
316
|
-
phases?:
|
|
314
|
+
options?:PrismaJson.OperationOptions
|
|
315
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
316
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
317
317
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
318
318
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
319
319
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -323,12 +323,12 @@ export type OperationUpdateInput = {
|
|
|
323
323
|
|
|
324
324
|
export type OperationUncheckedUpdateInput = {
|
|
325
325
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
326
|
-
meta?:
|
|
326
|
+
meta?:PrismaJson.OperationMeta
|
|
327
327
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
328
328
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
329
|
-
options?:
|
|
330
|
-
requestedInstanceIds?:
|
|
331
|
-
phases?:
|
|
329
|
+
options?:PrismaJson.OperationOptions
|
|
330
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
331
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
332
332
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
333
333
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
334
334
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -338,12 +338,12 @@ export type OperationUncheckedUpdateInput = {
|
|
|
338
338
|
|
|
339
339
|
export type OperationCreateManyInput = {
|
|
340
340
|
id?: string
|
|
341
|
-
meta:
|
|
341
|
+
meta:PrismaJson.OperationMeta
|
|
342
342
|
type: $Enums.OperationType
|
|
343
343
|
status?: $Enums.OperationStatus
|
|
344
|
-
options:
|
|
345
|
-
requestedInstanceIds:
|
|
346
|
-
phases?:
|
|
344
|
+
options:PrismaJson.OperationOptions
|
|
345
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
346
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
347
347
|
startedAt?: Date | string
|
|
348
348
|
updatedAt?: Date | string
|
|
349
349
|
finishedAt?: Date | string | null
|
|
@@ -351,12 +351,12 @@ export type OperationCreateManyInput = {
|
|
|
351
351
|
|
|
352
352
|
export type OperationUpdateManyMutationInput = {
|
|
353
353
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
354
|
-
meta?:
|
|
354
|
+
meta?:PrismaJson.OperationMeta
|
|
355
355
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
356
356
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
357
|
-
options?:
|
|
358
|
-
requestedInstanceIds?:
|
|
359
|
-
phases?:
|
|
357
|
+
options?:PrismaJson.OperationOptions
|
|
358
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
359
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
360
360
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
361
361
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
362
362
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -364,12 +364,12 @@ export type OperationUpdateManyMutationInput = {
|
|
|
364
364
|
|
|
365
365
|
export type OperationUncheckedUpdateManyInput = {
|
|
366
366
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
367
|
-
meta?:
|
|
367
|
+
meta?:PrismaJson.OperationMeta
|
|
368
368
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
369
369
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
370
|
-
options?:
|
|
371
|
-
requestedInstanceIds?:
|
|
372
|
-
phases?:
|
|
370
|
+
options?:PrismaJson.OperationOptions
|
|
371
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
372
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
373
373
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
374
374
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
375
375
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -453,12 +453,12 @@ export type OperationUpdateOneRequiredWithoutLogsNestedInput = {
|
|
|
453
453
|
|
|
454
454
|
export type OperationCreateWithoutOperationStatesInput = {
|
|
455
455
|
id?: string
|
|
456
|
-
meta:
|
|
456
|
+
meta:PrismaJson.OperationMeta
|
|
457
457
|
type: $Enums.OperationType
|
|
458
458
|
status?: $Enums.OperationStatus
|
|
459
|
-
options:
|
|
460
|
-
requestedInstanceIds:
|
|
461
|
-
phases?:
|
|
459
|
+
options:PrismaJson.OperationOptions
|
|
460
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
461
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
462
462
|
startedAt?: Date | string
|
|
463
463
|
updatedAt?: Date | string
|
|
464
464
|
finishedAt?: Date | string | null
|
|
@@ -467,12 +467,12 @@ export type OperationCreateWithoutOperationStatesInput = {
|
|
|
467
467
|
|
|
468
468
|
export type OperationUncheckedCreateWithoutOperationStatesInput = {
|
|
469
469
|
id?: string
|
|
470
|
-
meta:
|
|
470
|
+
meta:PrismaJson.OperationMeta
|
|
471
471
|
type: $Enums.OperationType
|
|
472
472
|
status?: $Enums.OperationStatus
|
|
473
|
-
options:
|
|
474
|
-
requestedInstanceIds:
|
|
475
|
-
phases?:
|
|
473
|
+
options:PrismaJson.OperationOptions
|
|
474
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
475
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
476
476
|
startedAt?: Date | string
|
|
477
477
|
updatedAt?: Date | string
|
|
478
478
|
finishedAt?: Date | string | null
|
|
@@ -497,12 +497,12 @@ export type OperationUpdateToOneWithWhereWithoutOperationStatesInput = {
|
|
|
497
497
|
|
|
498
498
|
export type OperationUpdateWithoutOperationStatesInput = {
|
|
499
499
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
500
|
-
meta?:
|
|
500
|
+
meta?:PrismaJson.OperationMeta
|
|
501
501
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
502
502
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
503
|
-
options?:
|
|
504
|
-
requestedInstanceIds?:
|
|
505
|
-
phases?:
|
|
503
|
+
options?:PrismaJson.OperationOptions
|
|
504
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
505
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
506
506
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
507
507
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
508
508
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -511,12 +511,12 @@ export type OperationUpdateWithoutOperationStatesInput = {
|
|
|
511
511
|
|
|
512
512
|
export type OperationUncheckedUpdateWithoutOperationStatesInput = {
|
|
513
513
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
514
|
-
meta?:
|
|
514
|
+
meta?:PrismaJson.OperationMeta
|
|
515
515
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
516
516
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
517
|
-
options?:
|
|
518
|
-
requestedInstanceIds?:
|
|
519
|
-
phases?:
|
|
517
|
+
options?:PrismaJson.OperationOptions
|
|
518
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
519
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
520
520
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
521
521
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
522
522
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -525,12 +525,12 @@ export type OperationUncheckedUpdateWithoutOperationStatesInput = {
|
|
|
525
525
|
|
|
526
526
|
export type OperationCreateWithoutLogsInput = {
|
|
527
527
|
id?: string
|
|
528
|
-
meta:
|
|
528
|
+
meta:PrismaJson.OperationMeta
|
|
529
529
|
type: $Enums.OperationType
|
|
530
530
|
status?: $Enums.OperationStatus
|
|
531
|
-
options:
|
|
532
|
-
requestedInstanceIds:
|
|
533
|
-
phases?:
|
|
531
|
+
options:PrismaJson.OperationOptions
|
|
532
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
533
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
534
534
|
startedAt?: Date | string
|
|
535
535
|
updatedAt?: Date | string
|
|
536
536
|
finishedAt?: Date | string | null
|
|
@@ -539,12 +539,12 @@ export type OperationCreateWithoutLogsInput = {
|
|
|
539
539
|
|
|
540
540
|
export type OperationUncheckedCreateWithoutLogsInput = {
|
|
541
541
|
id?: string
|
|
542
|
-
meta:
|
|
542
|
+
meta:PrismaJson.OperationMeta
|
|
543
543
|
type: $Enums.OperationType
|
|
544
544
|
status?: $Enums.OperationStatus
|
|
545
|
-
options:
|
|
546
|
-
requestedInstanceIds:
|
|
547
|
-
phases?:
|
|
545
|
+
options:PrismaJson.OperationOptions
|
|
546
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
547
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
548
548
|
startedAt?: Date | string
|
|
549
549
|
updatedAt?: Date | string
|
|
550
550
|
finishedAt?: Date | string | null
|
|
@@ -569,12 +569,12 @@ export type OperationUpdateToOneWithWhereWithoutLogsInput = {
|
|
|
569
569
|
|
|
570
570
|
export type OperationUpdateWithoutLogsInput = {
|
|
571
571
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
572
|
-
meta?:
|
|
572
|
+
meta?:PrismaJson.OperationMeta
|
|
573
573
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
574
574
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
575
|
-
options?:
|
|
576
|
-
requestedInstanceIds?:
|
|
577
|
-
phases?:
|
|
575
|
+
options?:PrismaJson.OperationOptions
|
|
576
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
577
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
578
578
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
579
579
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
580
580
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -583,12 +583,12 @@ export type OperationUpdateWithoutLogsInput = {
|
|
|
583
583
|
|
|
584
584
|
export type OperationUncheckedUpdateWithoutLogsInput = {
|
|
585
585
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
586
|
-
meta?:
|
|
586
|
+
meta?:PrismaJson.OperationMeta
|
|
587
587
|
type?: Prisma.EnumOperationTypeFieldUpdateOperationsInput | $Enums.OperationType
|
|
588
588
|
status?: Prisma.EnumOperationStatusFieldUpdateOperationsInput | $Enums.OperationStatus
|
|
589
|
-
options?:
|
|
590
|
-
requestedInstanceIds?:
|
|
591
|
-
phases?:
|
|
589
|
+
options?:PrismaJson.OperationOptions
|
|
590
|
+
requestedInstanceIds?:PrismaJson.InstanceIds
|
|
591
|
+
phases?:PrismaJson.OperationPhase[] | Prisma.NullableJsonNullValueInput
|
|
592
592
|
startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
593
593
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
594
594
|
finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -721,7 +721,7 @@ export type $OperationPayload<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
721
721
|
*
|
|
722
722
|
* [OperationMeta]
|
|
723
723
|
*/
|
|
724
|
-
meta:
|
|
724
|
+
meta:PrismaJson.OperationMeta
|
|
725
725
|
/**
|
|
726
726
|
* The type of the operation.
|
|
727
727
|
*/
|
|
@@ -735,19 +735,19 @@ export type $OperationPayload<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
735
735
|
*
|
|
736
736
|
* [OperationOptions]
|
|
737
737
|
*/
|
|
738
|
-
options:
|
|
738
|
+
options:PrismaJson.OperationOptions
|
|
739
739
|
/**
|
|
740
740
|
* The IDs of the instances that were exlicitly requested to operate on.
|
|
741
741
|
*
|
|
742
742
|
* [InstanceIds]
|
|
743
743
|
*/
|
|
744
|
-
requestedInstanceIds:
|
|
744
|
+
requestedInstanceIds:PrismaJson.InstanceIds
|
|
745
745
|
/**
|
|
746
746
|
* The execution phases of the operation.
|
|
747
747
|
*
|
|
748
748
|
* [OperationPhase[]]
|
|
749
749
|
*/
|
|
750
|
-
phases:
|
|
750
|
+
phases:PrismaJson.OperationPhase[] | null
|
|
751
751
|
/**
|
|
752
752
|
* The time when the operation started.
|
|
753
753
|
*/
|
|
@@ -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 `OperationLog` 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
|
|