@valentine-efagene/qshelter-common 2.0.138 → 2.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +17 -17
- package/dist/generated/client/client.d.ts +17 -17
- package/dist/generated/client/commonInputTypes.d.ts +142 -202
- package/dist/generated/client/enums.d.ts +23 -0
- package/dist/generated/client/enums.js +21 -1
- package/dist/generated/client/internal/class.d.ts +37 -37
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +348 -377
- package/dist/generated/client/internal/prismaNamespace.js +91 -116
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +97 -122
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +91 -116
- package/dist/generated/client/models/ApplicationDocument.d.ts +290 -1
- package/dist/generated/client/models/ApprovalStage.d.ts +1605 -0
- package/dist/generated/client/models/ApprovalStage.js +1 -0
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +2329 -0
- package/dist/generated/client/models/ApprovalStageProgress.js +1 -0
- package/dist/generated/client/models/DocumentApproval.d.ts +1611 -0
- package/dist/generated/client/models/DocumentApproval.js +1 -0
- package/dist/generated/client/models/DocumentDefinition.d.ts +1475 -0
- package/dist/generated/client/models/DocumentDefinition.js +1 -0
- package/dist/generated/client/models/DocumentReview.d.ts +0 -3
- package/dist/generated/client/models/DocumentationPhase.d.ts +215 -629
- package/dist/generated/client/models/DocumentationPlan.d.ts +188 -57
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +3 -0
- package/dist/generated/client/models/Tenant.d.ts +640 -1203
- package/dist/generated/client/models/User.d.ts +414 -817
- package/dist/generated/client/models/index.d.ts +4 -4
- package/dist/generated/client/models/index.js +4 -4
- package/dist/generated/client/models.d.ts +4 -4
- package/dist/src/utils/documentation-enums.d.ts +10 -1
- package/dist/src/utils/documentation-enums.js +8 -0
- package/package.json +1 -1
- package/prisma/migrations/20260119190336_add_document_approval_workflow/migration.sql +134 -0
- package/prisma/schema.prisma +229 -214
|
@@ -155,7 +155,8 @@ export type DocumentationPlanWhereInput = {
|
|
|
155
155
|
createdAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
156
156
|
updatedAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
157
157
|
tenant?: Prisma.XOR<Prisma.TenantNullableScalarRelationFilter, Prisma.TenantWhereInput> | null;
|
|
158
|
-
|
|
158
|
+
documentDefinitions?: Prisma.DocumentDefinitionListRelationFilter;
|
|
159
|
+
approvalStages?: Prisma.ApprovalStageListRelationFilter;
|
|
159
160
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
160
161
|
documentationPhases?: Prisma.DocumentationPhaseListRelationFilter;
|
|
161
162
|
};
|
|
@@ -168,7 +169,8 @@ export type DocumentationPlanOrderByWithRelationInput = {
|
|
|
168
169
|
createdAt?: Prisma.SortOrder;
|
|
169
170
|
updatedAt?: Prisma.SortOrder;
|
|
170
171
|
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
171
|
-
|
|
172
|
+
documentDefinitions?: Prisma.DocumentDefinitionOrderByRelationAggregateInput;
|
|
173
|
+
approvalStages?: Prisma.ApprovalStageOrderByRelationAggregateInput;
|
|
172
174
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseOrderByRelationAggregateInput;
|
|
173
175
|
documentationPhases?: Prisma.DocumentationPhaseOrderByRelationAggregateInput;
|
|
174
176
|
_relevance?: Prisma.DocumentationPlanOrderByRelevanceInput;
|
|
@@ -186,7 +188,8 @@ export type DocumentationPlanWhereUniqueInput = Prisma.AtLeast<{
|
|
|
186
188
|
createdAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
187
189
|
updatedAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
188
190
|
tenant?: Prisma.XOR<Prisma.TenantNullableScalarRelationFilter, Prisma.TenantWhereInput> | null;
|
|
189
|
-
|
|
191
|
+
documentDefinitions?: Prisma.DocumentDefinitionListRelationFilter;
|
|
192
|
+
approvalStages?: Prisma.ApprovalStageListRelationFilter;
|
|
190
193
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
191
194
|
documentationPhases?: Prisma.DocumentationPhaseListRelationFilter;
|
|
192
195
|
}, "id" | "tenantId_name">;
|
|
@@ -222,7 +225,8 @@ export type DocumentationPlanCreateInput = {
|
|
|
222
225
|
createdAt?: Date | string;
|
|
223
226
|
updatedAt?: Date | string;
|
|
224
227
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
225
|
-
|
|
228
|
+
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
229
|
+
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
226
230
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
227
231
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
228
232
|
};
|
|
@@ -234,7 +238,8 @@ export type DocumentationPlanUncheckedCreateInput = {
|
|
|
234
238
|
isActive?: boolean;
|
|
235
239
|
createdAt?: Date | string;
|
|
236
240
|
updatedAt?: Date | string;
|
|
237
|
-
|
|
241
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
242
|
+
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
238
243
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
239
244
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
240
245
|
};
|
|
@@ -246,7 +251,8 @@ export type DocumentationPlanUpdateInput = {
|
|
|
246
251
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
247
252
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
248
253
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
249
|
-
|
|
254
|
+
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
255
|
+
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
250
256
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
251
257
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
252
258
|
};
|
|
@@ -258,7 +264,8 @@ export type DocumentationPlanUncheckedUpdateInput = {
|
|
|
258
264
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
259
265
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
260
266
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
261
|
-
|
|
267
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
268
|
+
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
262
269
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
263
270
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
264
271
|
};
|
|
@@ -378,17 +385,29 @@ export type DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput = {
|
|
|
378
385
|
updateMany?: Prisma.DocumentationPlanUpdateManyWithWhereWithoutTenantInput | Prisma.DocumentationPlanUpdateManyWithWhereWithoutTenantInput[];
|
|
379
386
|
deleteMany?: Prisma.DocumentationPlanScalarWhereInput | Prisma.DocumentationPlanScalarWhereInput[];
|
|
380
387
|
};
|
|
381
|
-
export type
|
|
382
|
-
create?: Prisma.XOR<Prisma.
|
|
383
|
-
connectOrCreate?: Prisma.
|
|
388
|
+
export type DocumentationPlanCreateNestedOneWithoutDocumentDefinitionsInput = {
|
|
389
|
+
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput>;
|
|
390
|
+
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutDocumentDefinitionsInput;
|
|
384
391
|
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
385
392
|
};
|
|
386
|
-
export type
|
|
387
|
-
create?: Prisma.XOR<Prisma.
|
|
388
|
-
connectOrCreate?: Prisma.
|
|
389
|
-
upsert?: Prisma.
|
|
393
|
+
export type DocumentationPlanUpdateOneRequiredWithoutDocumentDefinitionsNestedInput = {
|
|
394
|
+
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput>;
|
|
395
|
+
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutDocumentDefinitionsInput;
|
|
396
|
+
upsert?: Prisma.DocumentationPlanUpsertWithoutDocumentDefinitionsInput;
|
|
390
397
|
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
391
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.
|
|
398
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.DocumentationPlanUpdateToOneWithWhereWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUpdateWithoutDocumentDefinitionsInput>, Prisma.DocumentationPlanUncheckedUpdateWithoutDocumentDefinitionsInput>;
|
|
399
|
+
};
|
|
400
|
+
export type DocumentationPlanCreateNestedOneWithoutApprovalStagesInput = {
|
|
401
|
+
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedCreateWithoutApprovalStagesInput>;
|
|
402
|
+
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutApprovalStagesInput;
|
|
403
|
+
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
404
|
+
};
|
|
405
|
+
export type DocumentationPlanUpdateOneRequiredWithoutApprovalStagesNestedInput = {
|
|
406
|
+
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedCreateWithoutApprovalStagesInput>;
|
|
407
|
+
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutApprovalStagesInput;
|
|
408
|
+
upsert?: Prisma.DocumentationPlanUpsertWithoutApprovalStagesInput;
|
|
409
|
+
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
410
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.DocumentationPlanUpdateToOneWithWhereWithoutApprovalStagesInput, Prisma.DocumentationPlanUpdateWithoutApprovalStagesInput>, Prisma.DocumentationPlanUncheckedUpdateWithoutApprovalStagesInput>;
|
|
392
411
|
};
|
|
393
412
|
export type DocumentationPlanCreateNestedOneWithoutMethodPhasesInput = {
|
|
394
413
|
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutMethodPhasesInput, Prisma.DocumentationPlanUncheckedCreateWithoutMethodPhasesInput>;
|
|
@@ -425,7 +444,8 @@ export type DocumentationPlanCreateWithoutTenantInput = {
|
|
|
425
444
|
isActive?: boolean;
|
|
426
445
|
createdAt?: Date | string;
|
|
427
446
|
updatedAt?: Date | string;
|
|
428
|
-
|
|
447
|
+
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
448
|
+
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
429
449
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
430
450
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
431
451
|
};
|
|
@@ -436,7 +456,8 @@ export type DocumentationPlanUncheckedCreateWithoutTenantInput = {
|
|
|
436
456
|
isActive?: boolean;
|
|
437
457
|
createdAt?: Date | string;
|
|
438
458
|
updatedAt?: Date | string;
|
|
439
|
-
|
|
459
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
460
|
+
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
440
461
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
441
462
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
442
463
|
};
|
|
@@ -473,7 +494,68 @@ export type DocumentationPlanScalarWhereInput = {
|
|
|
473
494
|
createdAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
474
495
|
updatedAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
475
496
|
};
|
|
476
|
-
export type
|
|
497
|
+
export type DocumentationPlanCreateWithoutDocumentDefinitionsInput = {
|
|
498
|
+
id?: string;
|
|
499
|
+
name: string;
|
|
500
|
+
description?: string | null;
|
|
501
|
+
isActive?: boolean;
|
|
502
|
+
createdAt?: Date | string;
|
|
503
|
+
updatedAt?: Date | string;
|
|
504
|
+
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
505
|
+
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
506
|
+
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
507
|
+
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
508
|
+
};
|
|
509
|
+
export type DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput = {
|
|
510
|
+
id?: string;
|
|
511
|
+
tenantId?: string | null;
|
|
512
|
+
name: string;
|
|
513
|
+
description?: string | null;
|
|
514
|
+
isActive?: boolean;
|
|
515
|
+
createdAt?: Date | string;
|
|
516
|
+
updatedAt?: Date | string;
|
|
517
|
+
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
518
|
+
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
519
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
520
|
+
};
|
|
521
|
+
export type DocumentationPlanCreateOrConnectWithoutDocumentDefinitionsInput = {
|
|
522
|
+
where: Prisma.DocumentationPlanWhereUniqueInput;
|
|
523
|
+
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput>;
|
|
524
|
+
};
|
|
525
|
+
export type DocumentationPlanUpsertWithoutDocumentDefinitionsInput = {
|
|
526
|
+
update: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedUpdateWithoutDocumentDefinitionsInput>;
|
|
527
|
+
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput>;
|
|
528
|
+
where?: Prisma.DocumentationPlanWhereInput;
|
|
529
|
+
};
|
|
530
|
+
export type DocumentationPlanUpdateToOneWithWhereWithoutDocumentDefinitionsInput = {
|
|
531
|
+
where?: Prisma.DocumentationPlanWhereInput;
|
|
532
|
+
data: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedUpdateWithoutDocumentDefinitionsInput>;
|
|
533
|
+
};
|
|
534
|
+
export type DocumentationPlanUpdateWithoutDocumentDefinitionsInput = {
|
|
535
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
536
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
537
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
538
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
539
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
540
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
541
|
+
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
542
|
+
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
543
|
+
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
544
|
+
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
545
|
+
};
|
|
546
|
+
export type DocumentationPlanUncheckedUpdateWithoutDocumentDefinitionsInput = {
|
|
547
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
548
|
+
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
549
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
550
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
551
|
+
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
552
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
553
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
554
|
+
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
555
|
+
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
556
|
+
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
557
|
+
};
|
|
558
|
+
export type DocumentationPlanCreateWithoutApprovalStagesInput = {
|
|
477
559
|
id?: string;
|
|
478
560
|
name: string;
|
|
479
561
|
description?: string | null;
|
|
@@ -481,10 +563,11 @@ export type DocumentationPlanCreateWithoutStepsInput = {
|
|
|
481
563
|
createdAt?: Date | string;
|
|
482
564
|
updatedAt?: Date | string;
|
|
483
565
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
566
|
+
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
484
567
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
485
568
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
486
569
|
};
|
|
487
|
-
export type
|
|
570
|
+
export type DocumentationPlanUncheckedCreateWithoutApprovalStagesInput = {
|
|
488
571
|
id?: string;
|
|
489
572
|
tenantId?: string | null;
|
|
490
573
|
name: string;
|
|
@@ -492,23 +575,24 @@ export type DocumentationPlanUncheckedCreateWithoutStepsInput = {
|
|
|
492
575
|
isActive?: boolean;
|
|
493
576
|
createdAt?: Date | string;
|
|
494
577
|
updatedAt?: Date | string;
|
|
578
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
495
579
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
496
580
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
497
581
|
};
|
|
498
|
-
export type
|
|
582
|
+
export type DocumentationPlanCreateOrConnectWithoutApprovalStagesInput = {
|
|
499
583
|
where: Prisma.DocumentationPlanWhereUniqueInput;
|
|
500
|
-
create: Prisma.XOR<Prisma.
|
|
584
|
+
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedCreateWithoutApprovalStagesInput>;
|
|
501
585
|
};
|
|
502
|
-
export type
|
|
503
|
-
update: Prisma.XOR<Prisma.
|
|
504
|
-
create: Prisma.XOR<Prisma.
|
|
586
|
+
export type DocumentationPlanUpsertWithoutApprovalStagesInput = {
|
|
587
|
+
update: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedUpdateWithoutApprovalStagesInput>;
|
|
588
|
+
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedCreateWithoutApprovalStagesInput>;
|
|
505
589
|
where?: Prisma.DocumentationPlanWhereInput;
|
|
506
590
|
};
|
|
507
|
-
export type
|
|
591
|
+
export type DocumentationPlanUpdateToOneWithWhereWithoutApprovalStagesInput = {
|
|
508
592
|
where?: Prisma.DocumentationPlanWhereInput;
|
|
509
|
-
data: Prisma.XOR<Prisma.
|
|
593
|
+
data: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutApprovalStagesInput, Prisma.DocumentationPlanUncheckedUpdateWithoutApprovalStagesInput>;
|
|
510
594
|
};
|
|
511
|
-
export type
|
|
595
|
+
export type DocumentationPlanUpdateWithoutApprovalStagesInput = {
|
|
512
596
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
513
597
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
514
598
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -516,10 +600,11 @@ export type DocumentationPlanUpdateWithoutStepsInput = {
|
|
|
516
600
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
517
601
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
518
602
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
603
|
+
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
519
604
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
520
605
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
521
606
|
};
|
|
522
|
-
export type
|
|
607
|
+
export type DocumentationPlanUncheckedUpdateWithoutApprovalStagesInput = {
|
|
523
608
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
524
609
|
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
525
610
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -527,6 +612,7 @@ export type DocumentationPlanUncheckedUpdateWithoutStepsInput = {
|
|
|
527
612
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
528
613
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
529
614
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
615
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
530
616
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
531
617
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
532
618
|
};
|
|
@@ -538,7 +624,8 @@ export type DocumentationPlanCreateWithoutMethodPhasesInput = {
|
|
|
538
624
|
createdAt?: Date | string;
|
|
539
625
|
updatedAt?: Date | string;
|
|
540
626
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
541
|
-
|
|
627
|
+
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
628
|
+
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
542
629
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
543
630
|
};
|
|
544
631
|
export type DocumentationPlanUncheckedCreateWithoutMethodPhasesInput = {
|
|
@@ -549,7 +636,8 @@ export type DocumentationPlanUncheckedCreateWithoutMethodPhasesInput = {
|
|
|
549
636
|
isActive?: boolean;
|
|
550
637
|
createdAt?: Date | string;
|
|
551
638
|
updatedAt?: Date | string;
|
|
552
|
-
|
|
639
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
640
|
+
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
553
641
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
554
642
|
};
|
|
555
643
|
export type DocumentationPlanCreateOrConnectWithoutMethodPhasesInput = {
|
|
@@ -573,7 +661,8 @@ export type DocumentationPlanUpdateWithoutMethodPhasesInput = {
|
|
|
573
661
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
574
662
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
575
663
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
576
|
-
|
|
664
|
+
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
665
|
+
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
577
666
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
578
667
|
};
|
|
579
668
|
export type DocumentationPlanUncheckedUpdateWithoutMethodPhasesInput = {
|
|
@@ -584,7 +673,8 @@ export type DocumentationPlanUncheckedUpdateWithoutMethodPhasesInput = {
|
|
|
584
673
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
585
674
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
586
675
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
587
|
-
|
|
676
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
677
|
+
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
588
678
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
589
679
|
};
|
|
590
680
|
export type DocumentationPlanCreateWithoutDocumentationPhasesInput = {
|
|
@@ -595,7 +685,8 @@ export type DocumentationPlanCreateWithoutDocumentationPhasesInput = {
|
|
|
595
685
|
createdAt?: Date | string;
|
|
596
686
|
updatedAt?: Date | string;
|
|
597
687
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
598
|
-
|
|
688
|
+
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
689
|
+
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
599
690
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
600
691
|
};
|
|
601
692
|
export type DocumentationPlanUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
@@ -606,7 +697,8 @@ export type DocumentationPlanUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
|
606
697
|
isActive?: boolean;
|
|
607
698
|
createdAt?: Date | string;
|
|
608
699
|
updatedAt?: Date | string;
|
|
609
|
-
|
|
700
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
701
|
+
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
610
702
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
611
703
|
};
|
|
612
704
|
export type DocumentationPlanCreateOrConnectWithoutDocumentationPhasesInput = {
|
|
@@ -630,7 +722,8 @@ export type DocumentationPlanUpdateWithoutDocumentationPhasesInput = {
|
|
|
630
722
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
631
723
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
632
724
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
633
|
-
|
|
725
|
+
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
726
|
+
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
634
727
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
635
728
|
};
|
|
636
729
|
export type DocumentationPlanUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
@@ -641,7 +734,8 @@ export type DocumentationPlanUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
|
641
734
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
642
735
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
643
736
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
644
|
-
|
|
737
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
738
|
+
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
645
739
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
646
740
|
};
|
|
647
741
|
export type DocumentationPlanCreateManyTenantInput = {
|
|
@@ -659,7 +753,8 @@ export type DocumentationPlanUpdateWithoutTenantInput = {
|
|
|
659
753
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
660
754
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
661
755
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
662
|
-
|
|
756
|
+
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
757
|
+
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
663
758
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
664
759
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
665
760
|
};
|
|
@@ -670,7 +765,8 @@ export type DocumentationPlanUncheckedUpdateWithoutTenantInput = {
|
|
|
670
765
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
671
766
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
672
767
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
673
|
-
|
|
768
|
+
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
769
|
+
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
674
770
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
675
771
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
676
772
|
};
|
|
@@ -686,12 +782,14 @@ export type DocumentationPlanUncheckedUpdateManyWithoutTenantInput = {
|
|
|
686
782
|
* Count Type DocumentationPlanCountOutputType
|
|
687
783
|
*/
|
|
688
784
|
export type DocumentationPlanCountOutputType = {
|
|
689
|
-
|
|
785
|
+
documentDefinitions: number;
|
|
786
|
+
approvalStages: number;
|
|
690
787
|
methodPhases: number;
|
|
691
788
|
documentationPhases: number;
|
|
692
789
|
};
|
|
693
790
|
export type DocumentationPlanCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
694
|
-
|
|
791
|
+
documentDefinitions?: boolean | DocumentationPlanCountOutputTypeCountDocumentDefinitionsArgs;
|
|
792
|
+
approvalStages?: boolean | DocumentationPlanCountOutputTypeCountApprovalStagesArgs;
|
|
695
793
|
methodPhases?: boolean | DocumentationPlanCountOutputTypeCountMethodPhasesArgs;
|
|
696
794
|
documentationPhases?: boolean | DocumentationPlanCountOutputTypeCountDocumentationPhasesArgs;
|
|
697
795
|
};
|
|
@@ -707,8 +805,14 @@ export type DocumentationPlanCountOutputTypeDefaultArgs<ExtArgs extends runtime.
|
|
|
707
805
|
/**
|
|
708
806
|
* DocumentationPlanCountOutputType without action
|
|
709
807
|
*/
|
|
710
|
-
export type
|
|
711
|
-
where?: Prisma.
|
|
808
|
+
export type DocumentationPlanCountOutputTypeCountDocumentDefinitionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
809
|
+
where?: Prisma.DocumentDefinitionWhereInput;
|
|
810
|
+
};
|
|
811
|
+
/**
|
|
812
|
+
* DocumentationPlanCountOutputType without action
|
|
813
|
+
*/
|
|
814
|
+
export type DocumentationPlanCountOutputTypeCountApprovalStagesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
815
|
+
where?: Prisma.ApprovalStageWhereInput;
|
|
712
816
|
};
|
|
713
817
|
/**
|
|
714
818
|
* DocumentationPlanCountOutputType without action
|
|
@@ -731,7 +835,8 @@ export type DocumentationPlanSelect<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
731
835
|
createdAt?: boolean;
|
|
732
836
|
updatedAt?: boolean;
|
|
733
837
|
tenant?: boolean | Prisma.DocumentationPlan$tenantArgs<ExtArgs>;
|
|
734
|
-
|
|
838
|
+
documentDefinitions?: boolean | Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs>;
|
|
839
|
+
approvalStages?: boolean | Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs>;
|
|
735
840
|
methodPhases?: boolean | Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs>;
|
|
736
841
|
documentationPhases?: boolean | Prisma.DocumentationPlan$documentationPhasesArgs<ExtArgs>;
|
|
737
842
|
_count?: boolean | Prisma.DocumentationPlanCountOutputTypeDefaultArgs<ExtArgs>;
|
|
@@ -748,7 +853,8 @@ export type DocumentationPlanSelectScalar = {
|
|
|
748
853
|
export type DocumentationPlanOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "name" | "description" | "isActive" | "createdAt" | "updatedAt", ExtArgs["result"]["documentationPlan"]>;
|
|
749
854
|
export type DocumentationPlanInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
750
855
|
tenant?: boolean | Prisma.DocumentationPlan$tenantArgs<ExtArgs>;
|
|
751
|
-
|
|
856
|
+
documentDefinitions?: boolean | Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs>;
|
|
857
|
+
approvalStages?: boolean | Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs>;
|
|
752
858
|
methodPhases?: boolean | Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs>;
|
|
753
859
|
documentationPhases?: boolean | Prisma.DocumentationPlan$documentationPhasesArgs<ExtArgs>;
|
|
754
860
|
_count?: boolean | Prisma.DocumentationPlanCountOutputTypeDefaultArgs<ExtArgs>;
|
|
@@ -757,7 +863,8 @@ export type $DocumentationPlanPayload<ExtArgs extends runtime.Types.Extensions.I
|
|
|
757
863
|
name: "DocumentationPlan";
|
|
758
864
|
objects: {
|
|
759
865
|
tenant: Prisma.$TenantPayload<ExtArgs> | null;
|
|
760
|
-
|
|
866
|
+
documentDefinitions: Prisma.$DocumentDefinitionPayload<ExtArgs>[];
|
|
867
|
+
approvalStages: Prisma.$ApprovalStagePayload<ExtArgs>[];
|
|
761
868
|
methodPhases: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>[];
|
|
762
869
|
documentationPhases: Prisma.$DocumentationPhasePayload<ExtArgs>[];
|
|
763
870
|
};
|
|
@@ -1047,7 +1154,8 @@ export interface DocumentationPlanDelegate<ExtArgs extends runtime.Types.Extensi
|
|
|
1047
1154
|
export interface Prisma__DocumentationPlanClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1048
1155
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1049
1156
|
tenant<T extends Prisma.DocumentationPlan$tenantArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$tenantArgs<ExtArgs>>): Prisma.Prisma__TenantClient<runtime.Types.Result.GetResult<Prisma.$TenantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1050
|
-
|
|
1157
|
+
documentDefinitions<T extends Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentDefinitionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1158
|
+
approvalStages<T extends Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ApprovalStagePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1051
1159
|
methodPhases<T extends Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1052
1160
|
documentationPhases<T extends Prisma.DocumentationPlan$documentationPhasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$documentationPhasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationPhasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1053
1161
|
/**
|
|
@@ -1428,27 +1536,50 @@ export type DocumentationPlan$tenantArgs<ExtArgs extends runtime.Types.Extension
|
|
|
1428
1536
|
where?: Prisma.TenantWhereInput;
|
|
1429
1537
|
};
|
|
1430
1538
|
/**
|
|
1431
|
-
* DocumentationPlan.
|
|
1539
|
+
* DocumentationPlan.documentDefinitions
|
|
1540
|
+
*/
|
|
1541
|
+
export type DocumentationPlan$documentDefinitionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1542
|
+
/**
|
|
1543
|
+
* Select specific fields to fetch from the DocumentDefinition
|
|
1544
|
+
*/
|
|
1545
|
+
select?: Prisma.DocumentDefinitionSelect<ExtArgs> | null;
|
|
1546
|
+
/**
|
|
1547
|
+
* Omit specific fields from the DocumentDefinition
|
|
1548
|
+
*/
|
|
1549
|
+
omit?: Prisma.DocumentDefinitionOmit<ExtArgs> | null;
|
|
1550
|
+
/**
|
|
1551
|
+
* Choose, which related nodes to fetch as well
|
|
1552
|
+
*/
|
|
1553
|
+
include?: Prisma.DocumentDefinitionInclude<ExtArgs> | null;
|
|
1554
|
+
where?: Prisma.DocumentDefinitionWhereInput;
|
|
1555
|
+
orderBy?: Prisma.DocumentDefinitionOrderByWithRelationInput | Prisma.DocumentDefinitionOrderByWithRelationInput[];
|
|
1556
|
+
cursor?: Prisma.DocumentDefinitionWhereUniqueInput;
|
|
1557
|
+
take?: number;
|
|
1558
|
+
skip?: number;
|
|
1559
|
+
distinct?: Prisma.DocumentDefinitionScalarFieldEnum | Prisma.DocumentDefinitionScalarFieldEnum[];
|
|
1560
|
+
};
|
|
1561
|
+
/**
|
|
1562
|
+
* DocumentationPlan.approvalStages
|
|
1432
1563
|
*/
|
|
1433
|
-
export type DocumentationPlan$
|
|
1564
|
+
export type DocumentationPlan$approvalStagesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1434
1565
|
/**
|
|
1435
|
-
* Select specific fields to fetch from the
|
|
1566
|
+
* Select specific fields to fetch from the ApprovalStage
|
|
1436
1567
|
*/
|
|
1437
|
-
select?: Prisma.
|
|
1568
|
+
select?: Prisma.ApprovalStageSelect<ExtArgs> | null;
|
|
1438
1569
|
/**
|
|
1439
|
-
* Omit specific fields from the
|
|
1570
|
+
* Omit specific fields from the ApprovalStage
|
|
1440
1571
|
*/
|
|
1441
|
-
omit?: Prisma.
|
|
1572
|
+
omit?: Prisma.ApprovalStageOmit<ExtArgs> | null;
|
|
1442
1573
|
/**
|
|
1443
1574
|
* Choose, which related nodes to fetch as well
|
|
1444
1575
|
*/
|
|
1445
|
-
include?: Prisma.
|
|
1446
|
-
where?: Prisma.
|
|
1447
|
-
orderBy?: Prisma.
|
|
1448
|
-
cursor?: Prisma.
|
|
1576
|
+
include?: Prisma.ApprovalStageInclude<ExtArgs> | null;
|
|
1577
|
+
where?: Prisma.ApprovalStageWhereInput;
|
|
1578
|
+
orderBy?: Prisma.ApprovalStageOrderByWithRelationInput | Prisma.ApprovalStageOrderByWithRelationInput[];
|
|
1579
|
+
cursor?: Prisma.ApprovalStageWhereUniqueInput;
|
|
1449
1580
|
take?: number;
|
|
1450
1581
|
skip?: number;
|
|
1451
|
-
distinct?: Prisma.
|
|
1582
|
+
distinct?: Prisma.ApprovalStageScalarFieldEnum | Prisma.ApprovalStageScalarFieldEnum[];
|
|
1452
1583
|
};
|
|
1453
1584
|
/**
|
|
1454
1585
|
* DocumentationPlan.methodPhases
|
|
@@ -472,6 +472,9 @@ export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseNestedInput = {
|
|
|
472
472
|
updateMany?: Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput | Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput[];
|
|
473
473
|
deleteMany?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
|
|
474
474
|
};
|
|
475
|
+
export type EnumStepTypeFieldUpdateOperationsInput = {
|
|
476
|
+
set?: $Enums.StepType;
|
|
477
|
+
};
|
|
475
478
|
export type PaymentMethodPhaseStepCreateNestedOneWithoutEventAttachmentsInput = {
|
|
476
479
|
create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutEventAttachmentsInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutEventAttachmentsInput>;
|
|
477
480
|
connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutEventAttachmentsInput;
|