@valentine-efagene/qshelter-common 2.0.101 → 2.0.103

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.
Files changed (31) hide show
  1. package/dist/generated/client/browser.d.ts +10 -0
  2. package/dist/generated/client/client.d.ts +10 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +84 -84
  4. package/dist/generated/client/internal/class.d.ts +22 -0
  5. package/dist/generated/client/internal/class.js +2 -2
  6. package/dist/generated/client/internal/prismaNamespace.d.ts +192 -5
  7. package/dist/generated/client/internal/prismaNamespace.js +49 -0
  8. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +53 -0
  9. package/dist/generated/client/internal/prismaNamespaceBrowser.js +49 -0
  10. package/dist/generated/client/models/DocumentationPhase.d.ts +231 -1
  11. package/dist/generated/client/models/DocumentationPlan.d.ts +1555 -0
  12. package/dist/generated/client/models/DocumentationPlan.js +1 -0
  13. package/dist/generated/client/models/DocumentationPlanStep.d.ts +1220 -0
  14. package/dist/generated/client/models/DocumentationPlanStep.js +1 -0
  15. package/dist/generated/client/models/DomainEvent.d.ts +281 -2
  16. package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +0 -3
  17. package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +287 -1
  18. package/dist/generated/client/models/Settings.d.ts +211 -4
  19. package/dist/generated/client/models/Social.d.ts +147 -1
  20. package/dist/generated/client/models/Tenant.d.ts +4246 -639
  21. package/dist/generated/client/models/Transaction.d.ts +178 -14
  22. package/dist/generated/client/models/Wallet.d.ts +169 -1
  23. package/dist/generated/client/models/WorkflowBlocker.d.ts +299 -4
  24. package/dist/generated/client/models/index.d.ts +2 -0
  25. package/dist/generated/client/models/index.js +2 -0
  26. package/dist/generated/client/models.d.ts +2 -0
  27. package/dist/src/prisma/tenant.js +2 -8
  28. package/package.json +1 -1
  29. package/prisma/migrations/20260113122855_add_tenant_to_remaining_models/migration.sql +64 -0
  30. package/prisma/migrations/20260114034523_add_documentation_plan/migration.sql +52 -0
  31. package/prisma/schema.prisma +97 -10
@@ -140,6 +140,16 @@ export type PropertyUnit = Prisma.PropertyUnitModel;
140
140
  *
141
141
  */
142
142
  export type PropertyAmenity = Prisma.PropertyAmenityModel;
143
+ /**
144
+ * Model DocumentationPlan
145
+ *
146
+ */
147
+ export type DocumentationPlan = Prisma.DocumentationPlanModel;
148
+ /**
149
+ * Model DocumentationPlanStep
150
+ *
151
+ */
152
+ export type DocumentationPlanStep = Prisma.DocumentationPlanStepModel;
143
153
  /**
144
154
  * Model PaymentPlan
145
155
  *
@@ -157,6 +157,16 @@ export type PropertyUnit = Prisma.PropertyUnitModel;
157
157
  *
158
158
  */
159
159
  export type PropertyAmenity = Prisma.PropertyAmenityModel;
160
+ /**
161
+ * Model DocumentationPlan
162
+ *
163
+ */
164
+ export type DocumentationPlan = Prisma.DocumentationPlanModel;
165
+ /**
166
+ * Model DocumentationPlanStep
167
+ *
168
+ */
169
+ export type DocumentationPlanStep = Prisma.DocumentationPlanStepModel;
160
170
  /**
161
171
  * Model PaymentPlan
162
172
  *
@@ -276,6 +276,58 @@ export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
276
276
  _min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
277
277
  _max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
278
278
  };
279
+ export type JsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>;
280
+ export type JsonNullableFilterBase<$PrismaModel = never> = {
281
+ equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
282
+ path?: string;
283
+ mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
284
+ string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
285
+ string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
286
+ string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
287
+ array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
288
+ array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
289
+ array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
290
+ lt?: runtime.InputJsonValue;
291
+ lte?: runtime.InputJsonValue;
292
+ gt?: runtime.InputJsonValue;
293
+ gte?: runtime.InputJsonValue;
294
+ not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
295
+ };
296
+ export type JsonNullableWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
297
+ export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
298
+ equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
299
+ path?: string;
300
+ mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
301
+ string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
302
+ string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
303
+ string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
304
+ array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
305
+ array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
306
+ array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
307
+ lt?: runtime.InputJsonValue;
308
+ lte?: runtime.InputJsonValue;
309
+ gt?: runtime.InputJsonValue;
310
+ gte?: runtime.InputJsonValue;
311
+ not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
312
+ _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
313
+ _min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
314
+ _max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
315
+ };
316
+ export type EnumStepTypeFilter<$PrismaModel = never> = {
317
+ equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
318
+ in?: $Enums.StepType[];
319
+ notIn?: $Enums.StepType[];
320
+ not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
321
+ };
322
+ export type EnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
323
+ equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
324
+ in?: $Enums.StepType[];
325
+ notIn?: $Enums.StepType[];
326
+ not?: Prisma.NestedEnumStepTypeWithAggregatesFilter<$PrismaModel> | $Enums.StepType;
327
+ _count?: Prisma.NestedIntFilter<$PrismaModel>;
328
+ _min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
329
+ _max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
330
+ };
279
331
  export type EnumPaymentFrequencyFilter<$PrismaModel = never> = {
280
332
  equals?: $Enums.PaymentFrequency | Prisma.EnumPaymentFrequencyFieldRefInput<$PrismaModel>;
281
333
  in?: $Enums.PaymentFrequency[];
@@ -313,23 +365,6 @@ export type EnumCompletionCriterionNullableFilter<$PrismaModel = never> = {
313
365
  notIn?: $Enums.CompletionCriterion[] | null;
314
366
  not?: Prisma.NestedEnumCompletionCriterionNullableFilter<$PrismaModel> | $Enums.CompletionCriterion | null;
315
367
  };
316
- export type JsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>;
317
- export type JsonNullableFilterBase<$PrismaModel = never> = {
318
- equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
319
- path?: string;
320
- mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
321
- string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
322
- string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
323
- string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
324
- array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
325
- array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
326
- array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
327
- lt?: runtime.InputJsonValue;
328
- lte?: runtime.InputJsonValue;
329
- gt?: runtime.InputJsonValue;
330
- gte?: runtime.InputJsonValue;
331
- not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
332
- };
333
368
  export type EnumPhaseCategoryWithAggregatesFilter<$PrismaModel = never> = {
334
369
  equals?: $Enums.PhaseCategory | Prisma.EnumPhaseCategoryFieldRefInput<$PrismaModel>;
335
370
  in?: $Enums.PhaseCategory[];
@@ -364,26 +399,6 @@ export type EnumCompletionCriterionNullableWithAggregatesFilter<$PrismaModel = n
364
399
  _min?: Prisma.NestedEnumCompletionCriterionNullableFilter<$PrismaModel>;
365
400
  _max?: Prisma.NestedEnumCompletionCriterionNullableFilter<$PrismaModel>;
366
401
  };
367
- export type JsonNullableWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
368
- export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
369
- equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
370
- path?: string;
371
- mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
372
- string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
373
- string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
374
- string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
375
- array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
376
- array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
377
- array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
378
- lt?: runtime.InputJsonValue;
379
- lte?: runtime.InputJsonValue;
380
- gt?: runtime.InputJsonValue;
381
- gte?: runtime.InputJsonValue;
382
- not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
383
- _count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
384
- _min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
385
- _max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
386
- };
387
402
  export type EnumPhaseTriggerFilter<$PrismaModel = never> = {
388
403
  equals?: $Enums.PhaseTrigger | Prisma.EnumPhaseTriggerFieldRefInput<$PrismaModel>;
389
404
  in?: $Enums.PhaseTrigger[];
@@ -399,21 +414,6 @@ export type EnumPhaseTriggerWithAggregatesFilter<$PrismaModel = never> = {
399
414
  _min?: Prisma.NestedEnumPhaseTriggerFilter<$PrismaModel>;
400
415
  _max?: Prisma.NestedEnumPhaseTriggerFilter<$PrismaModel>;
401
416
  };
402
- export type EnumStepTypeFilter<$PrismaModel = never> = {
403
- equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
404
- in?: $Enums.StepType[];
405
- notIn?: $Enums.StepType[];
406
- not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
407
- };
408
- export type EnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
409
- equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
410
- in?: $Enums.StepType[];
411
- notIn?: $Enums.StepType[];
412
- not?: Prisma.NestedEnumStepTypeWithAggregatesFilter<$PrismaModel> | $Enums.StepType;
413
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
414
- _min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
415
- _max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
416
- };
417
417
  export type EnumStepTriggerFilter<$PrismaModel = never> = {
418
418
  equals?: $Enums.StepTrigger | Prisma.EnumStepTriggerFieldRefInput<$PrismaModel>;
419
419
  in?: $Enums.StepTrigger[];
@@ -1145,6 +1145,38 @@ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
1145
1145
  _min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
1146
1146
  _max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
1147
1147
  };
1148
+ export type NestedJsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
1149
+ export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
1150
+ equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
1151
+ path?: string;
1152
+ mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
1153
+ string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1154
+ string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1155
+ string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1156
+ array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1157
+ array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1158
+ array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1159
+ lt?: runtime.InputJsonValue;
1160
+ lte?: runtime.InputJsonValue;
1161
+ gt?: runtime.InputJsonValue;
1162
+ gte?: runtime.InputJsonValue;
1163
+ not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
1164
+ };
1165
+ export type NestedEnumStepTypeFilter<$PrismaModel = never> = {
1166
+ equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
1167
+ in?: $Enums.StepType[];
1168
+ notIn?: $Enums.StepType[];
1169
+ not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
1170
+ };
1171
+ export type NestedEnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
1172
+ equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
1173
+ in?: $Enums.StepType[];
1174
+ notIn?: $Enums.StepType[];
1175
+ not?: Prisma.NestedEnumStepTypeWithAggregatesFilter<$PrismaModel> | $Enums.StepType;
1176
+ _count?: Prisma.NestedIntFilter<$PrismaModel>;
1177
+ _min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
1178
+ _max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
1179
+ };
1148
1180
  export type NestedEnumPaymentFrequencyFilter<$PrismaModel = never> = {
1149
1181
  equals?: $Enums.PaymentFrequency | Prisma.EnumPaymentFrequencyFieldRefInput<$PrismaModel>;
1150
1182
  in?: $Enums.PaymentFrequency[];
@@ -1216,23 +1248,6 @@ export type NestedEnumCompletionCriterionNullableWithAggregatesFilter<$PrismaMod
1216
1248
  _min?: Prisma.NestedEnumCompletionCriterionNullableFilter<$PrismaModel>;
1217
1249
  _max?: Prisma.NestedEnumCompletionCriterionNullableFilter<$PrismaModel>;
1218
1250
  };
1219
- export type NestedJsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
1220
- export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
1221
- equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
1222
- path?: string;
1223
- mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
1224
- string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1225
- string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1226
- string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
1227
- array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1228
- array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1229
- array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
1230
- lt?: runtime.InputJsonValue;
1231
- lte?: runtime.InputJsonValue;
1232
- gt?: runtime.InputJsonValue;
1233
- gte?: runtime.InputJsonValue;
1234
- not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
1235
- };
1236
1251
  export type NestedEnumPhaseTriggerFilter<$PrismaModel = never> = {
1237
1252
  equals?: $Enums.PhaseTrigger | Prisma.EnumPhaseTriggerFieldRefInput<$PrismaModel>;
1238
1253
  in?: $Enums.PhaseTrigger[];
@@ -1248,21 +1263,6 @@ export type NestedEnumPhaseTriggerWithAggregatesFilter<$PrismaModel = never> = {
1248
1263
  _min?: Prisma.NestedEnumPhaseTriggerFilter<$PrismaModel>;
1249
1264
  _max?: Prisma.NestedEnumPhaseTriggerFilter<$PrismaModel>;
1250
1265
  };
1251
- export type NestedEnumStepTypeFilter<$PrismaModel = never> = {
1252
- equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
1253
- in?: $Enums.StepType[];
1254
- notIn?: $Enums.StepType[];
1255
- not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
1256
- };
1257
- export type NestedEnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
1258
- equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
1259
- in?: $Enums.StepType[];
1260
- notIn?: $Enums.StepType[];
1261
- not?: Prisma.NestedEnumStepTypeWithAggregatesFilter<$PrismaModel> | $Enums.StepType;
1262
- _count?: Prisma.NestedIntFilter<$PrismaModel>;
1263
- _min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
1264
- _max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
1265
- };
1266
1266
  export type NestedEnumStepTriggerFilter<$PrismaModel = never> = {
1267
1267
  equals?: $Enums.StepTrigger | Prisma.EnumStepTriggerFieldRefInput<$PrismaModel>;
1268
1268
  in?: $Enums.StepTrigger[];
@@ -408,6 +408,28 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
408
408
  get propertyAmenity(): Prisma.PropertyAmenityDelegate<ExtArgs, {
409
409
  omit: OmitOpts;
410
410
  }>;
411
+ /**
412
+ * `prisma.documentationPlan`: Exposes CRUD operations for the **DocumentationPlan** model.
413
+ * Example usage:
414
+ * ```ts
415
+ * // Fetch zero or more DocumentationPlans
416
+ * const documentationPlans = await prisma.documentationPlan.findMany()
417
+ * ```
418
+ */
419
+ get documentationPlan(): Prisma.DocumentationPlanDelegate<ExtArgs, {
420
+ omit: OmitOpts;
421
+ }>;
422
+ /**
423
+ * `prisma.documentationPlanStep`: Exposes CRUD operations for the **DocumentationPlanStep** model.
424
+ * Example usage:
425
+ * ```ts
426
+ * // Fetch zero or more DocumentationPlanSteps
427
+ * const documentationPlanSteps = await prisma.documentationPlanStep.findMany()
428
+ * ```
429
+ */
430
+ get documentationPlanStep(): Prisma.DocumentationPlanStepDelegate<ExtArgs, {
431
+ omit: OmitOpts;
432
+ }>;
411
433
  /**
412
434
  * `prisma.paymentPlan`: Exposes CRUD operations for the **PaymentPlan** model.
413
435
  * Example usage: