@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.
- package/dist/generated/client/browser.d.ts +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +90 -0
- package/dist/generated/client/enums.d.ts +26 -0
- package/dist/generated/client/enums.js +23 -0
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +176 -1
- package/dist/generated/client/internal/prismaNamespace.js +95 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +96 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +95 -1
- package/dist/generated/client/models/Amenity.d.ts +183 -3
- package/dist/generated/client/models/ApplicationDocument.d.ts +183 -1
- package/dist/generated/client/models/ApplicationEvent.d.ts +190 -14
- package/dist/generated/client/models/ApplicationPayment.d.ts +225 -1
- package/dist/generated/client/models/ApplicationPhase.d.ts +272 -26
- package/dist/generated/client/models/DocumentationPhase.d.ts +224 -24
- package/dist/generated/client/models/DocumentationStep.d.ts +237 -1
- package/dist/generated/client/models/DocumentationStepApproval.d.ts +159 -1
- package/dist/generated/client/models/DocumentationStepDocument.d.ts +150 -10
- package/dist/generated/client/models/EventHandlerExecution.d.ts +208 -14
- package/dist/generated/client/models/PaymentInstallment.d.ts +228 -14
- package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +178 -14
- package/dist/generated/client/models/PaymentMethodPhaseField.d.ts +208 -14
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +180 -14
- package/dist/generated/client/models/PaymentPhase.d.ts +214 -14
- package/dist/generated/client/models/PhaseEventAttachment.d.ts +178 -14
- package/dist/generated/client/models/PropertyAmenity.d.ts +145 -11
- package/dist/generated/client/models/PropertyDocument.d.ts +164 -12
- package/dist/generated/client/models/PropertyMedia.d.ts +183 -17
- package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +159 -13
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +270 -14
- package/dist/generated/client/models/PropertyUnit.d.ts +230 -14
- package/dist/generated/client/models/PropertyVariant.d.ts +256 -14
- package/dist/generated/client/models/PropertyVariantAmenity.d.ts +145 -11
- package/dist/generated/client/models/PropertyVariantMedia.d.ts +171 -13
- package/dist/generated/client/models/QuestionnaireField.d.ts +232 -14
- package/dist/generated/client/models/QuestionnairePhase.d.ts +207 -1
- package/dist/generated/client/models/StepEventAttachment.d.ts +178 -14
- package/dist/generated/client/models/Tenant.d.ts +11653 -1153
- package/dist/generated/client/models/WorkflowBlocker.d.ts +1432 -0
- package/dist/generated/client/models/WorkflowBlocker.js +1 -0
- package/dist/generated/client/models/index.d.ts +1 -0
- package/dist/generated/client/models/index.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/middleware/auth-context.d.ts +63 -6
- package/dist/src/middleware/auth-context.js +132 -13
- package/dist/src/prisma/tenant.js +26 -32
- package/dist/src/types/action-status.d.ts +137 -0
- package/dist/src/types/action-status.js +402 -0
- package/package.json +1 -1
- package/prisma/migrations/20260113000000_remove_workflow_analytics_summary/migration.sql +5 -0
- package/prisma/migrations/20260113110450_add_tenant_id_to_child_models/migration.sql +334 -0
- package/prisma/schema.prisma +273 -60
|
@@ -21,6 +21,7 @@ export type PaymentMethodPhaseFieldSumAggregateOutputType = {
|
|
|
21
21
|
};
|
|
22
22
|
export type PaymentMethodPhaseFieldMinAggregateOutputType = {
|
|
23
23
|
id: string | null;
|
|
24
|
+
tenantId: string | null;
|
|
24
25
|
phaseId: string | null;
|
|
25
26
|
name: string | null;
|
|
26
27
|
label: string | null;
|
|
@@ -34,6 +35,7 @@ export type PaymentMethodPhaseFieldMinAggregateOutputType = {
|
|
|
34
35
|
};
|
|
35
36
|
export type PaymentMethodPhaseFieldMaxAggregateOutputType = {
|
|
36
37
|
id: string | null;
|
|
38
|
+
tenantId: string | null;
|
|
37
39
|
phaseId: string | null;
|
|
38
40
|
name: string | null;
|
|
39
41
|
label: string | null;
|
|
@@ -47,6 +49,7 @@ export type PaymentMethodPhaseFieldMaxAggregateOutputType = {
|
|
|
47
49
|
};
|
|
48
50
|
export type PaymentMethodPhaseFieldCountAggregateOutputType = {
|
|
49
51
|
id: number;
|
|
52
|
+
tenantId: number;
|
|
50
53
|
phaseId: number;
|
|
51
54
|
name: number;
|
|
52
55
|
label: number;
|
|
@@ -70,6 +73,7 @@ export type PaymentMethodPhaseFieldSumAggregateInputType = {
|
|
|
70
73
|
};
|
|
71
74
|
export type PaymentMethodPhaseFieldMinAggregateInputType = {
|
|
72
75
|
id?: true;
|
|
76
|
+
tenantId?: true;
|
|
73
77
|
phaseId?: true;
|
|
74
78
|
name?: true;
|
|
75
79
|
label?: true;
|
|
@@ -83,6 +87,7 @@ export type PaymentMethodPhaseFieldMinAggregateInputType = {
|
|
|
83
87
|
};
|
|
84
88
|
export type PaymentMethodPhaseFieldMaxAggregateInputType = {
|
|
85
89
|
id?: true;
|
|
90
|
+
tenantId?: true;
|
|
86
91
|
phaseId?: true;
|
|
87
92
|
name?: true;
|
|
88
93
|
label?: true;
|
|
@@ -96,6 +101,7 @@ export type PaymentMethodPhaseFieldMaxAggregateInputType = {
|
|
|
96
101
|
};
|
|
97
102
|
export type PaymentMethodPhaseFieldCountAggregateInputType = {
|
|
98
103
|
id?: true;
|
|
104
|
+
tenantId?: true;
|
|
99
105
|
phaseId?: true;
|
|
100
106
|
name?: true;
|
|
101
107
|
label?: true;
|
|
@@ -189,6 +195,7 @@ export type PaymentMethodPhaseFieldGroupByArgs<ExtArgs extends runtime.Types.Ext
|
|
|
189
195
|
};
|
|
190
196
|
export type PaymentMethodPhaseFieldGroupByOutputType = {
|
|
191
197
|
id: string;
|
|
198
|
+
tenantId: string;
|
|
192
199
|
phaseId: string;
|
|
193
200
|
name: string;
|
|
194
201
|
label: string;
|
|
@@ -216,6 +223,7 @@ export type PaymentMethodPhaseFieldWhereInput = {
|
|
|
216
223
|
OR?: Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
217
224
|
NOT?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
218
225
|
id?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
226
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
219
227
|
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
220
228
|
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
221
229
|
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
@@ -229,10 +237,12 @@ export type PaymentMethodPhaseFieldWhereInput = {
|
|
|
229
237
|
defaultValue?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
230
238
|
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
231
239
|
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
240
|
+
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
232
241
|
phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
|
|
233
242
|
};
|
|
234
243
|
export type PaymentMethodPhaseFieldOrderByWithRelationInput = {
|
|
235
244
|
id?: Prisma.SortOrder;
|
|
245
|
+
tenantId?: Prisma.SortOrder;
|
|
236
246
|
phaseId?: Prisma.SortOrder;
|
|
237
247
|
name?: Prisma.SortOrder;
|
|
238
248
|
label?: Prisma.SortOrder;
|
|
@@ -246,6 +256,7 @@ export type PaymentMethodPhaseFieldOrderByWithRelationInput = {
|
|
|
246
256
|
defaultValue?: Prisma.SortOrderInput | Prisma.SortOrder;
|
|
247
257
|
createdAt?: Prisma.SortOrder;
|
|
248
258
|
updatedAt?: Prisma.SortOrder;
|
|
259
|
+
tenant?: Prisma.TenantOrderByWithRelationInput;
|
|
249
260
|
phase?: Prisma.PropertyPaymentMethodPhaseOrderByWithRelationInput;
|
|
250
261
|
_relevance?: Prisma.PaymentMethodPhaseFieldOrderByRelevanceInput;
|
|
251
262
|
};
|
|
@@ -255,6 +266,7 @@ export type PaymentMethodPhaseFieldWhereUniqueInput = Prisma.AtLeast<{
|
|
|
255
266
|
AND?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
256
267
|
OR?: Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
257
268
|
NOT?: Prisma.PaymentMethodPhaseFieldWhereInput | Prisma.PaymentMethodPhaseFieldWhereInput[];
|
|
269
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
258
270
|
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
259
271
|
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
260
272
|
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
@@ -268,10 +280,12 @@ export type PaymentMethodPhaseFieldWhereUniqueInput = Prisma.AtLeast<{
|
|
|
268
280
|
defaultValue?: Prisma.JsonNullableFilter<"PaymentMethodPhaseField">;
|
|
269
281
|
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
270
282
|
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
283
|
+
tenant?: Prisma.XOR<Prisma.TenantScalarRelationFilter, Prisma.TenantWhereInput>;
|
|
271
284
|
phase?: Prisma.XOR<Prisma.PropertyPaymentMethodPhaseScalarRelationFilter, Prisma.PropertyPaymentMethodPhaseWhereInput>;
|
|
272
285
|
}, "id" | "phaseId_name">;
|
|
273
286
|
export type PaymentMethodPhaseFieldOrderByWithAggregationInput = {
|
|
274
287
|
id?: Prisma.SortOrder;
|
|
288
|
+
tenantId?: Prisma.SortOrder;
|
|
275
289
|
phaseId?: Prisma.SortOrder;
|
|
276
290
|
name?: Prisma.SortOrder;
|
|
277
291
|
label?: Prisma.SortOrder;
|
|
@@ -296,6 +310,7 @@ export type PaymentMethodPhaseFieldScalarWhereWithAggregatesInput = {
|
|
|
296
310
|
OR?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput[];
|
|
297
311
|
NOT?: Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput | Prisma.PaymentMethodPhaseFieldScalarWhereWithAggregatesInput[];
|
|
298
312
|
id?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
313
|
+
tenantId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
299
314
|
phaseId?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
300
315
|
name?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
301
316
|
label?: Prisma.StringWithAggregatesFilter<"PaymentMethodPhaseField"> | string;
|
|
@@ -324,10 +339,12 @@ export type PaymentMethodPhaseFieldCreateInput = {
|
|
|
324
339
|
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
325
340
|
createdAt?: Date | string;
|
|
326
341
|
updatedAt?: Date | string;
|
|
342
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodPhaseFieldsInput;
|
|
327
343
|
phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutQuestionnaireFieldsInput;
|
|
328
344
|
};
|
|
329
345
|
export type PaymentMethodPhaseFieldUncheckedCreateInput = {
|
|
330
346
|
id?: string;
|
|
347
|
+
tenantId: string;
|
|
331
348
|
phaseId: string;
|
|
332
349
|
name: string;
|
|
333
350
|
label: string;
|
|
@@ -356,10 +373,12 @@ export type PaymentMethodPhaseFieldUpdateInput = {
|
|
|
356
373
|
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
357
374
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
358
375
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
376
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodPhaseFieldsNestedInput;
|
|
359
377
|
phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutQuestionnaireFieldsNestedInput;
|
|
360
378
|
};
|
|
361
379
|
export type PaymentMethodPhaseFieldUncheckedUpdateInput = {
|
|
362
380
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
381
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
363
382
|
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
364
383
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
365
384
|
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -376,6 +395,7 @@ export type PaymentMethodPhaseFieldUncheckedUpdateInput = {
|
|
|
376
395
|
};
|
|
377
396
|
export type PaymentMethodPhaseFieldCreateManyInput = {
|
|
378
397
|
id?: string;
|
|
398
|
+
tenantId: string;
|
|
379
399
|
phaseId: string;
|
|
380
400
|
name: string;
|
|
381
401
|
label: string;
|
|
@@ -407,6 +427,7 @@ export type PaymentMethodPhaseFieldUpdateManyMutationInput = {
|
|
|
407
427
|
};
|
|
408
428
|
export type PaymentMethodPhaseFieldUncheckedUpdateManyInput = {
|
|
409
429
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
430
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
410
431
|
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
411
432
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
412
433
|
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -440,6 +461,7 @@ export type PaymentMethodPhaseFieldPhaseIdNameCompoundUniqueInput = {
|
|
|
440
461
|
};
|
|
441
462
|
export type PaymentMethodPhaseFieldCountOrderByAggregateInput = {
|
|
442
463
|
id?: Prisma.SortOrder;
|
|
464
|
+
tenantId?: Prisma.SortOrder;
|
|
443
465
|
phaseId?: Prisma.SortOrder;
|
|
444
466
|
name?: Prisma.SortOrder;
|
|
445
467
|
label?: Prisma.SortOrder;
|
|
@@ -459,6 +481,7 @@ export type PaymentMethodPhaseFieldAvgOrderByAggregateInput = {
|
|
|
459
481
|
};
|
|
460
482
|
export type PaymentMethodPhaseFieldMaxOrderByAggregateInput = {
|
|
461
483
|
id?: Prisma.SortOrder;
|
|
484
|
+
tenantId?: Prisma.SortOrder;
|
|
462
485
|
phaseId?: Prisma.SortOrder;
|
|
463
486
|
name?: Prisma.SortOrder;
|
|
464
487
|
label?: Prisma.SortOrder;
|
|
@@ -472,6 +495,7 @@ export type PaymentMethodPhaseFieldMaxOrderByAggregateInput = {
|
|
|
472
495
|
};
|
|
473
496
|
export type PaymentMethodPhaseFieldMinOrderByAggregateInput = {
|
|
474
497
|
id?: Prisma.SortOrder;
|
|
498
|
+
tenantId?: Prisma.SortOrder;
|
|
475
499
|
phaseId?: Prisma.SortOrder;
|
|
476
500
|
name?: Prisma.SortOrder;
|
|
477
501
|
label?: Prisma.SortOrder;
|
|
@@ -486,6 +510,44 @@ export type PaymentMethodPhaseFieldMinOrderByAggregateInput = {
|
|
|
486
510
|
export type PaymentMethodPhaseFieldSumOrderByAggregateInput = {
|
|
487
511
|
order?: Prisma.SortOrder;
|
|
488
512
|
};
|
|
513
|
+
export type PaymentMethodPhaseFieldCreateNestedManyWithoutTenantInput = {
|
|
514
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput[];
|
|
515
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput[];
|
|
516
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyTenantInputEnvelope;
|
|
517
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
518
|
+
};
|
|
519
|
+
export type PaymentMethodPhaseFieldUncheckedCreateNestedManyWithoutTenantInput = {
|
|
520
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput[];
|
|
521
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput[];
|
|
522
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyTenantInputEnvelope;
|
|
523
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
524
|
+
};
|
|
525
|
+
export type PaymentMethodPhaseFieldUpdateManyWithoutTenantNestedInput = {
|
|
526
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput[];
|
|
527
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput[];
|
|
528
|
+
upsert?: Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutTenantInput[];
|
|
529
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyTenantInputEnvelope;
|
|
530
|
+
set?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
531
|
+
disconnect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
532
|
+
delete?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
533
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
534
|
+
update?: Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutTenantInput[];
|
|
535
|
+
updateMany?: Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutTenantInput[];
|
|
536
|
+
deleteMany?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
537
|
+
};
|
|
538
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantNestedInput = {
|
|
539
|
+
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput[];
|
|
540
|
+
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput[];
|
|
541
|
+
upsert?: Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutTenantInput[];
|
|
542
|
+
createMany?: Prisma.PaymentMethodPhaseFieldCreateManyTenantInputEnvelope;
|
|
543
|
+
set?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
544
|
+
disconnect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
545
|
+
delete?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
546
|
+
connect?: Prisma.PaymentMethodPhaseFieldWhereUniqueInput | Prisma.PaymentMethodPhaseFieldWhereUniqueInput[];
|
|
547
|
+
update?: Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutTenantInput[];
|
|
548
|
+
updateMany?: Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutTenantInput | Prisma.PaymentMethodPhaseFieldUpdateManyWithWhereWithoutTenantInput[];
|
|
549
|
+
deleteMany?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
550
|
+
};
|
|
489
551
|
export type PaymentMethodPhaseFieldCreateNestedManyWithoutPhaseInput = {
|
|
490
552
|
create?: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput> | Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput[] | Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput[];
|
|
491
553
|
connectOrCreate?: Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput | Prisma.PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput[];
|
|
@@ -527,7 +589,7 @@ export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseNestedInput =
|
|
|
527
589
|
export type EnumFieldTypeFieldUpdateOperationsInput = {
|
|
528
590
|
set?: $Enums.FieldType;
|
|
529
591
|
};
|
|
530
|
-
export type
|
|
592
|
+
export type PaymentMethodPhaseFieldCreateWithoutTenantInput = {
|
|
531
593
|
id?: string;
|
|
532
594
|
name: string;
|
|
533
595
|
label: string;
|
|
@@ -541,9 +603,11 @@ export type PaymentMethodPhaseFieldCreateWithoutPhaseInput = {
|
|
|
541
603
|
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
542
604
|
createdAt?: Date | string;
|
|
543
605
|
updatedAt?: Date | string;
|
|
606
|
+
phase: Prisma.PropertyPaymentMethodPhaseCreateNestedOneWithoutQuestionnaireFieldsInput;
|
|
544
607
|
};
|
|
545
|
-
export type
|
|
608
|
+
export type PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput = {
|
|
546
609
|
id?: string;
|
|
610
|
+
phaseId: string;
|
|
547
611
|
name: string;
|
|
548
612
|
label: string;
|
|
549
613
|
description?: string | null;
|
|
@@ -557,32 +621,33 @@ export type PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput = {
|
|
|
557
621
|
createdAt?: Date | string;
|
|
558
622
|
updatedAt?: Date | string;
|
|
559
623
|
};
|
|
560
|
-
export type
|
|
624
|
+
export type PaymentMethodPhaseFieldCreateOrConnectWithoutTenantInput = {
|
|
561
625
|
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
562
|
-
create: Prisma.XOR<Prisma.
|
|
626
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput>;
|
|
563
627
|
};
|
|
564
|
-
export type
|
|
565
|
-
data: Prisma.
|
|
628
|
+
export type PaymentMethodPhaseFieldCreateManyTenantInputEnvelope = {
|
|
629
|
+
data: Prisma.PaymentMethodPhaseFieldCreateManyTenantInput | Prisma.PaymentMethodPhaseFieldCreateManyTenantInput[];
|
|
566
630
|
skipDuplicates?: boolean;
|
|
567
631
|
};
|
|
568
|
-
export type
|
|
632
|
+
export type PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutTenantInput = {
|
|
569
633
|
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
570
|
-
update: Prisma.XOR<Prisma.
|
|
571
|
-
create: Prisma.XOR<Prisma.
|
|
634
|
+
update: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutTenantInput>;
|
|
635
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutTenantInput>;
|
|
572
636
|
};
|
|
573
|
-
export type
|
|
637
|
+
export type PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutTenantInput = {
|
|
574
638
|
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
575
|
-
data: Prisma.XOR<Prisma.
|
|
639
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutTenantInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutTenantInput>;
|
|
576
640
|
};
|
|
577
|
-
export type
|
|
641
|
+
export type PaymentMethodPhaseFieldUpdateManyWithWhereWithoutTenantInput = {
|
|
578
642
|
where: Prisma.PaymentMethodPhaseFieldScalarWhereInput;
|
|
579
|
-
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateManyMutationInput, Prisma.
|
|
643
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateManyMutationInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantInput>;
|
|
580
644
|
};
|
|
581
645
|
export type PaymentMethodPhaseFieldScalarWhereInput = {
|
|
582
646
|
AND?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
583
647
|
OR?: Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
584
648
|
NOT?: Prisma.PaymentMethodPhaseFieldScalarWhereInput | Prisma.PaymentMethodPhaseFieldScalarWhereInput[];
|
|
585
649
|
id?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
650
|
+
tenantId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
586
651
|
phaseId?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
587
652
|
name?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
588
653
|
label?: Prisma.StringFilter<"PaymentMethodPhaseField"> | string;
|
|
@@ -597,8 +662,126 @@ export type PaymentMethodPhaseFieldScalarWhereInput = {
|
|
|
597
662
|
createdAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
598
663
|
updatedAt?: Prisma.DateTimeFilter<"PaymentMethodPhaseField"> | Date | string;
|
|
599
664
|
};
|
|
665
|
+
export type PaymentMethodPhaseFieldCreateWithoutPhaseInput = {
|
|
666
|
+
id?: string;
|
|
667
|
+
name: string;
|
|
668
|
+
label: string;
|
|
669
|
+
description?: string | null;
|
|
670
|
+
placeholder?: string | null;
|
|
671
|
+
fieldType: $Enums.FieldType;
|
|
672
|
+
isRequired?: boolean;
|
|
673
|
+
order: number;
|
|
674
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
675
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
676
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
677
|
+
createdAt?: Date | string;
|
|
678
|
+
updatedAt?: Date | string;
|
|
679
|
+
tenant: Prisma.TenantCreateNestedOneWithoutPaymentMethodPhaseFieldsInput;
|
|
680
|
+
};
|
|
681
|
+
export type PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput = {
|
|
682
|
+
id?: string;
|
|
683
|
+
tenantId: string;
|
|
684
|
+
name: string;
|
|
685
|
+
label: string;
|
|
686
|
+
description?: string | null;
|
|
687
|
+
placeholder?: string | null;
|
|
688
|
+
fieldType: $Enums.FieldType;
|
|
689
|
+
isRequired?: boolean;
|
|
690
|
+
order: number;
|
|
691
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
692
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
693
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
694
|
+
createdAt?: Date | string;
|
|
695
|
+
updatedAt?: Date | string;
|
|
696
|
+
};
|
|
697
|
+
export type PaymentMethodPhaseFieldCreateOrConnectWithoutPhaseInput = {
|
|
698
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
699
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput>;
|
|
700
|
+
};
|
|
701
|
+
export type PaymentMethodPhaseFieldCreateManyPhaseInputEnvelope = {
|
|
702
|
+
data: Prisma.PaymentMethodPhaseFieldCreateManyPhaseInput | Prisma.PaymentMethodPhaseFieldCreateManyPhaseInput[];
|
|
703
|
+
skipDuplicates?: boolean;
|
|
704
|
+
};
|
|
705
|
+
export type PaymentMethodPhaseFieldUpsertWithWhereUniqueWithoutPhaseInput = {
|
|
706
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
707
|
+
update: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput>;
|
|
708
|
+
create: Prisma.XOR<Prisma.PaymentMethodPhaseFieldCreateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedCreateWithoutPhaseInput>;
|
|
709
|
+
};
|
|
710
|
+
export type PaymentMethodPhaseFieldUpdateWithWhereUniqueWithoutPhaseInput = {
|
|
711
|
+
where: Prisma.PaymentMethodPhaseFieldWhereUniqueInput;
|
|
712
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateWithoutPhaseInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput>;
|
|
713
|
+
};
|
|
714
|
+
export type PaymentMethodPhaseFieldUpdateManyWithWhereWithoutPhaseInput = {
|
|
715
|
+
where: Prisma.PaymentMethodPhaseFieldScalarWhereInput;
|
|
716
|
+
data: Prisma.XOR<Prisma.PaymentMethodPhaseFieldUpdateManyMutationInput, Prisma.PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseInput>;
|
|
717
|
+
};
|
|
718
|
+
export type PaymentMethodPhaseFieldCreateManyTenantInput = {
|
|
719
|
+
id?: string;
|
|
720
|
+
phaseId: string;
|
|
721
|
+
name: string;
|
|
722
|
+
label: string;
|
|
723
|
+
description?: string | null;
|
|
724
|
+
placeholder?: string | null;
|
|
725
|
+
fieldType: $Enums.FieldType;
|
|
726
|
+
isRequired?: boolean;
|
|
727
|
+
order: number;
|
|
728
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
729
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
730
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
731
|
+
createdAt?: Date | string;
|
|
732
|
+
updatedAt?: Date | string;
|
|
733
|
+
};
|
|
734
|
+
export type PaymentMethodPhaseFieldUpdateWithoutTenantInput = {
|
|
735
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
736
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
737
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
738
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
739
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
740
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
741
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
742
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
743
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
744
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
745
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
746
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
747
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
748
|
+
phase?: Prisma.PropertyPaymentMethodPhaseUpdateOneRequiredWithoutQuestionnaireFieldsNestedInput;
|
|
749
|
+
};
|
|
750
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateWithoutTenantInput = {
|
|
751
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
752
|
+
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
753
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
754
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
755
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
756
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
757
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
758
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
759
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
760
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
761
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
762
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
763
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
764
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
765
|
+
};
|
|
766
|
+
export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutTenantInput = {
|
|
767
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
768
|
+
phaseId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
769
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
770
|
+
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
771
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
772
|
+
placeholder?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
773
|
+
fieldType?: Prisma.EnumFieldTypeFieldUpdateOperationsInput | $Enums.FieldType;
|
|
774
|
+
isRequired?: Prisma.BoolFieldUpdateOperationsInput | boolean;
|
|
775
|
+
order?: Prisma.IntFieldUpdateOperationsInput | number;
|
|
776
|
+
validation?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
777
|
+
displayCondition?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
778
|
+
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
779
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
780
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
781
|
+
};
|
|
600
782
|
export type PaymentMethodPhaseFieldCreateManyPhaseInput = {
|
|
601
783
|
id?: string;
|
|
784
|
+
tenantId: string;
|
|
602
785
|
name: string;
|
|
603
786
|
label: string;
|
|
604
787
|
description?: string | null;
|
|
@@ -626,9 +809,11 @@ export type PaymentMethodPhaseFieldUpdateWithoutPhaseInput = {
|
|
|
626
809
|
defaultValue?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue;
|
|
627
810
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
628
811
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
812
|
+
tenant?: Prisma.TenantUpdateOneRequiredWithoutPaymentMethodPhaseFieldsNestedInput;
|
|
629
813
|
};
|
|
630
814
|
export type PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput = {
|
|
631
815
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
816
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
632
817
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
633
818
|
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
634
819
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -644,6 +829,7 @@ export type PaymentMethodPhaseFieldUncheckedUpdateWithoutPhaseInput = {
|
|
|
644
829
|
};
|
|
645
830
|
export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseInput = {
|
|
646
831
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
832
|
+
tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
647
833
|
name?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
648
834
|
label?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
649
835
|
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -659,6 +845,7 @@ export type PaymentMethodPhaseFieldUncheckedUpdateManyWithoutPhaseInput = {
|
|
|
659
845
|
};
|
|
660
846
|
export type PaymentMethodPhaseFieldSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
661
847
|
id?: boolean;
|
|
848
|
+
tenantId?: boolean;
|
|
662
849
|
phaseId?: boolean;
|
|
663
850
|
name?: boolean;
|
|
664
851
|
label?: boolean;
|
|
@@ -672,10 +859,12 @@ export type PaymentMethodPhaseFieldSelect<ExtArgs extends runtime.Types.Extensio
|
|
|
672
859
|
defaultValue?: boolean;
|
|
673
860
|
createdAt?: boolean;
|
|
674
861
|
updatedAt?: boolean;
|
|
862
|
+
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
675
863
|
phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
|
|
676
864
|
}, ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
677
865
|
export type PaymentMethodPhaseFieldSelectScalar = {
|
|
678
866
|
id?: boolean;
|
|
867
|
+
tenantId?: boolean;
|
|
679
868
|
phaseId?: boolean;
|
|
680
869
|
name?: boolean;
|
|
681
870
|
label?: boolean;
|
|
@@ -690,17 +879,20 @@ export type PaymentMethodPhaseFieldSelectScalar = {
|
|
|
690
879
|
createdAt?: boolean;
|
|
691
880
|
updatedAt?: boolean;
|
|
692
881
|
};
|
|
693
|
-
export type PaymentMethodPhaseFieldOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "phaseId" | "name" | "label" | "description" | "placeholder" | "fieldType" | "isRequired" | "order" | "validation" | "displayCondition" | "defaultValue" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
882
|
+
export type PaymentMethodPhaseFieldOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "tenantId" | "phaseId" | "name" | "label" | "description" | "placeholder" | "fieldType" | "isRequired" | "order" | "validation" | "displayCondition" | "defaultValue" | "createdAt" | "updatedAt", ExtArgs["result"]["paymentMethodPhaseField"]>;
|
|
694
883
|
export type PaymentMethodPhaseFieldInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
884
|
+
tenant?: boolean | Prisma.TenantDefaultArgs<ExtArgs>;
|
|
695
885
|
phase?: boolean | Prisma.PropertyPaymentMethodPhaseDefaultArgs<ExtArgs>;
|
|
696
886
|
};
|
|
697
887
|
export type $PaymentMethodPhaseFieldPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
698
888
|
name: "PaymentMethodPhaseField";
|
|
699
889
|
objects: {
|
|
890
|
+
tenant: Prisma.$TenantPayload<ExtArgs>;
|
|
700
891
|
phase: Prisma.$PropertyPaymentMethodPhasePayload<ExtArgs>;
|
|
701
892
|
};
|
|
702
893
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
703
894
|
id: string;
|
|
895
|
+
tenantId: string;
|
|
704
896
|
phaseId: string;
|
|
705
897
|
name: string;
|
|
706
898
|
label: string;
|
|
@@ -991,6 +1183,7 @@ export interface PaymentMethodPhaseFieldDelegate<ExtArgs extends runtime.Types.E
|
|
|
991
1183
|
*/
|
|
992
1184
|
export interface Prisma__PaymentMethodPhaseFieldClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
993
1185
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1186
|
+
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>;
|
|
994
1187
|
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>;
|
|
995
1188
|
/**
|
|
996
1189
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -1018,6 +1211,7 @@ export interface Prisma__PaymentMethodPhaseFieldClient<T, Null = never, ExtArgs
|
|
|
1018
1211
|
*/
|
|
1019
1212
|
export interface PaymentMethodPhaseFieldFieldRefs {
|
|
1020
1213
|
readonly id: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1214
|
+
readonly tenantId: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1021
1215
|
readonly phaseId: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1022
1216
|
readonly name: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|
|
1023
1217
|
readonly label: Prisma.FieldRef<"PaymentMethodPhaseField", 'String'>;
|