@valentine-efagene/qshelter-common 2.0.139 → 2.0.141
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 +0 -20
- package/dist/generated/client/client.d.ts +0 -20
- package/dist/generated/client/commonInputTypes.d.ts +54 -204
- package/dist/generated/client/internal/class.d.ts +0 -44
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +12 -437
- package/dist/generated/client/internal/prismaNamespace.js +4 -137
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +3 -144
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +4 -137
- package/dist/generated/client/models/DocumentationPhase.d.ts +154 -735
- package/dist/generated/client/models/DocumentationPlan.d.ts +0 -139
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +3 -0
- package/dist/generated/client/models/Tenant.d.ts +547 -2260
- package/dist/generated/client/models/User.d.ts +420 -1647
- package/dist/generated/client/models/index.d.ts +0 -4
- package/dist/generated/client/models/index.js +0 -4
- package/dist/generated/client/models.d.ts +0 -4
- package/package.json +1 -1
- package/prisma/schema.prisma +16 -240
|
@@ -155,7 +155,6 @@ 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
|
-
steps?: Prisma.DocumentationPlanStepListRelationFilter;
|
|
159
158
|
documentDefinitions?: Prisma.DocumentDefinitionListRelationFilter;
|
|
160
159
|
approvalStages?: Prisma.ApprovalStageListRelationFilter;
|
|
161
160
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
@@ -170,7 +169,6 @@ export type DocumentationPlanOrderByWithRelationInput = {
|
|
|
170
169
|
createdAt?: Prisma.SortOrder;
|
|
171
170
|
updatedAt?: Prisma.SortOrder;
|
|
172
171
|
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
173
|
-
steps?: Prisma.DocumentationPlanStepOrderByRelationAggregateInput;
|
|
174
172
|
documentDefinitions?: Prisma.DocumentDefinitionOrderByRelationAggregateInput;
|
|
175
173
|
approvalStages?: Prisma.ApprovalStageOrderByRelationAggregateInput;
|
|
176
174
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseOrderByRelationAggregateInput;
|
|
@@ -190,7 +188,6 @@ export type DocumentationPlanWhereUniqueInput = Prisma.AtLeast<{
|
|
|
190
188
|
createdAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
191
189
|
updatedAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
192
190
|
tenant?: Prisma.XOR<Prisma.TenantNullableScalarRelationFilter, Prisma.TenantWhereInput> | null;
|
|
193
|
-
steps?: Prisma.DocumentationPlanStepListRelationFilter;
|
|
194
191
|
documentDefinitions?: Prisma.DocumentDefinitionListRelationFilter;
|
|
195
192
|
approvalStages?: Prisma.ApprovalStageListRelationFilter;
|
|
196
193
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseListRelationFilter;
|
|
@@ -228,7 +225,6 @@ export type DocumentationPlanCreateInput = {
|
|
|
228
225
|
createdAt?: Date | string;
|
|
229
226
|
updatedAt?: Date | string;
|
|
230
227
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
231
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
232
228
|
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
233
229
|
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
234
230
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -242,7 +238,6 @@ export type DocumentationPlanUncheckedCreateInput = {
|
|
|
242
238
|
isActive?: boolean;
|
|
243
239
|
createdAt?: Date | string;
|
|
244
240
|
updatedAt?: Date | string;
|
|
245
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
246
241
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
247
242
|
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
248
243
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -256,7 +251,6 @@ export type DocumentationPlanUpdateInput = {
|
|
|
256
251
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
257
252
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
258
253
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
259
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
260
254
|
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
261
255
|
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
262
256
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -270,7 +264,6 @@ export type DocumentationPlanUncheckedUpdateInput = {
|
|
|
270
264
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
271
265
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
272
266
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
273
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
274
267
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
275
268
|
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
276
269
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -392,18 +385,6 @@ export type DocumentationPlanUncheckedUpdateManyWithoutTenantNestedInput = {
|
|
|
392
385
|
updateMany?: Prisma.DocumentationPlanUpdateManyWithWhereWithoutTenantInput | Prisma.DocumentationPlanUpdateManyWithWhereWithoutTenantInput[];
|
|
393
386
|
deleteMany?: Prisma.DocumentationPlanScalarWhereInput | Prisma.DocumentationPlanScalarWhereInput[];
|
|
394
387
|
};
|
|
395
|
-
export type DocumentationPlanCreateNestedOneWithoutStepsInput = {
|
|
396
|
-
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutStepsInput, Prisma.DocumentationPlanUncheckedCreateWithoutStepsInput>;
|
|
397
|
-
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutStepsInput;
|
|
398
|
-
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
399
|
-
};
|
|
400
|
-
export type DocumentationPlanUpdateOneRequiredWithoutStepsNestedInput = {
|
|
401
|
-
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutStepsInput, Prisma.DocumentationPlanUncheckedCreateWithoutStepsInput>;
|
|
402
|
-
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutStepsInput;
|
|
403
|
-
upsert?: Prisma.DocumentationPlanUpsertWithoutStepsInput;
|
|
404
|
-
connect?: Prisma.DocumentationPlanWhereUniqueInput;
|
|
405
|
-
update?: Prisma.XOR<Prisma.XOR<Prisma.DocumentationPlanUpdateToOneWithWhereWithoutStepsInput, Prisma.DocumentationPlanUpdateWithoutStepsInput>, Prisma.DocumentationPlanUncheckedUpdateWithoutStepsInput>;
|
|
406
|
-
};
|
|
407
388
|
export type DocumentationPlanCreateNestedOneWithoutDocumentDefinitionsInput = {
|
|
408
389
|
create?: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutDocumentDefinitionsInput, Prisma.DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput>;
|
|
409
390
|
connectOrCreate?: Prisma.DocumentationPlanCreateOrConnectWithoutDocumentDefinitionsInput;
|
|
@@ -463,7 +444,6 @@ export type DocumentationPlanCreateWithoutTenantInput = {
|
|
|
463
444
|
isActive?: boolean;
|
|
464
445
|
createdAt?: Date | string;
|
|
465
446
|
updatedAt?: Date | string;
|
|
466
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
467
447
|
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
468
448
|
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
469
449
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -476,7 +456,6 @@ export type DocumentationPlanUncheckedCreateWithoutTenantInput = {
|
|
|
476
456
|
isActive?: boolean;
|
|
477
457
|
createdAt?: Date | string;
|
|
478
458
|
updatedAt?: Date | string;
|
|
479
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
480
459
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
481
460
|
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
482
461
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -515,71 +494,6 @@ export type DocumentationPlanScalarWhereInput = {
|
|
|
515
494
|
createdAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
516
495
|
updatedAt?: Prisma.DateTimeFilter<"DocumentationPlan"> | Date | string;
|
|
517
496
|
};
|
|
518
|
-
export type DocumentationPlanCreateWithoutStepsInput = {
|
|
519
|
-
id?: string;
|
|
520
|
-
name: string;
|
|
521
|
-
description?: string | null;
|
|
522
|
-
isActive?: boolean;
|
|
523
|
-
createdAt?: Date | string;
|
|
524
|
-
updatedAt?: Date | string;
|
|
525
|
-
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
526
|
-
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
527
|
-
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
528
|
-
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
529
|
-
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
530
|
-
};
|
|
531
|
-
export type DocumentationPlanUncheckedCreateWithoutStepsInput = {
|
|
532
|
-
id?: string;
|
|
533
|
-
tenantId?: string | null;
|
|
534
|
-
name: string;
|
|
535
|
-
description?: string | null;
|
|
536
|
-
isActive?: boolean;
|
|
537
|
-
createdAt?: Date | string;
|
|
538
|
-
updatedAt?: Date | string;
|
|
539
|
-
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
540
|
-
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
541
|
-
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
542
|
-
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
543
|
-
};
|
|
544
|
-
export type DocumentationPlanCreateOrConnectWithoutStepsInput = {
|
|
545
|
-
where: Prisma.DocumentationPlanWhereUniqueInput;
|
|
546
|
-
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutStepsInput, Prisma.DocumentationPlanUncheckedCreateWithoutStepsInput>;
|
|
547
|
-
};
|
|
548
|
-
export type DocumentationPlanUpsertWithoutStepsInput = {
|
|
549
|
-
update: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutStepsInput, Prisma.DocumentationPlanUncheckedUpdateWithoutStepsInput>;
|
|
550
|
-
create: Prisma.XOR<Prisma.DocumentationPlanCreateWithoutStepsInput, Prisma.DocumentationPlanUncheckedCreateWithoutStepsInput>;
|
|
551
|
-
where?: Prisma.DocumentationPlanWhereInput;
|
|
552
|
-
};
|
|
553
|
-
export type DocumentationPlanUpdateToOneWithWhereWithoutStepsInput = {
|
|
554
|
-
where?: Prisma.DocumentationPlanWhereInput;
|
|
555
|
-
data: Prisma.XOR<Prisma.DocumentationPlanUpdateWithoutStepsInput, Prisma.DocumentationPlanUncheckedUpdateWithoutStepsInput>;
|
|
556
|
-
};
|
|
557
|
-
export type DocumentationPlanUpdateWithoutStepsInput = {
|
|
558
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
559
|
-
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
560
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
561
|
-
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
562
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
563
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
564
|
-
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
565
|
-
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
566
|
-
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
567
|
-
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
568
|
-
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
569
|
-
};
|
|
570
|
-
export type DocumentationPlanUncheckedUpdateWithoutStepsInput = {
|
|
571
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
572
|
-
tenantId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
573
|
-
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
574
|
-
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
575
|
-
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
576
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
577
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
578
|
-
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
579
|
-
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
580
|
-
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
581
|
-
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
582
|
-
};
|
|
583
497
|
export type DocumentationPlanCreateWithoutDocumentDefinitionsInput = {
|
|
584
498
|
id?: string;
|
|
585
499
|
name: string;
|
|
@@ -588,7 +502,6 @@ export type DocumentationPlanCreateWithoutDocumentDefinitionsInput = {
|
|
|
588
502
|
createdAt?: Date | string;
|
|
589
503
|
updatedAt?: Date | string;
|
|
590
504
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
591
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
592
505
|
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
593
506
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
594
507
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -601,7 +514,6 @@ export type DocumentationPlanUncheckedCreateWithoutDocumentDefinitionsInput = {
|
|
|
601
514
|
isActive?: boolean;
|
|
602
515
|
createdAt?: Date | string;
|
|
603
516
|
updatedAt?: Date | string;
|
|
604
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
605
517
|
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
606
518
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
607
519
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -627,7 +539,6 @@ export type DocumentationPlanUpdateWithoutDocumentDefinitionsInput = {
|
|
|
627
539
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
628
540
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
629
541
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
630
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
631
542
|
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
632
543
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
633
544
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -640,7 +551,6 @@ export type DocumentationPlanUncheckedUpdateWithoutDocumentDefinitionsInput = {
|
|
|
640
551
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
641
552
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
642
553
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
643
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
644
554
|
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
645
555
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
646
556
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -653,7 +563,6 @@ export type DocumentationPlanCreateWithoutApprovalStagesInput = {
|
|
|
653
563
|
createdAt?: Date | string;
|
|
654
564
|
updatedAt?: Date | string;
|
|
655
565
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
656
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
657
566
|
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
658
567
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
659
568
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -666,7 +575,6 @@ export type DocumentationPlanUncheckedCreateWithoutApprovalStagesInput = {
|
|
|
666
575
|
isActive?: boolean;
|
|
667
576
|
createdAt?: Date | string;
|
|
668
577
|
updatedAt?: Date | string;
|
|
669
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
670
578
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
671
579
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
672
580
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -692,7 +600,6 @@ export type DocumentationPlanUpdateWithoutApprovalStagesInput = {
|
|
|
692
600
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
693
601
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
694
602
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
695
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
696
603
|
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
697
604
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
698
605
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -705,7 +612,6 @@ export type DocumentationPlanUncheckedUpdateWithoutApprovalStagesInput = {
|
|
|
705
612
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
706
613
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
707
614
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
708
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
709
615
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
710
616
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
711
617
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -718,7 +624,6 @@ export type DocumentationPlanCreateWithoutMethodPhasesInput = {
|
|
|
718
624
|
createdAt?: Date | string;
|
|
719
625
|
updatedAt?: Date | string;
|
|
720
626
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
721
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
722
627
|
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
723
628
|
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
724
629
|
documentationPhases?: Prisma.DocumentationPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -731,7 +636,6 @@ export type DocumentationPlanUncheckedCreateWithoutMethodPhasesInput = {
|
|
|
731
636
|
isActive?: boolean;
|
|
732
637
|
createdAt?: Date | string;
|
|
733
638
|
updatedAt?: Date | string;
|
|
734
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
735
639
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
736
640
|
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
737
641
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -757,7 +661,6 @@ export type DocumentationPlanUpdateWithoutMethodPhasesInput = {
|
|
|
757
661
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
758
662
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
759
663
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
760
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
761
664
|
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
762
665
|
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
763
666
|
documentationPhases?: Prisma.DocumentationPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -770,7 +673,6 @@ export type DocumentationPlanUncheckedUpdateWithoutMethodPhasesInput = {
|
|
|
770
673
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
771
674
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
772
675
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
773
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
774
676
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
775
677
|
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
776
678
|
documentationPhases?: Prisma.DocumentationPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -783,7 +685,6 @@ export type DocumentationPlanCreateWithoutDocumentationPhasesInput = {
|
|
|
783
685
|
createdAt?: Date | string;
|
|
784
686
|
updatedAt?: Date | string;
|
|
785
687
|
tenant?: Prisma.TenantCreateNestedOneWithoutDocumentationPlansInput;
|
|
786
|
-
steps?: Prisma.DocumentationPlanStepCreateNestedManyWithoutPlanInput;
|
|
787
688
|
documentDefinitions?: Prisma.DocumentDefinitionCreateNestedManyWithoutPlanInput;
|
|
788
689
|
approvalStages?: Prisma.ApprovalStageCreateNestedManyWithoutPlanInput;
|
|
789
690
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -796,7 +697,6 @@ export type DocumentationPlanUncheckedCreateWithoutDocumentationPhasesInput = {
|
|
|
796
697
|
isActive?: boolean;
|
|
797
698
|
createdAt?: Date | string;
|
|
798
699
|
updatedAt?: Date | string;
|
|
799
|
-
steps?: Prisma.DocumentationPlanStepUncheckedCreateNestedManyWithoutPlanInput;
|
|
800
700
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedCreateNestedManyWithoutPlanInput;
|
|
801
701
|
approvalStages?: Prisma.ApprovalStageUncheckedCreateNestedManyWithoutPlanInput;
|
|
802
702
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedCreateNestedManyWithoutDocumentationPlanInput;
|
|
@@ -822,7 +722,6 @@ export type DocumentationPlanUpdateWithoutDocumentationPhasesInput = {
|
|
|
822
722
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
823
723
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
824
724
|
tenant?: Prisma.TenantUpdateOneWithoutDocumentationPlansNestedInput;
|
|
825
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
826
725
|
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
827
726
|
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
828
727
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -835,7 +734,6 @@ export type DocumentationPlanUncheckedUpdateWithoutDocumentationPhasesInput = {
|
|
|
835
734
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
836
735
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
837
736
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
838
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
839
737
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
840
738
|
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
841
739
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -855,7 +753,6 @@ export type DocumentationPlanUpdateWithoutTenantInput = {
|
|
|
855
753
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
856
754
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
857
755
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
858
|
-
steps?: Prisma.DocumentationPlanStepUpdateManyWithoutPlanNestedInput;
|
|
859
756
|
documentDefinitions?: Prisma.DocumentDefinitionUpdateManyWithoutPlanNestedInput;
|
|
860
757
|
approvalStages?: Prisma.ApprovalStageUpdateManyWithoutPlanNestedInput;
|
|
861
758
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -868,7 +765,6 @@ export type DocumentationPlanUncheckedUpdateWithoutTenantInput = {
|
|
|
868
765
|
isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
869
766
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
870
767
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
871
|
-
steps?: Prisma.DocumentationPlanStepUncheckedUpdateManyWithoutPlanNestedInput;
|
|
872
768
|
documentDefinitions?: Prisma.DocumentDefinitionUncheckedUpdateManyWithoutPlanNestedInput;
|
|
873
769
|
approvalStages?: Prisma.ApprovalStageUncheckedUpdateManyWithoutPlanNestedInput;
|
|
874
770
|
methodPhases?: Prisma.PropertyPaymentMethodPhaseUncheckedUpdateManyWithoutDocumentationPlanNestedInput;
|
|
@@ -886,14 +782,12 @@ export type DocumentationPlanUncheckedUpdateManyWithoutTenantInput = {
|
|
|
886
782
|
* Count Type DocumentationPlanCountOutputType
|
|
887
783
|
*/
|
|
888
784
|
export type DocumentationPlanCountOutputType = {
|
|
889
|
-
steps: number;
|
|
890
785
|
documentDefinitions: number;
|
|
891
786
|
approvalStages: number;
|
|
892
787
|
methodPhases: number;
|
|
893
788
|
documentationPhases: number;
|
|
894
789
|
};
|
|
895
790
|
export type DocumentationPlanCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
896
|
-
steps?: boolean | DocumentationPlanCountOutputTypeCountStepsArgs;
|
|
897
791
|
documentDefinitions?: boolean | DocumentationPlanCountOutputTypeCountDocumentDefinitionsArgs;
|
|
898
792
|
approvalStages?: boolean | DocumentationPlanCountOutputTypeCountApprovalStagesArgs;
|
|
899
793
|
methodPhases?: boolean | DocumentationPlanCountOutputTypeCountMethodPhasesArgs;
|
|
@@ -908,12 +802,6 @@ export type DocumentationPlanCountOutputTypeDefaultArgs<ExtArgs extends runtime.
|
|
|
908
802
|
*/
|
|
909
803
|
select?: Prisma.DocumentationPlanCountOutputTypeSelect<ExtArgs> | null;
|
|
910
804
|
};
|
|
911
|
-
/**
|
|
912
|
-
* DocumentationPlanCountOutputType without action
|
|
913
|
-
*/
|
|
914
|
-
export type DocumentationPlanCountOutputTypeCountStepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
915
|
-
where?: Prisma.DocumentationPlanStepWhereInput;
|
|
916
|
-
};
|
|
917
805
|
/**
|
|
918
806
|
* DocumentationPlanCountOutputType without action
|
|
919
807
|
*/
|
|
@@ -947,7 +835,6 @@ export type DocumentationPlanSelect<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
947
835
|
createdAt?: boolean;
|
|
948
836
|
updatedAt?: boolean;
|
|
949
837
|
tenant?: boolean | Prisma.DocumentationPlan$tenantArgs<ExtArgs>;
|
|
950
|
-
steps?: boolean | Prisma.DocumentationPlan$stepsArgs<ExtArgs>;
|
|
951
838
|
documentDefinitions?: boolean | Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs>;
|
|
952
839
|
approvalStages?: boolean | Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs>;
|
|
953
840
|
methodPhases?: boolean | Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs>;
|
|
@@ -966,7 +853,6 @@ export type DocumentationPlanSelectScalar = {
|
|
|
966
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"]>;
|
|
967
854
|
export type DocumentationPlanInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
968
855
|
tenant?: boolean | Prisma.DocumentationPlan$tenantArgs<ExtArgs>;
|
|
969
|
-
steps?: boolean | Prisma.DocumentationPlan$stepsArgs<ExtArgs>;
|
|
970
856
|
documentDefinitions?: boolean | Prisma.DocumentationPlan$documentDefinitionsArgs<ExtArgs>;
|
|
971
857
|
approvalStages?: boolean | Prisma.DocumentationPlan$approvalStagesArgs<ExtArgs>;
|
|
972
858
|
methodPhases?: boolean | Prisma.DocumentationPlan$methodPhasesArgs<ExtArgs>;
|
|
@@ -977,7 +863,6 @@ export type $DocumentationPlanPayload<ExtArgs extends runtime.Types.Extensions.I
|
|
|
977
863
|
name: "DocumentationPlan";
|
|
978
864
|
objects: {
|
|
979
865
|
tenant: Prisma.$TenantPayload<ExtArgs> | null;
|
|
980
|
-
steps: Prisma.$DocumentationPlanStepPayload<ExtArgs>[];
|
|
981
866
|
documentDefinitions: Prisma.$DocumentDefinitionPayload<ExtArgs>[];
|
|
982
867
|
approvalStages: Prisma.$ApprovalStagePayload<ExtArgs>[];
|
|
983
868
|
methodPhases: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>[];
|
|
@@ -1269,7 +1154,6 @@ export interface DocumentationPlanDelegate<ExtArgs extends runtime.Types.Extensi
|
|
|
1269
1154
|
export interface Prisma__DocumentationPlanClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1270
1155
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1271
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>;
|
|
1272
|
-
steps<T extends Prisma.DocumentationPlan$stepsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DocumentationPlan$stepsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DocumentationPlanStepPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1273
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>;
|
|
1274
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>;
|
|
1275
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>;
|
|
@@ -1651,29 +1535,6 @@ export type DocumentationPlan$tenantArgs<ExtArgs extends runtime.Types.Extension
|
|
|
1651
1535
|
include?: Prisma.TenantInclude<ExtArgs> | null;
|
|
1652
1536
|
where?: Prisma.TenantWhereInput;
|
|
1653
1537
|
};
|
|
1654
|
-
/**
|
|
1655
|
-
* DocumentationPlan.steps
|
|
1656
|
-
*/
|
|
1657
|
-
export type DocumentationPlan$stepsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1658
|
-
/**
|
|
1659
|
-
* Select specific fields to fetch from the DocumentationPlanStep
|
|
1660
|
-
*/
|
|
1661
|
-
select?: Prisma.DocumentationPlanStepSelect<ExtArgs> | null;
|
|
1662
|
-
/**
|
|
1663
|
-
* Omit specific fields from the DocumentationPlanStep
|
|
1664
|
-
*/
|
|
1665
|
-
omit?: Prisma.DocumentationPlanStepOmit<ExtArgs> | null;
|
|
1666
|
-
/**
|
|
1667
|
-
* Choose, which related nodes to fetch as well
|
|
1668
|
-
*/
|
|
1669
|
-
include?: Prisma.DocumentationPlanStepInclude<ExtArgs> | null;
|
|
1670
|
-
where?: Prisma.DocumentationPlanStepWhereInput;
|
|
1671
|
-
orderBy?: Prisma.DocumentationPlanStepOrderByWithRelationInput | Prisma.DocumentationPlanStepOrderByWithRelationInput[];
|
|
1672
|
-
cursor?: Prisma.DocumentationPlanStepWhereUniqueInput;
|
|
1673
|
-
take?: number;
|
|
1674
|
-
skip?: number;
|
|
1675
|
-
distinct?: Prisma.DocumentationPlanStepScalarFieldEnum | Prisma.DocumentationPlanStepScalarFieldEnum[];
|
|
1676
|
-
};
|
|
1677
1538
|
/**
|
|
1678
1539
|
* DocumentationPlan.documentDefinitions
|
|
1679
1540
|
*/
|
|
@@ -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;
|