@valentine-efagene/qshelter-common 2.0.137 → 2.0.138
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/commonInputTypes.d.ts +43 -43
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +4 -1
- package/dist/generated/client/internal/prismaNamespace.js +4 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +4 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +4 -1
- package/dist/generated/client/models/DocumentationPlan.d.ts +1 -40
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +34 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +64 -1
- package/package.json +1 -1
- package/prisma/migrations/20260119180401_add_document_name_remove_required_doc_types/migration.sql +14 -0
- package/prisma/schema.prisma +9 -7
|
@@ -34,6 +34,7 @@ export type DocumentationPlanStepMinAggregateOutputType = {
|
|
|
34
34
|
stepType: $Enums.StepType | null;
|
|
35
35
|
order: number | null;
|
|
36
36
|
documentType: string | null;
|
|
37
|
+
documentName: string | null;
|
|
37
38
|
isRequired: boolean | null;
|
|
38
39
|
description: string | null;
|
|
39
40
|
maxSizeBytes: number | null;
|
|
@@ -60,6 +61,7 @@ export type DocumentationPlanStepMaxAggregateOutputType = {
|
|
|
60
61
|
stepType: $Enums.StepType | null;
|
|
61
62
|
order: number | null;
|
|
62
63
|
documentType: string | null;
|
|
64
|
+
documentName: string | null;
|
|
63
65
|
isRequired: boolean | null;
|
|
64
66
|
description: string | null;
|
|
65
67
|
maxSizeBytes: number | null;
|
|
@@ -86,6 +88,7 @@ export type DocumentationPlanStepCountAggregateOutputType = {
|
|
|
86
88
|
stepType: number;
|
|
87
89
|
order: number;
|
|
88
90
|
documentType: number;
|
|
91
|
+
documentName: number;
|
|
89
92
|
metadata: number;
|
|
90
93
|
isRequired: number;
|
|
91
94
|
description: number;
|
|
@@ -130,6 +133,7 @@ export type DocumentationPlanStepMinAggregateInputType = {
|
|
|
130
133
|
stepType?: true;
|
|
131
134
|
order?: true;
|
|
132
135
|
documentType?: true;
|
|
136
|
+
documentName?: true;
|
|
133
137
|
isRequired?: true;
|
|
134
138
|
description?: true;
|
|
135
139
|
maxSizeBytes?: true;
|
|
@@ -156,6 +160,7 @@ export type DocumentationPlanStepMaxAggregateInputType = {
|
|
|
156
160
|
stepType?: true;
|
|
157
161
|
order?: true;
|
|
158
162
|
documentType?: true;
|
|
163
|
+
documentName?: true;
|
|
159
164
|
isRequired?: true;
|
|
160
165
|
description?: true;
|
|
161
166
|
maxSizeBytes?: true;
|
|
@@ -182,6 +187,7 @@ export type DocumentationPlanStepCountAggregateInputType = {
|
|
|
182
187
|
stepType?: true;
|
|
183
188
|
order?: true;
|
|
184
189
|
documentType?: true;
|
|
190
|
+
documentName?: true;
|
|
185
191
|
metadata?: true;
|
|
186
192
|
isRequired?: true;
|
|
187
193
|
description?: true;
|
|
@@ -288,6 +294,7 @@ export type DocumentationPlanStepGroupByOutputType = {
|
|
|
288
294
|
stepType: $Enums.StepType;
|
|
289
295
|
order: number;
|
|
290
296
|
documentType: string | null;
|
|
297
|
+
documentName: string | null;
|
|
291
298
|
metadata: runtime.JsonValue | null;
|
|
292
299
|
isRequired: boolean;
|
|
293
300
|
description: string | null;
|
|
@@ -328,6 +335,7 @@ export type DocumentationPlanStepWhereInput = {
|
|
|
328
335
|
stepType?: Prisma.EnumStepTypeFilter<"DocumentationPlanStep"> | $Enums.StepType;
|
|
329
336
|
order?: Prisma.IntFilter<"DocumentationPlanStep"> | number;
|
|
330
337
|
documentType?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
338
|
+
documentName?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
331
339
|
metadata?: Prisma.JsonNullableFilter<"DocumentationPlanStep">;
|
|
332
340
|
isRequired?: Prisma.BoolFilter<"DocumentationPlanStep"> | boolean;
|
|
333
341
|
description?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
@@ -358,6 +366,7 @@ export type DocumentationPlanStepOrderByWithRelationInput = {
|
|
|
358
366
|
stepType?: Prisma.SortOrder;
|
|
359
367
|
order?: Prisma.SortOrder;
|
|
360
368
|
documentType?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
369
|
+
documentName?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
361
370
|
metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
362
371
|
isRequired?: Prisma.SortOrder;
|
|
363
372
|
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -392,6 +401,7 @@ export type DocumentationPlanStepWhereUniqueInput = Prisma.AtLeast<{
|
|
|
392
401
|
stepType?: Prisma.EnumStepTypeFilter<"DocumentationPlanStep"> | $Enums.StepType;
|
|
393
402
|
order?: Prisma.IntFilter<"DocumentationPlanStep"> | number;
|
|
394
403
|
documentType?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
404
|
+
documentName?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
395
405
|
metadata?: Prisma.JsonNullableFilter<"DocumentationPlanStep">;
|
|
396
406
|
isRequired?: Prisma.BoolFilter<"DocumentationPlanStep"> | boolean;
|
|
397
407
|
description?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
@@ -422,6 +432,7 @@ export type DocumentationPlanStepOrderByWithAggregationInput = {
|
|
|
422
432
|
stepType?: Prisma.SortOrder;
|
|
423
433
|
order?: Prisma.SortOrder;
|
|
424
434
|
documentType?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
435
|
+
documentName?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
425
436
|
metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
426
437
|
isRequired?: Prisma.SortOrder;
|
|
427
438
|
description?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
@@ -459,6 +470,7 @@ export type DocumentationPlanStepScalarWhereWithAggregatesInput = {
|
|
|
459
470
|
stepType?: Prisma.EnumStepTypeWithAggregatesFilter<"DocumentationPlanStep"> | $Enums.StepType;
|
|
460
471
|
order?: Prisma.IntWithAggregatesFilter<"DocumentationPlanStep"> | number;
|
|
461
472
|
documentType?: Prisma.StringNullableWithAggregatesFilter<"DocumentationPlanStep"> | string | null;
|
|
473
|
+
documentName?: Prisma.StringNullableWithAggregatesFilter<"DocumentationPlanStep"> | string | null;
|
|
462
474
|
metadata?: Prisma.JsonNullableWithAggregatesFilter<"DocumentationPlanStep">;
|
|
463
475
|
isRequired?: Prisma.BoolWithAggregatesFilter<"DocumentationPlanStep"> | boolean;
|
|
464
476
|
description?: Prisma.StringNullableWithAggregatesFilter<"DocumentationPlanStep"> | string | null;
|
|
@@ -487,6 +499,7 @@ export type DocumentationPlanStepCreateInput = {
|
|
|
487
499
|
stepType: $Enums.StepType;
|
|
488
500
|
order: number;
|
|
489
501
|
documentType?: string | null;
|
|
502
|
+
documentName?: string | null;
|
|
490
503
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
491
504
|
isRequired?: boolean;
|
|
492
505
|
description?: string | null;
|
|
@@ -517,6 +530,7 @@ export type DocumentationPlanStepUncheckedCreateInput = {
|
|
|
517
530
|
stepType: $Enums.StepType;
|
|
518
531
|
order: number;
|
|
519
532
|
documentType?: string | null;
|
|
533
|
+
documentName?: string | null;
|
|
520
534
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
521
535
|
isRequired?: boolean;
|
|
522
536
|
description?: string | null;
|
|
@@ -545,6 +559,7 @@ export type DocumentationPlanStepUpdateInput = {
|
|
|
545
559
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
546
560
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
547
561
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
562
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
548
563
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
549
564
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
550
565
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -575,6 +590,7 @@ export type DocumentationPlanStepUncheckedUpdateInput = {
|
|
|
575
590
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
576
591
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
577
592
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
593
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
578
594
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
579
595
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
580
596
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -604,6 +620,7 @@ export type DocumentationPlanStepCreateManyInput = {
|
|
|
604
620
|
stepType: $Enums.StepType;
|
|
605
621
|
order: number;
|
|
606
622
|
documentType?: string | null;
|
|
623
|
+
documentName?: string | null;
|
|
607
624
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
608
625
|
isRequired?: boolean;
|
|
609
626
|
description?: string | null;
|
|
@@ -632,6 +649,7 @@ export type DocumentationPlanStepUpdateManyMutationInput = {
|
|
|
632
649
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
633
650
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
634
651
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
652
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
635
653
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
636
654
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
637
655
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -661,6 +679,7 @@ export type DocumentationPlanStepUncheckedUpdateManyInput = {
|
|
|
661
679
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
662
680
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
663
681
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
682
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
664
683
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
665
684
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
666
685
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -703,6 +722,7 @@ export type DocumentationPlanStepCountOrderByAggregateInput = {
|
|
|
703
722
|
stepType?: Prisma.SortOrder;
|
|
704
723
|
order?: Prisma.SortOrder;
|
|
705
724
|
documentType?: Prisma.SortOrder;
|
|
725
|
+
documentName?: Prisma.SortOrder;
|
|
706
726
|
metadata?: Prisma.SortOrder;
|
|
707
727
|
isRequired?: Prisma.SortOrder;
|
|
708
728
|
description?: Prisma.SortOrder;
|
|
@@ -739,6 +759,7 @@ export type DocumentationPlanStepMaxOrderByAggregateInput = {
|
|
|
739
759
|
stepType?: Prisma.SortOrder;
|
|
740
760
|
order?: Prisma.SortOrder;
|
|
741
761
|
documentType?: Prisma.SortOrder;
|
|
762
|
+
documentName?: Prisma.SortOrder;
|
|
742
763
|
isRequired?: Prisma.SortOrder;
|
|
743
764
|
description?: Prisma.SortOrder;
|
|
744
765
|
maxSizeBytes?: Prisma.SortOrder;
|
|
@@ -765,6 +786,7 @@ export type DocumentationPlanStepMinOrderByAggregateInput = {
|
|
|
765
786
|
stepType?: Prisma.SortOrder;
|
|
766
787
|
order?: Prisma.SortOrder;
|
|
767
788
|
documentType?: Prisma.SortOrder;
|
|
789
|
+
documentName?: Prisma.SortOrder;
|
|
768
790
|
isRequired?: Prisma.SortOrder;
|
|
769
791
|
description?: Prisma.SortOrder;
|
|
770
792
|
maxSizeBytes?: Prisma.SortOrder;
|
|
@@ -847,6 +869,7 @@ export type DocumentationPlanStepCreateWithoutPlanInput = {
|
|
|
847
869
|
stepType: $Enums.StepType;
|
|
848
870
|
order: number;
|
|
849
871
|
documentType?: string | null;
|
|
872
|
+
documentName?: string | null;
|
|
850
873
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
851
874
|
isRequired?: boolean;
|
|
852
875
|
description?: string | null;
|
|
@@ -875,6 +898,7 @@ export type DocumentationPlanStepUncheckedCreateWithoutPlanInput = {
|
|
|
875
898
|
stepType: $Enums.StepType;
|
|
876
899
|
order: number;
|
|
877
900
|
documentType?: string | null;
|
|
901
|
+
documentName?: string | null;
|
|
878
902
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
879
903
|
isRequired?: boolean;
|
|
880
904
|
description?: string | null;
|
|
@@ -928,6 +952,7 @@ export type DocumentationPlanStepScalarWhereInput = {
|
|
|
928
952
|
stepType?: Prisma.EnumStepTypeFilter<"DocumentationPlanStep"> | $Enums.StepType;
|
|
929
953
|
order?: Prisma.IntFilter<"DocumentationPlanStep"> | number;
|
|
930
954
|
documentType?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
955
|
+
documentName?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
931
956
|
metadata?: Prisma.JsonNullableFilter<"DocumentationPlanStep">;
|
|
932
957
|
isRequired?: Prisma.BoolFilter<"DocumentationPlanStep"> | boolean;
|
|
933
958
|
description?: Prisma.StringNullableFilter<"DocumentationPlanStep"> | string | null;
|
|
@@ -956,6 +981,7 @@ export type DocumentationPlanStepCreateManyPlanInput = {
|
|
|
956
981
|
stepType: $Enums.StepType;
|
|
957
982
|
order: number;
|
|
958
983
|
documentType?: string | null;
|
|
984
|
+
documentName?: string | null;
|
|
959
985
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
960
986
|
isRequired?: boolean;
|
|
961
987
|
description?: string | null;
|
|
@@ -984,6 +1010,7 @@ export type DocumentationPlanStepUpdateWithoutPlanInput = {
|
|
|
984
1010
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
985
1011
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
986
1012
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1013
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
987
1014
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
988
1015
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
989
1016
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1012,6 +1039,7 @@ export type DocumentationPlanStepUncheckedUpdateWithoutPlanInput = {
|
|
|
1012
1039
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
1013
1040
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1014
1041
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1042
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1015
1043
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1016
1044
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1017
1045
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1040,6 +1068,7 @@ export type DocumentationPlanStepUncheckedUpdateManyWithoutPlanInput = {
|
|
|
1040
1068
|
stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
|
|
1041
1069
|
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
1042
1070
|
documentType?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1071
|
+
documentName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
1043
1072
|
metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
1044
1073
|
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
1045
1074
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -1069,6 +1098,7 @@ export type DocumentationPlanStepSelect<ExtArgs extends runtime.Types.Extensions
|
|
|
1069
1098
|
stepType?: boolean;
|
|
1070
1099
|
order?: boolean;
|
|
1071
1100
|
documentType?: boolean;
|
|
1101
|
+
documentName?: boolean;
|
|
1072
1102
|
metadata?: boolean;
|
|
1073
1103
|
isRequired?: boolean;
|
|
1074
1104
|
description?: boolean;
|
|
@@ -1099,6 +1129,7 @@ export type DocumentationPlanStepSelectScalar = {
|
|
|
1099
1129
|
stepType?: boolean;
|
|
1100
1130
|
order?: boolean;
|
|
1101
1131
|
documentType?: boolean;
|
|
1132
|
+
documentName?: boolean;
|
|
1102
1133
|
metadata?: boolean;
|
|
1103
1134
|
isRequired?: boolean;
|
|
1104
1135
|
description?: boolean;
|
|
@@ -1121,7 +1152,7 @@ export type DocumentationPlanStepSelectScalar = {
|
|
|
1121
1152
|
createdAt?: boolean;
|
|
1122
1153
|
updatedAt?: boolean;
|
|
1123
1154
|
};
|
|
1124
|
-
export type DocumentationPlanStepOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "planId" | "name" | "stepType" | "order" | "documentType" | "metadata" | "isRequired" | "description" | "maxSizeBytes" | "allowedMimeTypes" | "expiryDays" | "requiresManualReview" | "minFiles" | "maxFiles" | "condition" | "reviewRequirements" | "reviewOrder" | "gateActor" | "gateAction" | "gateRoleId" | "gateInstructions" | "allowReject" | "rejectBehavior" | "requiresComment" | "createdAt" | "updatedAt", ExtArgs["result"]["documentationPlanStep"]>;
|
|
1155
|
+
export type DocumentationPlanStepOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "planId" | "name" | "stepType" | "order" | "documentType" | "documentName" | "metadata" | "isRequired" | "description" | "maxSizeBytes" | "allowedMimeTypes" | "expiryDays" | "requiresManualReview" | "minFiles" | "maxFiles" | "condition" | "reviewRequirements" | "reviewOrder" | "gateActor" | "gateAction" | "gateRoleId" | "gateInstructions" | "allowReject" | "rejectBehavior" | "requiresComment" | "createdAt" | "updatedAt", ExtArgs["result"]["documentationPlanStep"]>;
|
|
1125
1156
|
export type DocumentationPlanStepInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1126
1157
|
plan?: boolean | Prisma.DocumentationPlanDefaultArgs<ExtArgs>;
|
|
1127
1158
|
};
|
|
@@ -1137,6 +1168,7 @@ export type $DocumentationPlanStepPayload<ExtArgs extends runtime.Types.Extensio
|
|
|
1137
1168
|
stepType: $Enums.StepType;
|
|
1138
1169
|
order: number;
|
|
1139
1170
|
documentType: string | null;
|
|
1171
|
+
documentName: string | null;
|
|
1140
1172
|
metadata: runtime.JsonValue | null;
|
|
1141
1173
|
isRequired: boolean;
|
|
1142
1174
|
description: string | null;
|
|
@@ -1467,6 +1499,7 @@ export interface DocumentationPlanStepFieldRefs {
|
|
|
1467
1499
|
readonly stepType: Prisma.FieldRef<"DocumentationPlanStep", 'StepType'>;
|
|
1468
1500
|
readonly order: Prisma.FieldRef<"DocumentationPlanStep", 'Int'>;
|
|
1469
1501
|
readonly documentType: Prisma.FieldRef<"DocumentationPlanStep", 'String'>;
|
|
1502
|
+
readonly documentName: Prisma.FieldRef<"DocumentationPlanStep", 'String'>;
|
|
1470
1503
|
readonly metadata: Prisma.FieldRef<"DocumentationPlanStep", 'Json'>;
|
|
1471
1504
|
readonly isRequired: Prisma.FieldRef<"DocumentationPlanStep", 'Boolean'>;
|
|
1472
1505
|
readonly description: Prisma.FieldRef<"DocumentationPlanStep", 'String'>;
|