@valentine-efagene/qshelter-common 2.0.98 → 2.0.100

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 (56) hide show
  1. package/dist/generated/client/browser.d.ts +5 -0
  2. package/dist/generated/client/client.d.ts +5 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +90 -0
  4. package/dist/generated/client/enums.d.ts +26 -0
  5. package/dist/generated/client/enums.js +23 -0
  6. package/dist/generated/client/internal/class.d.ts +11 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +176 -1
  9. package/dist/generated/client/internal/prismaNamespace.js +95 -1
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +96 -0
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +95 -1
  12. package/dist/generated/client/models/Amenity.d.ts +183 -3
  13. package/dist/generated/client/models/ApplicationDocument.d.ts +183 -1
  14. package/dist/generated/client/models/ApplicationEvent.d.ts +190 -14
  15. package/dist/generated/client/models/ApplicationPayment.d.ts +225 -1
  16. package/dist/generated/client/models/ApplicationPhase.d.ts +272 -26
  17. package/dist/generated/client/models/DocumentationPhase.d.ts +224 -24
  18. package/dist/generated/client/models/DocumentationStep.d.ts +237 -1
  19. package/dist/generated/client/models/DocumentationStepApproval.d.ts +159 -1
  20. package/dist/generated/client/models/DocumentationStepDocument.d.ts +150 -10
  21. package/dist/generated/client/models/EventHandlerExecution.d.ts +208 -14
  22. package/dist/generated/client/models/PaymentInstallment.d.ts +228 -14
  23. package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +178 -14
  24. package/dist/generated/client/models/PaymentMethodPhaseField.d.ts +208 -14
  25. package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +180 -14
  26. package/dist/generated/client/models/PaymentPhase.d.ts +214 -14
  27. package/dist/generated/client/models/PhaseEventAttachment.d.ts +178 -14
  28. package/dist/generated/client/models/PropertyAmenity.d.ts +145 -11
  29. package/dist/generated/client/models/PropertyDocument.d.ts +164 -12
  30. package/dist/generated/client/models/PropertyMedia.d.ts +183 -17
  31. package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +159 -13
  32. package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +270 -14
  33. package/dist/generated/client/models/PropertyUnit.d.ts +230 -14
  34. package/dist/generated/client/models/PropertyVariant.d.ts +256 -14
  35. package/dist/generated/client/models/PropertyVariantAmenity.d.ts +145 -11
  36. package/dist/generated/client/models/PropertyVariantMedia.d.ts +171 -13
  37. package/dist/generated/client/models/QuestionnaireField.d.ts +232 -14
  38. package/dist/generated/client/models/QuestionnairePhase.d.ts +207 -1
  39. package/dist/generated/client/models/StepEventAttachment.d.ts +178 -14
  40. package/dist/generated/client/models/Tenant.d.ts +11653 -1153
  41. package/dist/generated/client/models/WorkflowBlocker.d.ts +1432 -0
  42. package/dist/generated/client/models/WorkflowBlocker.js +1 -0
  43. package/dist/generated/client/models/index.d.ts +1 -0
  44. package/dist/generated/client/models/index.js +1 -0
  45. package/dist/generated/client/models.d.ts +1 -0
  46. package/dist/src/index.d.ts +1 -0
  47. package/dist/src/index.js +1 -0
  48. package/dist/src/middleware/auth-context.d.ts +63 -6
  49. package/dist/src/middleware/auth-context.js +132 -13
  50. package/dist/src/prisma/tenant.js +26 -32
  51. package/dist/src/types/action-status.d.ts +137 -0
  52. package/dist/src/types/action-status.js +402 -0
  53. package/package.json +1 -1
  54. package/prisma/migrations/20260113000000_remove_workflow_analytics_summary/migration.sql +5 -0
  55. package/prisma/migrations/20260113110450_add_tenant_id_to_child_models/migration.sql +334 -0
  56. package/prisma/schema.prisma +273 -60
@@ -21,6 +21,7 @@ export type PaymentMethodPhaseStepSumAggregateOutputType = {
21
21
  };
22
22
  export type PaymentMethodPhaseStepMinAggregateOutputType = {
23
23
  id: string | null;
24
+ tenantId: string | null;
24
25
  phaseId: string | null;
25
26
  name: string | null;
26
27
  stepType: $Enums.StepType | null;
@@ -30,6 +31,7 @@ export type PaymentMethodPhaseStepMinAggregateOutputType = {
30
31
  };
31
32
  export type PaymentMethodPhaseStepMaxAggregateOutputType = {
32
33
  id: string | null;
34
+ tenantId: string | null;
33
35
  phaseId: string | null;
34
36
  name: string | null;
35
37
  stepType: $Enums.StepType | null;
@@ -39,6 +41,7 @@ export type PaymentMethodPhaseStepMaxAggregateOutputType = {
39
41
  };
40
42
  export type PaymentMethodPhaseStepCountAggregateOutputType = {
41
43
  id: number;
44
+ tenantId: number;
42
45
  phaseId: number;
43
46
  name: number;
44
47
  stepType: number;
@@ -56,6 +59,7 @@ export type PaymentMethodPhaseStepSumAggregateInputType = {
56
59
  };
57
60
  export type PaymentMethodPhaseStepMinAggregateInputType = {
58
61
  id?: true;
62
+ tenantId?: true;
59
63
  phaseId?: true;
60
64
  name?: true;
61
65
  stepType?: true;
@@ -65,6 +69,7 @@ export type PaymentMethodPhaseStepMinAggregateInputType = {
65
69
  };
66
70
  export type PaymentMethodPhaseStepMaxAggregateInputType = {
67
71
  id?: true;
72
+ tenantId?: true;
68
73
  phaseId?: true;
69
74
  name?: true;
70
75
  stepType?: true;
@@ -74,6 +79,7 @@ export type PaymentMethodPhaseStepMaxAggregateInputType = {
74
79
  };
75
80
  export type PaymentMethodPhaseStepCountAggregateInputType = {
76
81
  id?: true;
82
+ tenantId?: true;
77
83
  phaseId?: true;
78
84
  name?: true;
79
85
  stepType?: true;
@@ -161,6 +167,7 @@ export type PaymentMethodPhaseStepGroupByArgs<ExtArgs extends runtime.Types.Exte
161
167
  };
162
168
  export type PaymentMethodPhaseStepGroupByOutputType = {
163
169
  id: string;
170
+ tenantId: string;
164
171
  phaseId: string;
165
172
  name: string;
166
173
  stepType: $Enums.StepType;
@@ -182,6 +189,7 @@ export type PaymentMethodPhaseStepWhereInput = {
182
189
  OR?: Prisma.PaymentMethodPhaseStepWhereInput[];
183
190
  NOT?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
184
191
  id?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
192
+ tenantId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
185
193
  phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
186
194
  name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
187
195
  stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
@@ -189,11 +197,13 @@ export type PaymentMethodPhaseStepWhereInput = {
189
197
  metadata?: Prisma.JsonNullableFilter<"PaymentMethodPhaseStep">;
190
198
  createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
191
199
  updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
200
+ tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
192
201
  phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
193
202
  eventAttachments?: Prisma.StepEventAttachmentListRelationFilter;
194
203
  };
195
204
  export type PaymentMethodPhaseStepOrderByWithRelationInput = {
196
205
  id?: Prisma.SortOrder;
206
+ tenantId?: Prisma.SortOrder;
197
207
  phaseId?: Prisma.SortOrder;
198
208
  name?: Prisma.SortOrder;
199
209
  stepType?: Prisma.SortOrder;
@@ -201,6 +211,7 @@ export type PaymentMethodPhaseStepOrderByWithRelationInput = {
201
211
  metadata?: Prisma.SortOrderInput | Prisma.SortOrder;
202
212
  createdAt?: Prisma.SortOrder;
203
213
  updatedAt?: Prisma.SortOrder;
214
+ tenant?: Prisma.TenantOrderByWithRelationInput;
204
215
  phase?: Prisma.PropertyPaymentMethodPhaseOrderByWithRelationInput;
205
216
  eventAttachments?: Prisma.StepEventAttachmentOrderByRelationAggregateInput;
206
217
  _relevance?: Prisma.PaymentMethodPhaseStepOrderByRelevanceInput;
@@ -210,6 +221,7 @@ export type PaymentMethodPhaseStepWhereUniqueInput = Prisma.AtLeast<{
210
221
  AND?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
211
222
  OR?: Prisma.PaymentMethodPhaseStepWhereInput[];
212
223
  NOT?: Prisma.PaymentMethodPhaseStepWhereInput | Prisma.PaymentMethodPhaseStepWhereInput[];
224
+ tenantId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
213
225
  phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
214
226
  name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
215
227
  stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
@@ -217,11 +229,13 @@ export type PaymentMethodPhaseStepWhereUniqueInput = Prisma.AtLeast<{
217
229
  metadata?: Prisma.JsonNullableFilter<"PaymentMethodPhaseStep">;
218
230
  createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
219
231
  updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
232
+ tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
220
233
  phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
221
234
  eventAttachments?: Prisma.StepEventAttachmentListRelationFilter;
222
235
  }, "id">;
223
236
  export type PaymentMethodPhaseStepOrderByWithAggregationInput = {
224
237
  id?: Prisma.SortOrder;
238
+ tenantId?: Prisma.SortOrder;
225
239
  phaseId?: Prisma.SortOrder;
226
240
  name?: Prisma.SortOrder;
227
241
  stepType?: Prisma.SortOrder;
@@ -240,6 +254,7 @@ export type PaymentMethodPhaseStepScalarWhereWithAggregatesInput = {
240
254
  OR?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput[];
241
255
  NOT?: Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseStepScalarWhereWithAggregatesInput[];
242
256
  id?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
257
+ tenantId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
243
258
  phaseId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
244
259
  name?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseStep"> | string;
245
260
  stepType?: Prisma.EnumStepTypeWithAggregatesFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
@@ -256,11 +271,13 @@ export type PaymentMethodPhaseStepCreateInput = {
256
271
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
257
272
  createdAt?: Date | string;
258
273
  updatedAt?: Date | string;
274
+ tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodPhaseStepsInput;
259
275
  phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutStepsInput;
260
276
  eventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutStepInput;
261
277
  };
262
278
  export type PaymentMethodPhaseStepUncheckedCreateInput = {
263
279
  id?: string;
280
+ tenantId: string;
264
281
  phaseId: string;
265
282
  name: string;
266
283
  stepType: $Enums.StepType;
@@ -278,11 +295,13 @@ export type PaymentMethodPhaseStepUpdateInput = {
278
295
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
279
296
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
280
297
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
298
+ tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodPhaseStepsNestedInput;
281
299
  phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutStepsNestedInput;
282
300
  eventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutStepNestedInput;
283
301
  };
284
302
  export type PaymentMethodPhaseStepUncheckedUpdateInput = {
285
303
  id?: Prisma.StringFieldUpdateOperationsInput | string;
304
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
286
305
  phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
287
306
  name?: Prisma.StringFieldUpdateOperationsInput | string;
288
307
  stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
@@ -294,6 +313,7 @@ export type PaymentMethodPhaseStepUncheckedUpdateInput = {
294
313
  };
295
314
  export type PaymentMethodPhaseStepCreateManyInput = {
296
315
  id?: string;
316
+ tenantId: string;
297
317
  phaseId: string;
298
318
  name: string;
299
319
  stepType: $Enums.StepType;
@@ -313,6 +333,7 @@ export type PaymentMethodPhaseStepUpdateManyMutationInput = {
313
333
  };
314
334
  export type PaymentMethodPhaseStepUncheckedUpdateManyInput = {
315
335
  id?: Prisma.StringFieldUpdateOperationsInput | string;
336
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
316
337
  phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
317
338
  name?: Prisma.StringFieldUpdateOperationsInput | string;
318
339
  stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
@@ -336,6 +357,7 @@ export type PaymentMethodPhaseStepOrderByRelevanceInput = {
336
357
  };
337
358
  export type PaymentMethodPhaseStepCountOrderByAggregateInput = {
338
359
  id?: Prisma.SortOrder;
360
+ tenantId?: Prisma.SortOrder;
339
361
  phaseId?: Prisma.SortOrder;
340
362
  name?: Prisma.SortOrder;
341
363
  stepType?: Prisma.SortOrder;
@@ -349,6 +371,7 @@ export type PaymentMethodPhaseStepAvgOrderByAggregateInput = {
349
371
  };
350
372
  export type PaymentMethodPhaseStepMaxOrderByAggregateInput = {
351
373
  id?: Prisma.SortOrder;
374
+ tenantId?: Prisma.SortOrder;
352
375
  phaseId?: Prisma.SortOrder;
353
376
  name?: Prisma.SortOrder;
354
377
  stepType?: Prisma.SortOrder;
@@ -358,6 +381,7 @@ export type PaymentMethodPhaseStepMaxOrderByAggregateInput = {
358
381
  };
359
382
  export type PaymentMethodPhaseStepMinOrderByAggregateInput = {
360
383
  id?: Prisma.SortOrder;
384
+ tenantId?: Prisma.SortOrder;
361
385
  phaseId?: Prisma.SortOrder;
362
386
  name?: Prisma.SortOrder;
363
387
  stepType?: Prisma.SortOrder;
@@ -372,6 +396,44 @@ export type PaymentMethodPhaseStepScalarRelationFilter = {
372
396
  is?: Prisma.PaymentMethodPhaseStepWhereInput;
373
397
  isNot?: Prisma.PaymentMethodPhaseStepWhereInput;
374
398
  };
399
+ export type PaymentMethodPhaseStepCreateNestedManyWithoutTenantInput = {
400
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput[];
401
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput[];
402
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyTenantInputEnvelope;
403
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
404
+ };
405
+ export type PaymentMethodPhaseStepUncheckedCreateNestedManyWithoutTenantInput = {
406
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput[];
407
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput[];
408
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyTenantInputEnvelope;
409
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
410
+ };
411
+ export type PaymentMethodPhaseStepUpdateManyWithoutTenantNestedInput = {
412
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput[];
413
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput[];
414
+ upsert?: Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutTenantInput[];
415
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyTenantInputEnvelope;
416
+ set?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
417
+ disconnect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
418
+ delete?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
419
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
420
+ update?: Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutTenantInput[];
421
+ updateMany?: Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutTenantInput[];
422
+ deleteMany?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
423
+ };
424
+ export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantNestedInput = {
425
+ create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput[];
426
+ connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput[];
427
+ upsert?: Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutTenantInput[];
428
+ createMany?: Prisma.PaymentMethodPhaseStepCreateManyTenantInputEnvelope;
429
+ set?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
430
+ disconnect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
431
+ delete?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
432
+ connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput | Prisma.PaymentMethodPhaseStepWhereUniqueInput[];
433
+ update?: Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutTenantInput[];
434
+ updateMany?: Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodPhaseStepUpdateManyWithWhereWithoutTenantInput[];
435
+ deleteMany?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
436
+ };
375
437
  export type PaymentMethodPhaseStepCreateNestedManyWithoutPhaseInput = {
376
438
  create?: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput[];
377
439
  connectOrCreate?: Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput[];
@@ -425,7 +487,7 @@ export type PaymentMethodPhaseStepUpdateOneRequiredWithoutEventAttachmentsNested
425
487
  connect?: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
426
488
  update?: Prisma.XOR<Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateToOneWithWhereWithoutEventAttachmentsInput, Prisma.PaymentMethodPhaseStepUpdateWithoutEventAttachmentsInput>, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutEventAttachmentsInput>;
427
489
  };
428
- export type PaymentMethodPhaseStepCreateWithoutPhaseInput = {
490
+ export type PaymentMethodPhaseStepCreateWithoutTenantInput = {
429
491
  id?: string;
430
492
  name: string;
431
493
  stepType: $Enums.StepType;
@@ -433,10 +495,12 @@ export type PaymentMethodPhaseStepCreateWithoutPhaseInput = {
433
495
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
434
496
  createdAt?: Date | string;
435
497
  updatedAt?: Date | string;
498
+ phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutStepsInput;
436
499
  eventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutStepInput;
437
500
  };
438
- export type PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput = {
501
+ export type PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput = {
439
502
  id?: string;
503
+ phaseId: string;
440
504
  name: string;
441
505
  stepType: $Enums.StepType;
442
506
  order: number;
@@ -445,32 +509,33 @@ export type PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput = {
445
509
  updatedAt?: Date | string;
446
510
  eventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutStepInput;
447
511
  };
448
- export type PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput = {
512
+ export type PaymentMethodPhaseStepCreateOrConnectWithoutTenantInput = {
449
513
  where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
450
- create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
514
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput>;
451
515
  };
452
- export type PaymentMethodPhaseStepCreateManyPhaseInputEnvelope = {
453
- data: Prisma.PaymentMethodPhaseStepCreateManyPhaseInput | Prisma.PaymentMethodPhaseStepCreateManyPhaseInput[];
516
+ export type PaymentMethodPhaseStepCreateManyTenantInputEnvelope = {
517
+ data: Prisma.PaymentMethodPhaseStepCreateManyTenantInput | Prisma.PaymentMethodPhaseStepCreateManyTenantInput[];
454
518
  skipDuplicates?: boolean;
455
519
  };
456
- export type PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput = {
520
+ export type PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutTenantInput = {
457
521
  where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
458
- update: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
459
- create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
522
+ update: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutTenantInput>;
523
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutTenantInput>;
460
524
  };
461
- export type PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput = {
525
+ export type PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutTenantInput = {
462
526
  where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
463
- data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
527
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutTenantInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutTenantInput>;
464
528
  };
465
- export type PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput = {
529
+ export type PaymentMethodPhaseStepUpdateManyWithWhereWithoutTenantInput = {
466
530
  where: Prisma.PaymentMethodPhaseStepScalarWhereInput;
467
- data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateManyMutationInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseInput>;
531
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateManyMutationInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantInput>;
468
532
  };
469
533
  export type PaymentMethodPhaseStepScalarWhereInput = {
470
534
  AND?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
471
535
  OR?: Prisma.PaymentMethodPhaseStepScalarWhereInput[];
472
536
  NOT?: Prisma.PaymentMethodPhaseStepScalarWhereInput | Prisma.PaymentMethodPhaseStepScalarWhereInput[];
473
537
  id?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
538
+ tenantId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
474
539
  phaseId?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
475
540
  name?: Prisma.StringFilter<"PaymentMethodPhaseStep"> | string;
476
541
  stepType?: Prisma.EnumStepTypeFilter<"PaymentMethodPhaseStep"> | $Enums.StepType;
@@ -479,6 +544,49 @@ export type PaymentMethodPhaseStepScalarWhereInput = {
479
544
  createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
480
545
  updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseStep"> | Date | string;
481
546
  };
547
+ export type PaymentMethodPhaseStepCreateWithoutPhaseInput = {
548
+ id?: string;
549
+ name: string;
550
+ stepType: $Enums.StepType;
551
+ order: number;
552
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
553
+ createdAt?: Date | string;
554
+ updatedAt?: Date | string;
555
+ tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodPhaseStepsInput;
556
+ eventAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutStepInput;
557
+ };
558
+ export type PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput = {
559
+ id?: string;
560
+ tenantId: string;
561
+ name: string;
562
+ stepType: $Enums.StepType;
563
+ order: number;
564
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
565
+ createdAt?: Date | string;
566
+ updatedAt?: Date | string;
567
+ eventAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutStepInput;
568
+ };
569
+ export type PaymentMethodPhaseStepCreateOrConnectWithoutPhaseInput = {
570
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
571
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
572
+ };
573
+ export type PaymentMethodPhaseStepCreateManyPhaseInputEnvelope = {
574
+ data: Prisma.PaymentMethodPhaseStepCreateManyPhaseInput | Prisma.PaymentMethodPhaseStepCreateManyPhaseInput[];
575
+ skipDuplicates?: boolean;
576
+ };
577
+ export type PaymentMethodPhaseStepUpsertWithWhereUniqueWithoutPhaseInput = {
578
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
579
+ update: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
580
+ create: Prisma.XOR<Prisma.PaymentMethodPhaseStepCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedCreateWithoutPhaseInput>;
581
+ };
582
+ export type PaymentMethodPhaseStepUpdateWithWhereUniqueWithoutPhaseInput = {
583
+ where: Prisma.PaymentMethodPhaseStepWhereUniqueInput;
584
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput>;
585
+ };
586
+ export type PaymentMethodPhaseStepUpdateManyWithWhereWithoutPhaseInput = {
587
+ where: Prisma.PaymentMethodPhaseStepScalarWhereInput;
588
+ data: Prisma.XOR<Prisma.PaymentMethodPhaseStepUpdateManyMutationInput, Prisma.PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseInput>;
589
+ };
482
590
  export type PaymentMethodPhaseStepCreateWithoutEventAttachmentsInput = {
483
591
  id?: string;
484
592
  name: string;
@@ -487,10 +595,12 @@ export type PaymentMethodPhaseStepCreateWithoutEventAttachmentsInput = {
487
595
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
488
596
  createdAt?: Date | string;
489
597
  updatedAt?: Date | string;
598
+ tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodPhaseStepsInput;
490
599
  phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutStepsInput;
491
600
  };
492
601
  export type PaymentMethodPhaseStepUncheckedCreateWithoutEventAttachmentsInput = {
493
602
  id?: string;
603
+ tenantId: string;
494
604
  phaseId: string;
495
605
  name: string;
496
606
  stepType: $Enums.StepType;
@@ -520,9 +630,53 @@ export type PaymentMethodPhaseStepUpdateWithoutEventAttachmentsInput = {
520
630
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
521
631
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
522
632
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
633
+ tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodPhaseStepsNestedInput;
523
634
  phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutStepsNestedInput;
524
635
  };
525
636
  export type PaymentMethodPhaseStepUncheckedUpdateWithoutEventAttachmentsInput = {
637
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
638
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
639
+ phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
640
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
641
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
642
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
643
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
644
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
645
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
646
+ };
647
+ export type PaymentMethodPhaseStepCreateManyTenantInput = {
648
+ id?: string;
649
+ phaseId: string;
650
+ name: string;
651
+ stepType: $Enums.StepType;
652
+ order: number;
653
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
654
+ createdAt?: Date | string;
655
+ updatedAt?: Date | string;
656
+ };
657
+ export type PaymentMethodPhaseStepUpdateWithoutTenantInput = {
658
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
659
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
660
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
661
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
662
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
663
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
664
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
665
+ phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutStepsNestedInput;
666
+ eventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutStepNestedInput;
667
+ };
668
+ export type PaymentMethodPhaseStepUncheckedUpdateWithoutTenantInput = {
669
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
670
+ phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
671
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
672
+ stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
673
+ order?: Prisma.IntFieldUpdateOperationsInput | number;
674
+ metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
675
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
676
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
677
+ eventAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutStepNestedInput;
678
+ };
679
+ export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutTenantInput = {
526
680
  id?: Prisma.StringFieldUpdateOperationsInput | string;
527
681
  phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
528
682
  name?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -534,6 +688,7 @@ export type PaymentMethodPhaseStepUncheckedUpdateWithoutEventAttachmentsInput =
534
688
  };
535
689
  export type PaymentMethodPhaseStepCreateManyPhaseInput = {
536
690
  id?: string;
691
+ tenantId: string;
537
692
  name: string;
538
693
  stepType: $Enums.StepType;
539
694
  order: number;
@@ -549,10 +704,12 @@ export type PaymentMethodPhaseStepUpdateWithoutPhaseInput = {
549
704
  metadata?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
550
705
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
551
706
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
707
+ tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodPhaseStepsNestedInput;
552
708
  eventAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutStepNestedInput;
553
709
  };
554
710
  export type PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput = {
555
711
  id?: Prisma.StringFieldUpdateOperationsInput | string;
712
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
556
713
  name?: Prisma.StringFieldUpdateOperationsInput | string;
557
714
  stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
558
715
  order?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -563,6 +720,7 @@ export type PaymentMethodPhaseStepUncheckedUpdateWithoutPhaseInput = {
563
720
  };
564
721
  export type PaymentMethodPhaseStepUncheckedUpdateManyWithoutPhaseInput = {
565
722
  id?: Prisma.StringFieldUpdateOperationsInput | string;
723
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
566
724
  name?: Prisma.StringFieldUpdateOperationsInput | string;
567
725
  stepType?: Prisma.EnumStepTypeFieldUpdateOperationsInput | $Enums.StepType;
568
726
  order?: Prisma.IntFieldUpdateOperationsInput | number;
@@ -596,6 +754,7 @@ export type PaymentMethodPhaseStepCountOutputTypeCountEventAttachmentsArgs<ExtAr
596
754
  };
597
755
  export type PaymentMethodPhaseStepSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
598
756
  id?: boolean;
757
+ tenantId?: boolean;
599
758
  phaseId?: boolean;
600
759
  name?: boolean;
601
760
  stepType?: boolean;
@@ -603,12 +762,14 @@ export type PaymentMethodPhaseStepSelect<ExtArgs extends runtime.Types.Extension
603
762
  metadata?: boolean;
604
763
  createdAt?: boolean;
605
764
  updatedAt?: boolean;
765
+ tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
606
766
  phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
607
767
  eventAttachments?: boolean | Prisma.PaymentMethodPhaseStep$eventAttachmentsArgs<ExtArgs>;
608
768
  _count?: boolean | Prisma.PaymentMethodPhaseStepCountOutputTypeDefaultArgs<ExtArgs>;
609
769
  }, ExtArgs["result"]["paymentMethodPhaseStep"]>;
610
770
  export type PaymentMethodPhaseStepSelectScalar = {
611
771
  id?: boolean;
772
+ tenantId?: boolean;
612
773
  phaseId?: boolean;
613
774
  name?: boolean;
614
775
  stepType?: boolean;
@@ -617,8 +778,9 @@ export type PaymentMethodPhaseStepSelectScalar = {
617
778
  createdAt?: boolean;
618
779
  updatedAt?: boolean;
619
780
  };
620
- export type PaymentMethodPhaseStepOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "phaseId" | "name" | "stepType" | "order" | "metadata" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseStep"]>;
781
+ export type PaymentMethodPhaseStepOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "phaseId" | "name" | "stepType" | "order" | "metadata" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseStep"]>;
621
782
  export type PaymentMethodPhaseStepInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
783
+ tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
622
784
  phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
623
785
  eventAttachments?: boolean | Prisma.PaymentMethodPhaseStep$eventAttachmentsArgs<ExtArgs>;
624
786
  _count?: boolean | Prisma.PaymentMethodPhaseStepCountOutputTypeDefaultArgs<ExtArgs>;
@@ -626,11 +788,13 @@ export type PaymentMethodPhaseStepInclude<ExtArgs extends runtime.Types.Extensio
626
788
  export type $PaymentMethodPhaseStepPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
627
789
  name: "PaymentMethodPhaseStep";
628
790
  objects: {
791
+ tenant: Prisma.$TenantPayload<ExtArgs>;
629
792
  phase: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>;
630
793
  eventAttachments: Prisma.$StepEventAttachmentPayload<ExtArgs>[];
631
794
  };
632
795
  scalars: runtime.Types.Extensions.GetPayloadResult<{
633
796
  id: string;
797
+ tenantId: string;
634
798
  phaseId: string;
635
799
  name: string;
636
800
  stepType: $Enums.StepType;
@@ -915,6 +1079,7 @@ export interface PaymentMethodPhaseStepDelegate<ExtArgs extends runtime.Types.Ex
915
1079
  */
916
1080
  export interface Prisma__PaymentMethodPhaseStepClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
917
1081
  readonly [Symbol.toStringTag]: "PrismaPromise";
1082
+ tenant<T extends Prisma.TenantDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.TenantDefaultArgs<ExtArgs>>): Prisma.Prisma__TenantClient<runtime.Types.Result.GetResult<Prisma.$TenantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
918
1083
  phase<T extends Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>>): Prisma.Prisma__PropertyPaymentMethodPhaseClient<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
919
1084
  eventAttachments<T extends Prisma.PaymentMethodPhaseStep$eventAttachmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PaymentMethodPhaseStep$eventAttachmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StepEventAttachmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
920
1085
  /**
@@ -943,6 +1108,7 @@ export interface Prisma__PaymentMethodPhaseStepClient<T, Null = never, ExtArgs e
943
1108
  */
944
1109
  export interface PaymentMethodPhaseStepFieldRefs {
945
1110
  readonly id: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
1111
+ readonly tenantId: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
946
1112
  readonly phaseId: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
947
1113
  readonly name: Prisma.FieldRef<"PaymentMethodPhaseStep", 'String'>;
948
1114
  readonly stepType: Prisma.FieldRef<"PaymentMethodPhaseStep", 'StepType'>;