@valentine-efagene/qshelter-common 2.0.19 → 2.0.22
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 +45 -30
- package/dist/generated/client/client.d.ts +45 -30
- package/dist/generated/client/commonInputTypes.d.ts +40 -0
- package/dist/generated/client/internal/class.d.ts +93 -60
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +1050 -720
- package/dist/generated/client/internal/prismaNamespace.js +313 -190
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +344 -215
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +313 -190
- package/dist/generated/client/models/Amenity.d.ts +168 -1
- package/dist/generated/client/models/Contract.d.ts +2037 -298
- package/dist/generated/client/models/ContractDocument.d.ts +299 -12
- package/dist/generated/client/models/ContractEvent.d.ts +1052 -0
- package/dist/generated/client/models/ContractEvent.js +1 -0
- package/dist/generated/client/models/ContractInstallment.d.ts +1656 -0
- package/dist/generated/client/models/ContractInstallment.js +1 -0
- package/dist/generated/client/models/ContractPayment.d.ts +2026 -0
- package/dist/generated/client/models/ContractPayment.js +1 -0
- package/dist/generated/client/models/ContractPhase.d.ts +2467 -0
- package/dist/generated/client/models/ContractPhase.js +1 -0
- package/dist/generated/client/models/ContractPhaseStep.d.ts +1678 -0
- package/dist/generated/client/models/ContractPhaseStep.js +1 -0
- package/dist/generated/client/models/ContractPhaseStepApproval.d.ts +1249 -0
- package/dist/generated/client/models/ContractPhaseStepApproval.js +1 -0
- package/dist/generated/client/models/ContractTransition.d.ts +1118 -0
- package/dist/generated/client/models/ContractTransition.js +1 -0
- package/dist/generated/client/models/DomainEvent.d.ts +1240 -0
- package/dist/generated/client/models/DomainEvent.js +1 -0
- package/dist/generated/client/models/PaymentPlan.d.ts +325 -1062
- package/dist/generated/client/models/Property.d.ts +154 -684
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1498 -0
- package/dist/generated/client/models/PropertyPaymentMethod.js +1 -0
- package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +1158 -0
- package/dist/generated/client/models/PropertyPaymentMethodLink.js +1 -0
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +1656 -0
- package/dist/generated/client/models/PropertyPaymentMethodPhase.js +1 -0
- package/dist/generated/client/models/PropertyUnit.d.ts +1598 -0
- package/dist/generated/client/models/PropertyUnit.js +1 -0
- package/dist/generated/client/models/PropertyVariant.d.ts +2079 -0
- package/dist/generated/client/models/PropertyVariant.js +1 -0
- package/dist/generated/client/models/PropertyVariantAmenity.d.ts +1080 -0
- package/dist/generated/client/models/PropertyVariantAmenity.js +1 -0
- package/dist/generated/client/models/PropertyVariantMedia.d.ts +1189 -0
- package/dist/generated/client/models/PropertyVariantMedia.js +1 -0
- package/dist/generated/client/models/User.d.ts +684 -427
- package/dist/generated/client/models/index.d.ts +15 -12
- package/dist/generated/client/models/index.js +15 -12
- package/dist/generated/client/models.d.ts +15 -12
- package/dist/src/config/config.service.d.ts +0 -1
- package/dist/src/config/config.service.js +0 -1
- package/package.json +2 -1
- package/prisma/schema.prisma +544 -269
|
@@ -46,22 +46,25 @@ export declare const ModelName: {
|
|
|
46
46
|
readonly PropertyMedia: "PropertyMedia";
|
|
47
47
|
readonly PropertyDocument: "PropertyDocument";
|
|
48
48
|
readonly Amenity: "Amenity";
|
|
49
|
+
readonly PropertyVariant: "PropertyVariant";
|
|
50
|
+
readonly PropertyVariantAmenity: "PropertyVariantAmenity";
|
|
51
|
+
readonly PropertyVariantMedia: "PropertyVariantMedia";
|
|
52
|
+
readonly PropertyUnit: "PropertyUnit";
|
|
49
53
|
readonly PropertyAmenity: "PropertyAmenity";
|
|
50
|
-
readonly Mortgage: "Mortgage";
|
|
51
|
-
readonly MortgageType: "MortgageType";
|
|
52
|
-
readonly MortgageDocument: "MortgageDocument";
|
|
53
|
-
readonly MortgageStep: "MortgageStep";
|
|
54
|
-
readonly MortgageDownpaymentPlan: "MortgageDownpaymentPlan";
|
|
55
|
-
readonly MortgageDownpaymentInstallment: "MortgageDownpaymentInstallment";
|
|
56
|
-
readonly MortgageDownpaymentPayment: "MortgageDownpaymentPayment";
|
|
57
|
-
readonly MortgageTransition: "MortgageTransition";
|
|
58
|
-
readonly MortgageTransitionEvent: "MortgageTransitionEvent";
|
|
59
54
|
readonly PaymentPlan: "PaymentPlan";
|
|
60
|
-
readonly
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
55
|
+
readonly PropertyPaymentMethod: "PropertyPaymentMethod";
|
|
56
|
+
readonly PropertyPaymentMethodLink: "PropertyPaymentMethodLink";
|
|
57
|
+
readonly PropertyPaymentMethodPhase: "PropertyPaymentMethodPhase";
|
|
63
58
|
readonly Contract: "Contract";
|
|
59
|
+
readonly ContractPhase: "ContractPhase";
|
|
60
|
+
readonly ContractPhaseStep: "ContractPhaseStep";
|
|
61
|
+
readonly ContractPhaseStepApproval: "ContractPhaseStepApproval";
|
|
62
|
+
readonly ContractInstallment: "ContractInstallment";
|
|
63
|
+
readonly ContractPayment: "ContractPayment";
|
|
64
64
|
readonly ContractDocument: "ContractDocument";
|
|
65
|
+
readonly ContractTransition: "ContractTransition";
|
|
66
|
+
readonly ContractEvent: "ContractEvent";
|
|
67
|
+
readonly DomainEvent: "DomainEvent";
|
|
65
68
|
};
|
|
66
69
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
67
70
|
export declare const TransactionIsolationLevel: {
|
|
@@ -235,13 +238,8 @@ export declare const PropertyScalarFieldEnum: {
|
|
|
235
238
|
readonly district: "district";
|
|
236
239
|
readonly zipCode: "zipCode";
|
|
237
240
|
readonly streetAddress: "streetAddress";
|
|
238
|
-
readonly nBedrooms: "nBedrooms";
|
|
239
|
-
readonly nBathrooms: "nBathrooms";
|
|
240
|
-
readonly nParkingSpots: "nParkingSpots";
|
|
241
|
-
readonly price: "price";
|
|
242
241
|
readonly longitude: "longitude";
|
|
243
242
|
readonly latitude: "latitude";
|
|
244
|
-
readonly area: "area";
|
|
245
243
|
readonly status: "status";
|
|
246
244
|
readonly description: "description";
|
|
247
245
|
readonly displayImageId: "displayImageId";
|
|
@@ -275,151 +273,214 @@ export type PropertyDocumentScalarFieldEnum = (typeof PropertyDocumentScalarFiel
|
|
|
275
273
|
export declare const AmenityScalarFieldEnum: {
|
|
276
274
|
readonly id: "id";
|
|
277
275
|
readonly name: "name";
|
|
276
|
+
readonly category: "category";
|
|
277
|
+
readonly icon: "icon";
|
|
278
278
|
readonly createdAt: "createdAt";
|
|
279
279
|
readonly updatedAt: "updatedAt";
|
|
280
280
|
};
|
|
281
281
|
export type AmenityScalarFieldEnum = (typeof AmenityScalarFieldEnum)[keyof typeof AmenityScalarFieldEnum];
|
|
282
|
-
export declare const
|
|
283
|
-
readonly propertyId: "propertyId";
|
|
284
|
-
readonly amenityId: "amenityId";
|
|
285
|
-
readonly createdAt: "createdAt";
|
|
286
|
-
};
|
|
287
|
-
export type PropertyAmenityScalarFieldEnum = (typeof PropertyAmenityScalarFieldEnum)[keyof typeof PropertyAmenityScalarFieldEnum];
|
|
288
|
-
export declare const MortgageScalarFieldEnum: {
|
|
282
|
+
export declare const PropertyVariantScalarFieldEnum: {
|
|
289
283
|
readonly id: "id";
|
|
290
284
|
readonly propertyId: "propertyId";
|
|
291
|
-
readonly
|
|
292
|
-
readonly
|
|
293
|
-
readonly
|
|
294
|
-
readonly
|
|
295
|
-
readonly
|
|
296
|
-
readonly
|
|
297
|
-
readonly
|
|
298
|
-
readonly
|
|
299
|
-
readonly
|
|
285
|
+
readonly name: "name";
|
|
286
|
+
readonly description: "description";
|
|
287
|
+
readonly nBedrooms: "nBedrooms";
|
|
288
|
+
readonly nBathrooms: "nBathrooms";
|
|
289
|
+
readonly nParkingSpots: "nParkingSpots";
|
|
290
|
+
readonly area: "area";
|
|
291
|
+
readonly price: "price";
|
|
292
|
+
readonly pricePerSqm: "pricePerSqm";
|
|
293
|
+
readonly totalUnits: "totalUnits";
|
|
294
|
+
readonly availableUnits: "availableUnits";
|
|
295
|
+
readonly reservedUnits: "reservedUnits";
|
|
296
|
+
readonly soldUnits: "soldUnits";
|
|
300
297
|
readonly status: "status";
|
|
301
|
-
readonly
|
|
302
|
-
readonly stateMetadata: "stateMetadata";
|
|
303
|
-
readonly lastReminderSentAt: "lastReminderSentAt";
|
|
298
|
+
readonly isActive: "isActive";
|
|
304
299
|
readonly createdAt: "createdAt";
|
|
305
300
|
readonly updatedAt: "updatedAt";
|
|
306
301
|
};
|
|
307
|
-
export type
|
|
308
|
-
export declare const
|
|
309
|
-
readonly
|
|
310
|
-
readonly
|
|
311
|
-
readonly description: "description";
|
|
302
|
+
export type PropertyVariantScalarFieldEnum = (typeof PropertyVariantScalarFieldEnum)[keyof typeof PropertyVariantScalarFieldEnum];
|
|
303
|
+
export declare const PropertyVariantAmenityScalarFieldEnum: {
|
|
304
|
+
readonly variantId: "variantId";
|
|
305
|
+
readonly amenityId: "amenityId";
|
|
312
306
|
readonly createdAt: "createdAt";
|
|
313
|
-
readonly updatedAt: "updatedAt";
|
|
314
307
|
};
|
|
315
|
-
export type
|
|
316
|
-
export declare const
|
|
308
|
+
export type PropertyVariantAmenityScalarFieldEnum = (typeof PropertyVariantAmenityScalarFieldEnum)[keyof typeof PropertyVariantAmenityScalarFieldEnum];
|
|
309
|
+
export declare const PropertyVariantMediaScalarFieldEnum: {
|
|
317
310
|
readonly id: "id";
|
|
318
|
-
readonly
|
|
319
|
-
readonly name: "name";
|
|
311
|
+
readonly variantId: "variantId";
|
|
320
312
|
readonly url: "url";
|
|
321
313
|
readonly type: "type";
|
|
322
|
-
readonly
|
|
323
|
-
readonly updatedAt: "updatedAt";
|
|
324
|
-
};
|
|
325
|
-
export type MortgageDocumentScalarFieldEnum = (typeof MortgageDocumentScalarFieldEnum)[keyof typeof MortgageDocumentScalarFieldEnum];
|
|
326
|
-
export declare const MortgageStepScalarFieldEnum: {
|
|
327
|
-
readonly id: "id";
|
|
328
|
-
readonly mortgageId: "mortgageId";
|
|
329
|
-
readonly name: "name";
|
|
330
|
-
readonly description: "description";
|
|
314
|
+
readonly caption: "caption";
|
|
331
315
|
readonly order: "order";
|
|
332
|
-
readonly isCompleted: "isCompleted";
|
|
333
|
-
readonly completedAt: "completedAt";
|
|
334
316
|
readonly createdAt: "createdAt";
|
|
335
317
|
readonly updatedAt: "updatedAt";
|
|
336
318
|
};
|
|
337
|
-
export type
|
|
338
|
-
export declare const
|
|
319
|
+
export type PropertyVariantMediaScalarFieldEnum = (typeof PropertyVariantMediaScalarFieldEnum)[keyof typeof PropertyVariantMediaScalarFieldEnum];
|
|
320
|
+
export declare const PropertyUnitScalarFieldEnum: {
|
|
339
321
|
readonly id: "id";
|
|
340
|
-
readonly
|
|
341
|
-
readonly
|
|
322
|
+
readonly variantId: "variantId";
|
|
323
|
+
readonly unitNumber: "unitNumber";
|
|
324
|
+
readonly floorNumber: "floorNumber";
|
|
325
|
+
readonly blockName: "blockName";
|
|
326
|
+
readonly priceOverride: "priceOverride";
|
|
327
|
+
readonly areaOverride: "areaOverride";
|
|
328
|
+
readonly notes: "notes";
|
|
342
329
|
readonly status: "status";
|
|
343
|
-
readonly
|
|
344
|
-
readonly
|
|
330
|
+
readonly reservedAt: "reservedAt";
|
|
331
|
+
readonly reservedUntil: "reservedUntil";
|
|
332
|
+
readonly reservedById: "reservedById";
|
|
333
|
+
readonly ownerId: "ownerId";
|
|
345
334
|
readonly createdAt: "createdAt";
|
|
346
335
|
readonly updatedAt: "updatedAt";
|
|
347
336
|
};
|
|
348
|
-
export type
|
|
349
|
-
export declare const
|
|
337
|
+
export type PropertyUnitScalarFieldEnum = (typeof PropertyUnitScalarFieldEnum)[keyof typeof PropertyUnitScalarFieldEnum];
|
|
338
|
+
export declare const PropertyAmenityScalarFieldEnum: {
|
|
339
|
+
readonly propertyId: "propertyId";
|
|
340
|
+
readonly amenityId: "amenityId";
|
|
341
|
+
readonly createdAt: "createdAt";
|
|
342
|
+
};
|
|
343
|
+
export type PropertyAmenityScalarFieldEnum = (typeof PropertyAmenityScalarFieldEnum)[keyof typeof PropertyAmenityScalarFieldEnum];
|
|
344
|
+
export declare const PaymentPlanScalarFieldEnum: {
|
|
350
345
|
readonly id: "id";
|
|
351
|
-
readonly
|
|
352
|
-
readonly
|
|
353
|
-
readonly
|
|
354
|
-
readonly
|
|
355
|
-
readonly
|
|
346
|
+
readonly name: "name";
|
|
347
|
+
readonly description: "description";
|
|
348
|
+
readonly isActive: "isActive";
|
|
349
|
+
readonly paymentFrequency: "paymentFrequency";
|
|
350
|
+
readonly customFrequencyDays: "customFrequencyDays";
|
|
351
|
+
readonly numberOfInstallments: "numberOfInstallments";
|
|
352
|
+
readonly calculateInterestDaily: "calculateInterestDaily";
|
|
353
|
+
readonly gracePeriodDays: "gracePeriodDays";
|
|
356
354
|
readonly createdAt: "createdAt";
|
|
357
355
|
readonly updatedAt: "updatedAt";
|
|
358
356
|
};
|
|
359
|
-
export type
|
|
360
|
-
export declare const
|
|
357
|
+
export type PaymentPlanScalarFieldEnum = (typeof PaymentPlanScalarFieldEnum)[keyof typeof PaymentPlanScalarFieldEnum];
|
|
358
|
+
export declare const PropertyPaymentMethodScalarFieldEnum: {
|
|
361
359
|
readonly id: "id";
|
|
362
|
-
readonly
|
|
363
|
-
readonly
|
|
364
|
-
readonly
|
|
365
|
-
readonly
|
|
366
|
-
readonly
|
|
360
|
+
readonly name: "name";
|
|
361
|
+
readonly description: "description";
|
|
362
|
+
readonly isActive: "isActive";
|
|
363
|
+
readonly allowEarlyPayoff: "allowEarlyPayoff";
|
|
364
|
+
readonly earlyPayoffPenaltyRate: "earlyPayoffPenaltyRate";
|
|
365
|
+
readonly autoActivatePhases: "autoActivatePhases";
|
|
366
|
+
readonly requiresManualApproval: "requiresManualApproval";
|
|
367
367
|
readonly createdAt: "createdAt";
|
|
368
368
|
readonly updatedAt: "updatedAt";
|
|
369
369
|
};
|
|
370
|
-
export type
|
|
371
|
-
export declare const
|
|
372
|
-
readonly
|
|
373
|
-
readonly
|
|
374
|
-
readonly
|
|
375
|
-
readonly
|
|
376
|
-
readonly
|
|
377
|
-
readonly metadata: "metadata";
|
|
378
|
-
readonly transitionedAt: "transitionedAt";
|
|
370
|
+
export type PropertyPaymentMethodScalarFieldEnum = (typeof PropertyPaymentMethodScalarFieldEnum)[keyof typeof PropertyPaymentMethodScalarFieldEnum];
|
|
371
|
+
export declare const PropertyPaymentMethodLinkScalarFieldEnum: {
|
|
372
|
+
readonly propertyId: "propertyId";
|
|
373
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
374
|
+
readonly isDefault: "isDefault";
|
|
375
|
+
readonly isActive: "isActive";
|
|
376
|
+
readonly createdAt: "createdAt";
|
|
379
377
|
};
|
|
380
|
-
export type
|
|
381
|
-
export declare const
|
|
378
|
+
export type PropertyPaymentMethodLinkScalarFieldEnum = (typeof PropertyPaymentMethodLinkScalarFieldEnum)[keyof typeof PropertyPaymentMethodLinkScalarFieldEnum];
|
|
379
|
+
export declare const PropertyPaymentMethodPhaseScalarFieldEnum: {
|
|
382
380
|
readonly id: "id";
|
|
383
|
-
readonly
|
|
384
|
-
readonly
|
|
385
|
-
readonly
|
|
381
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
382
|
+
readonly paymentPlanId: "paymentPlanId";
|
|
383
|
+
readonly name: "name";
|
|
384
|
+
readonly description: "description";
|
|
385
|
+
readonly phaseCategory: "phaseCategory";
|
|
386
|
+
readonly phaseType: "phaseType";
|
|
387
|
+
readonly order: "order";
|
|
388
|
+
readonly interestRate: "interestRate";
|
|
389
|
+
readonly percentOfPrice: "percentOfPrice";
|
|
390
|
+
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
391
|
+
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
392
|
+
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
393
|
+
readonly stepDefinitions: "stepDefinitions";
|
|
386
394
|
readonly createdAt: "createdAt";
|
|
395
|
+
readonly updatedAt: "updatedAt";
|
|
387
396
|
};
|
|
388
|
-
export type
|
|
389
|
-
export declare const
|
|
397
|
+
export type PropertyPaymentMethodPhaseScalarFieldEnum = (typeof PropertyPaymentMethodPhaseScalarFieldEnum)[keyof typeof PropertyPaymentMethodPhaseScalarFieldEnum];
|
|
398
|
+
export declare const ContractScalarFieldEnum: {
|
|
390
399
|
readonly id: "id";
|
|
391
|
-
readonly
|
|
400
|
+
readonly propertyUnitId: "propertyUnitId";
|
|
392
401
|
readonly buyerId: "buyerId";
|
|
393
|
-
readonly
|
|
394
|
-
readonly
|
|
402
|
+
readonly sellerId: "sellerId";
|
|
403
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
404
|
+
readonly contractNumber: "contractNumber";
|
|
405
|
+
readonly title: "title";
|
|
395
406
|
readonly description: "description";
|
|
407
|
+
readonly contractType: "contractType";
|
|
396
408
|
readonly totalAmount: "totalAmount";
|
|
397
|
-
readonly
|
|
409
|
+
readonly downPayment: "downPayment";
|
|
398
410
|
readonly downPaymentPaid: "downPaymentPaid";
|
|
399
|
-
readonly
|
|
411
|
+
readonly principal: "principal";
|
|
400
412
|
readonly interestRate: "interestRate";
|
|
401
|
-
readonly
|
|
413
|
+
readonly termMonths: "termMonths";
|
|
414
|
+
readonly periodicPayment: "periodicPayment";
|
|
415
|
+
readonly totalPaidToDate: "totalPaidToDate";
|
|
416
|
+
readonly totalInterestPaid: "totalInterestPaid";
|
|
417
|
+
readonly status: "status";
|
|
402
418
|
readonly state: "state";
|
|
403
|
-
readonly
|
|
419
|
+
readonly currentPhaseId: "currentPhaseId";
|
|
420
|
+
readonly nextPaymentDueDate: "nextPaymentDueDate";
|
|
421
|
+
readonly lastReminderSentAt: "lastReminderSentAt";
|
|
422
|
+
readonly startDate: "startDate";
|
|
423
|
+
readonly endDate: "endDate";
|
|
424
|
+
readonly signedAt: "signedAt";
|
|
425
|
+
readonly terminatedAt: "terminatedAt";
|
|
404
426
|
readonly createdAt: "createdAt";
|
|
405
427
|
readonly updatedAt: "updatedAt";
|
|
406
428
|
};
|
|
407
|
-
export type
|
|
408
|
-
export declare const
|
|
429
|
+
export type ContractScalarFieldEnum = (typeof ContractScalarFieldEnum)[keyof typeof ContractScalarFieldEnum];
|
|
430
|
+
export declare const ContractPhaseScalarFieldEnum: {
|
|
409
431
|
readonly id: "id";
|
|
410
|
-
readonly
|
|
432
|
+
readonly contractId: "contractId";
|
|
433
|
+
readonly paymentPlanId: "paymentPlanId";
|
|
411
434
|
readonly name: "name";
|
|
412
|
-
readonly
|
|
435
|
+
readonly description: "description";
|
|
436
|
+
readonly phaseCategory: "phaseCategory";
|
|
437
|
+
readonly phaseType: "phaseType";
|
|
438
|
+
readonly order: "order";
|
|
439
|
+
readonly status: "status";
|
|
440
|
+
readonly totalAmount: "totalAmount";
|
|
441
|
+
readonly paidAmount: "paidAmount";
|
|
442
|
+
readonly remainingAmount: "remainingAmount";
|
|
443
|
+
readonly interestRate: "interestRate";
|
|
444
|
+
readonly dueDate: "dueDate";
|
|
413
445
|
readonly startDate: "startDate";
|
|
414
446
|
readonly endDate: "endDate";
|
|
415
|
-
readonly
|
|
447
|
+
readonly activatedAt: "activatedAt";
|
|
448
|
+
readonly completedAt: "completedAt";
|
|
449
|
+
readonly requiresPreviousPhaseCompletion: "requiresPreviousPhaseCompletion";
|
|
450
|
+
readonly minimumCompletionPercentage: "minimumCompletionPercentage";
|
|
416
451
|
readonly createdAt: "createdAt";
|
|
417
452
|
readonly updatedAt: "updatedAt";
|
|
418
453
|
};
|
|
419
|
-
export type
|
|
420
|
-
export declare const
|
|
454
|
+
export type ContractPhaseScalarFieldEnum = (typeof ContractPhaseScalarFieldEnum)[keyof typeof ContractPhaseScalarFieldEnum];
|
|
455
|
+
export declare const ContractPhaseStepScalarFieldEnum: {
|
|
421
456
|
readonly id: "id";
|
|
422
|
-
readonly
|
|
457
|
+
readonly phaseId: "phaseId";
|
|
458
|
+
readonly name: "name";
|
|
459
|
+
readonly description: "description";
|
|
460
|
+
readonly stepType: "stepType";
|
|
461
|
+
readonly order: "order";
|
|
462
|
+
readonly status: "status";
|
|
463
|
+
readonly assigneeId: "assigneeId";
|
|
464
|
+
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
465
|
+
readonly dueDate: "dueDate";
|
|
466
|
+
readonly completedAt: "completedAt";
|
|
467
|
+
readonly createdAt: "createdAt";
|
|
468
|
+
readonly updatedAt: "updatedAt";
|
|
469
|
+
};
|
|
470
|
+
export type ContractPhaseStepScalarFieldEnum = (typeof ContractPhaseStepScalarFieldEnum)[keyof typeof ContractPhaseStepScalarFieldEnum];
|
|
471
|
+
export declare const ContractPhaseStepApprovalScalarFieldEnum: {
|
|
472
|
+
readonly id: "id";
|
|
473
|
+
readonly stepId: "stepId";
|
|
474
|
+
readonly approverId: "approverId";
|
|
475
|
+
readonly decision: "decision";
|
|
476
|
+
readonly comment: "comment";
|
|
477
|
+
readonly decidedAt: "decidedAt";
|
|
478
|
+
readonly createdAt: "createdAt";
|
|
479
|
+
};
|
|
480
|
+
export type ContractPhaseStepApprovalScalarFieldEnum = (typeof ContractPhaseStepApprovalScalarFieldEnum)[keyof typeof ContractPhaseStepApprovalScalarFieldEnum];
|
|
481
|
+
export declare const ContractInstallmentScalarFieldEnum: {
|
|
482
|
+
readonly id: "id";
|
|
483
|
+
readonly phaseId: "phaseId";
|
|
423
484
|
readonly installmentNumber: "installmentNumber";
|
|
424
485
|
readonly amount: "amount";
|
|
425
486
|
readonly principalAmount: "principalAmount";
|
|
@@ -429,14 +490,17 @@ export declare const PaymentInstallmentScalarFieldEnum: {
|
|
|
429
490
|
readonly paidAmount: "paidAmount";
|
|
430
491
|
readonly paidDate: "paidDate";
|
|
431
492
|
readonly lateFee: "lateFee";
|
|
493
|
+
readonly lateFeeWaived: "lateFeeWaived";
|
|
494
|
+
readonly gracePeriodDays: "gracePeriodDays";
|
|
495
|
+
readonly gracePeriodEndDate: "gracePeriodEndDate";
|
|
432
496
|
readonly createdAt: "createdAt";
|
|
433
497
|
readonly updatedAt: "updatedAt";
|
|
434
498
|
};
|
|
435
|
-
export type
|
|
436
|
-
export declare const
|
|
499
|
+
export type ContractInstallmentScalarFieldEnum = (typeof ContractInstallmentScalarFieldEnum)[keyof typeof ContractInstallmentScalarFieldEnum];
|
|
500
|
+
export declare const ContractPaymentScalarFieldEnum: {
|
|
437
501
|
readonly id: "id";
|
|
438
|
-
readonly
|
|
439
|
-
readonly
|
|
502
|
+
readonly contractId: "contractId";
|
|
503
|
+
readonly phaseId: "phaseId";
|
|
440
504
|
readonly installmentId: "installmentId";
|
|
441
505
|
readonly payerId: "payerId";
|
|
442
506
|
readonly amount: "amount";
|
|
@@ -451,36 +515,59 @@ export declare const PaymentScalarFieldEnum: {
|
|
|
451
515
|
readonly createdAt: "createdAt";
|
|
452
516
|
readonly updatedAt: "updatedAt";
|
|
453
517
|
};
|
|
454
|
-
export type
|
|
455
|
-
export declare const ContractScalarFieldEnum: {
|
|
456
|
-
readonly id: "id";
|
|
457
|
-
readonly propertyId: "propertyId";
|
|
458
|
-
readonly paymentPlanId: "paymentPlanId";
|
|
459
|
-
readonly buyerId: "buyerId";
|
|
460
|
-
readonly sellerId: "sellerId";
|
|
461
|
-
readonly contractType: "contractType";
|
|
462
|
-
readonly contractNumber: "contractNumber";
|
|
463
|
-
readonly title: "title";
|
|
464
|
-
readonly description: "description";
|
|
465
|
-
readonly status: "status";
|
|
466
|
-
readonly startDate: "startDate";
|
|
467
|
-
readonly endDate: "endDate";
|
|
468
|
-
readonly signedAt: "signedAt";
|
|
469
|
-
readonly terminatedAt: "terminatedAt";
|
|
470
|
-
readonly createdAt: "createdAt";
|
|
471
|
-
readonly updatedAt: "updatedAt";
|
|
472
|
-
};
|
|
473
|
-
export type ContractScalarFieldEnum = (typeof ContractScalarFieldEnum)[keyof typeof ContractScalarFieldEnum];
|
|
518
|
+
export type ContractPaymentScalarFieldEnum = (typeof ContractPaymentScalarFieldEnum)[keyof typeof ContractPaymentScalarFieldEnum];
|
|
474
519
|
export declare const ContractDocumentScalarFieldEnum: {
|
|
475
520
|
readonly id: "id";
|
|
476
521
|
readonly contractId: "contractId";
|
|
522
|
+
readonly phaseId: "phaseId";
|
|
523
|
+
readonly stepId: "stepId";
|
|
477
524
|
readonly name: "name";
|
|
478
525
|
readonly url: "url";
|
|
479
526
|
readonly type: "type";
|
|
527
|
+
readonly uploadedById: "uploadedById";
|
|
528
|
+
readonly status: "status";
|
|
480
529
|
readonly createdAt: "createdAt";
|
|
481
530
|
readonly updatedAt: "updatedAt";
|
|
482
531
|
};
|
|
483
532
|
export type ContractDocumentScalarFieldEnum = (typeof ContractDocumentScalarFieldEnum)[keyof typeof ContractDocumentScalarFieldEnum];
|
|
533
|
+
export declare const ContractTransitionScalarFieldEnum: {
|
|
534
|
+
readonly id: "id";
|
|
535
|
+
readonly contractId: "contractId";
|
|
536
|
+
readonly fromState: "fromState";
|
|
537
|
+
readonly toState: "toState";
|
|
538
|
+
readonly trigger: "trigger";
|
|
539
|
+
readonly metadata: "metadata";
|
|
540
|
+
readonly transitionedAt: "transitionedAt";
|
|
541
|
+
};
|
|
542
|
+
export type ContractTransitionScalarFieldEnum = (typeof ContractTransitionScalarFieldEnum)[keyof typeof ContractTransitionScalarFieldEnum];
|
|
543
|
+
export declare const ContractEventScalarFieldEnum: {
|
|
544
|
+
readonly id: "id";
|
|
545
|
+
readonly contractId: "contractId";
|
|
546
|
+
readonly event: "event";
|
|
547
|
+
readonly data: "data";
|
|
548
|
+
readonly createdAt: "createdAt";
|
|
549
|
+
};
|
|
550
|
+
export type ContractEventScalarFieldEnum = (typeof ContractEventScalarFieldEnum)[keyof typeof ContractEventScalarFieldEnum];
|
|
551
|
+
export declare const DomainEventScalarFieldEnum: {
|
|
552
|
+
readonly id: "id";
|
|
553
|
+
readonly eventType: "eventType";
|
|
554
|
+
readonly aggregateType: "aggregateType";
|
|
555
|
+
readonly aggregateId: "aggregateId";
|
|
556
|
+
readonly queueName: "queueName";
|
|
557
|
+
readonly payload: "payload";
|
|
558
|
+
readonly occurredAt: "occurredAt";
|
|
559
|
+
readonly actorId: "actorId";
|
|
560
|
+
readonly actorRole: "actorRole";
|
|
561
|
+
readonly status: "status";
|
|
562
|
+
readonly processedAt: "processedAt";
|
|
563
|
+
readonly sentAt: "sentAt";
|
|
564
|
+
readonly failureCount: "failureCount";
|
|
565
|
+
readonly lastError: "lastError";
|
|
566
|
+
readonly nextRetryAt: "nextRetryAt";
|
|
567
|
+
readonly createdAt: "createdAt";
|
|
568
|
+
readonly updatedAt: "updatedAt";
|
|
569
|
+
};
|
|
570
|
+
export type DomainEventScalarFieldEnum = (typeof DomainEventScalarFieldEnum)[keyof typeof DomainEventScalarFieldEnum];
|
|
484
571
|
export declare const SortOrder: {
|
|
485
572
|
readonly asc: "asc";
|
|
486
573
|
readonly desc: "desc";
|
|
@@ -611,9 +698,6 @@ export declare const PropertyOrderByRelevanceFieldEnum: {
|
|
|
611
698
|
readonly district: "district";
|
|
612
699
|
readonly zipCode: "zipCode";
|
|
613
700
|
readonly streetAddress: "streetAddress";
|
|
614
|
-
readonly nBedrooms: "nBedrooms";
|
|
615
|
-
readonly nBathrooms: "nBathrooms";
|
|
616
|
-
readonly nParkingSpots: "nParkingSpots";
|
|
617
701
|
readonly status: "status";
|
|
618
702
|
readonly description: "description";
|
|
619
703
|
readonly displayImageId: "displayImageId";
|
|
@@ -638,107 +722,132 @@ export type PropertyDocumentOrderByRelevanceFieldEnum = (typeof PropertyDocument
|
|
|
638
722
|
export declare const AmenityOrderByRelevanceFieldEnum: {
|
|
639
723
|
readonly id: "id";
|
|
640
724
|
readonly name: "name";
|
|
725
|
+
readonly category: "category";
|
|
726
|
+
readonly icon: "icon";
|
|
641
727
|
};
|
|
642
728
|
export type AmenityOrderByRelevanceFieldEnum = (typeof AmenityOrderByRelevanceFieldEnum)[keyof typeof AmenityOrderByRelevanceFieldEnum];
|
|
643
|
-
export declare const
|
|
729
|
+
export declare const PropertyVariantOrderByRelevanceFieldEnum: {
|
|
730
|
+
readonly id: "id";
|
|
644
731
|
readonly propertyId: "propertyId";
|
|
732
|
+
readonly name: "name";
|
|
733
|
+
readonly description: "description";
|
|
734
|
+
readonly status: "status";
|
|
735
|
+
};
|
|
736
|
+
export type PropertyVariantOrderByRelevanceFieldEnum = (typeof PropertyVariantOrderByRelevanceFieldEnum)[keyof typeof PropertyVariantOrderByRelevanceFieldEnum];
|
|
737
|
+
export declare const PropertyVariantAmenityOrderByRelevanceFieldEnum: {
|
|
738
|
+
readonly variantId: "variantId";
|
|
645
739
|
readonly amenityId: "amenityId";
|
|
646
740
|
};
|
|
647
|
-
export type
|
|
648
|
-
export declare const
|
|
741
|
+
export type PropertyVariantAmenityOrderByRelevanceFieldEnum = (typeof PropertyVariantAmenityOrderByRelevanceFieldEnum)[keyof typeof PropertyVariantAmenityOrderByRelevanceFieldEnum];
|
|
742
|
+
export declare const PropertyVariantMediaOrderByRelevanceFieldEnum: {
|
|
649
743
|
readonly id: "id";
|
|
650
|
-
readonly
|
|
651
|
-
readonly
|
|
652
|
-
readonly
|
|
653
|
-
readonly
|
|
744
|
+
readonly variantId: "variantId";
|
|
745
|
+
readonly url: "url";
|
|
746
|
+
readonly type: "type";
|
|
747
|
+
readonly caption: "caption";
|
|
748
|
+
};
|
|
749
|
+
export type PropertyVariantMediaOrderByRelevanceFieldEnum = (typeof PropertyVariantMediaOrderByRelevanceFieldEnum)[keyof typeof PropertyVariantMediaOrderByRelevanceFieldEnum];
|
|
750
|
+
export declare const PropertyUnitOrderByRelevanceFieldEnum: {
|
|
751
|
+
readonly id: "id";
|
|
752
|
+
readonly variantId: "variantId";
|
|
753
|
+
readonly unitNumber: "unitNumber";
|
|
754
|
+
readonly blockName: "blockName";
|
|
755
|
+
readonly notes: "notes";
|
|
654
756
|
readonly status: "status";
|
|
655
|
-
readonly
|
|
656
|
-
readonly
|
|
757
|
+
readonly reservedById: "reservedById";
|
|
758
|
+
readonly ownerId: "ownerId";
|
|
759
|
+
};
|
|
760
|
+
export type PropertyUnitOrderByRelevanceFieldEnum = (typeof PropertyUnitOrderByRelevanceFieldEnum)[keyof typeof PropertyUnitOrderByRelevanceFieldEnum];
|
|
761
|
+
export declare const PropertyAmenityOrderByRelevanceFieldEnum: {
|
|
762
|
+
readonly propertyId: "propertyId";
|
|
763
|
+
readonly amenityId: "amenityId";
|
|
657
764
|
};
|
|
658
|
-
export type
|
|
659
|
-
export declare const
|
|
765
|
+
export type PropertyAmenityOrderByRelevanceFieldEnum = (typeof PropertyAmenityOrderByRelevanceFieldEnum)[keyof typeof PropertyAmenityOrderByRelevanceFieldEnum];
|
|
766
|
+
export declare const PaymentPlanOrderByRelevanceFieldEnum: {
|
|
660
767
|
readonly id: "id";
|
|
661
768
|
readonly name: "name";
|
|
662
769
|
readonly description: "description";
|
|
770
|
+
readonly paymentFrequency: "paymentFrequency";
|
|
663
771
|
};
|
|
664
|
-
export type
|
|
665
|
-
export declare const
|
|
772
|
+
export type PaymentPlanOrderByRelevanceFieldEnum = (typeof PaymentPlanOrderByRelevanceFieldEnum)[keyof typeof PaymentPlanOrderByRelevanceFieldEnum];
|
|
773
|
+
export declare const PropertyPaymentMethodOrderByRelevanceFieldEnum: {
|
|
666
774
|
readonly id: "id";
|
|
667
|
-
readonly mortgageId: "mortgageId";
|
|
668
775
|
readonly name: "name";
|
|
669
|
-
readonly
|
|
670
|
-
|
|
776
|
+
readonly description: "description";
|
|
777
|
+
};
|
|
778
|
+
export type PropertyPaymentMethodOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodOrderByRelevanceFieldEnum];
|
|
779
|
+
export declare const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum: {
|
|
780
|
+
readonly propertyId: "propertyId";
|
|
781
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
671
782
|
};
|
|
672
|
-
export type
|
|
673
|
-
export declare const
|
|
783
|
+
export type PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodLinkOrderByRelevanceFieldEnum];
|
|
784
|
+
export declare const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum: {
|
|
674
785
|
readonly id: "id";
|
|
675
|
-
readonly
|
|
786
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
787
|
+
readonly paymentPlanId: "paymentPlanId";
|
|
676
788
|
readonly name: "name";
|
|
677
789
|
readonly description: "description";
|
|
790
|
+
readonly phaseCategory: "phaseCategory";
|
|
791
|
+
readonly phaseType: "phaseType";
|
|
792
|
+
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
793
|
+
readonly stepDefinitions: "stepDefinitions";
|
|
678
794
|
};
|
|
679
|
-
export type
|
|
680
|
-
export declare const
|
|
795
|
+
export type PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = (typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum)[keyof typeof PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum];
|
|
796
|
+
export declare const ContractOrderByRelevanceFieldEnum: {
|
|
681
797
|
readonly id: "id";
|
|
798
|
+
readonly propertyUnitId: "propertyUnitId";
|
|
799
|
+
readonly buyerId: "buyerId";
|
|
800
|
+
readonly sellerId: "sellerId";
|
|
801
|
+
readonly paymentMethodId: "paymentMethodId";
|
|
802
|
+
readonly contractNumber: "contractNumber";
|
|
803
|
+
readonly title: "title";
|
|
804
|
+
readonly description: "description";
|
|
805
|
+
readonly contractType: "contractType";
|
|
682
806
|
readonly status: "status";
|
|
807
|
+
readonly state: "state";
|
|
808
|
+
readonly currentPhaseId: "currentPhaseId";
|
|
683
809
|
};
|
|
684
|
-
export type
|
|
685
|
-
export declare const
|
|
686
|
-
readonly id: "id";
|
|
687
|
-
readonly planId: "planId";
|
|
688
|
-
};
|
|
689
|
-
export type MortgageDownpaymentInstallmentOrderByRelevanceFieldEnum = (typeof MortgageDownpaymentInstallmentOrderByRelevanceFieldEnum)[keyof typeof MortgageDownpaymentInstallmentOrderByRelevanceFieldEnum];
|
|
690
|
-
export declare const MortgageDownpaymentPaymentOrderByRelevanceFieldEnum: {
|
|
810
|
+
export type ContractOrderByRelevanceFieldEnum = (typeof ContractOrderByRelevanceFieldEnum)[keyof typeof ContractOrderByRelevanceFieldEnum];
|
|
811
|
+
export declare const ContractPhaseOrderByRelevanceFieldEnum: {
|
|
691
812
|
readonly id: "id";
|
|
692
|
-
readonly
|
|
693
|
-
readonly
|
|
694
|
-
readonly
|
|
813
|
+
readonly contractId: "contractId";
|
|
814
|
+
readonly paymentPlanId: "paymentPlanId";
|
|
815
|
+
readonly name: "name";
|
|
816
|
+
readonly description: "description";
|
|
817
|
+
readonly phaseCategory: "phaseCategory";
|
|
818
|
+
readonly phaseType: "phaseType";
|
|
695
819
|
readonly status: "status";
|
|
696
820
|
};
|
|
697
|
-
export type
|
|
698
|
-
export declare const
|
|
699
|
-
readonly id: "id";
|
|
700
|
-
readonly mortgageId: "mortgageId";
|
|
701
|
-
readonly fromState: "fromState";
|
|
702
|
-
readonly toState: "toState";
|
|
703
|
-
readonly trigger: "trigger";
|
|
704
|
-
readonly metadata: "metadata";
|
|
705
|
-
};
|
|
706
|
-
export type MortgageTransitionOrderByRelevanceFieldEnum = (typeof MortgageTransitionOrderByRelevanceFieldEnum)[keyof typeof MortgageTransitionOrderByRelevanceFieldEnum];
|
|
707
|
-
export declare const MortgageTransitionEventOrderByRelevanceFieldEnum: {
|
|
708
|
-
readonly id: "id";
|
|
709
|
-
readonly mortgageId: "mortgageId";
|
|
710
|
-
readonly event: "event";
|
|
711
|
-
readonly data: "data";
|
|
712
|
-
};
|
|
713
|
-
export type MortgageTransitionEventOrderByRelevanceFieldEnum = (typeof MortgageTransitionEventOrderByRelevanceFieldEnum)[keyof typeof MortgageTransitionEventOrderByRelevanceFieldEnum];
|
|
714
|
-
export declare const PaymentPlanOrderByRelevanceFieldEnum: {
|
|
821
|
+
export type ContractPhaseOrderByRelevanceFieldEnum = (typeof ContractPhaseOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseOrderByRelevanceFieldEnum];
|
|
822
|
+
export declare const ContractPhaseStepOrderByRelevanceFieldEnum: {
|
|
715
823
|
readonly id: "id";
|
|
716
|
-
readonly
|
|
717
|
-
readonly buyerId: "buyerId";
|
|
718
|
-
readonly planType: "planType";
|
|
824
|
+
readonly phaseId: "phaseId";
|
|
719
825
|
readonly name: "name";
|
|
720
826
|
readonly description: "description";
|
|
721
|
-
readonly
|
|
722
|
-
readonly
|
|
827
|
+
readonly stepType: "stepType";
|
|
828
|
+
readonly status: "status";
|
|
829
|
+
readonly assigneeId: "assigneeId";
|
|
830
|
+
readonly requiredDocumentTypes: "requiredDocumentTypes";
|
|
723
831
|
};
|
|
724
|
-
export type
|
|
725
|
-
export declare const
|
|
832
|
+
export type ContractPhaseStepOrderByRelevanceFieldEnum = (typeof ContractPhaseStepOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepOrderByRelevanceFieldEnum];
|
|
833
|
+
export declare const ContractPhaseStepApprovalOrderByRelevanceFieldEnum: {
|
|
726
834
|
readonly id: "id";
|
|
727
|
-
readonly
|
|
728
|
-
readonly
|
|
729
|
-
readonly
|
|
835
|
+
readonly stepId: "stepId";
|
|
836
|
+
readonly approverId: "approverId";
|
|
837
|
+
readonly decision: "decision";
|
|
838
|
+
readonly comment: "comment";
|
|
730
839
|
};
|
|
731
|
-
export type
|
|
732
|
-
export declare const
|
|
840
|
+
export type ContractPhaseStepApprovalOrderByRelevanceFieldEnum = (typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum)[keyof typeof ContractPhaseStepApprovalOrderByRelevanceFieldEnum];
|
|
841
|
+
export declare const ContractInstallmentOrderByRelevanceFieldEnum: {
|
|
733
842
|
readonly id: "id";
|
|
734
|
-
readonly
|
|
843
|
+
readonly phaseId: "phaseId";
|
|
735
844
|
readonly status: "status";
|
|
736
845
|
};
|
|
737
|
-
export type
|
|
738
|
-
export declare const
|
|
846
|
+
export type ContractInstallmentOrderByRelevanceFieldEnum = (typeof ContractInstallmentOrderByRelevanceFieldEnum)[keyof typeof ContractInstallmentOrderByRelevanceFieldEnum];
|
|
847
|
+
export declare const ContractPaymentOrderByRelevanceFieldEnum: {
|
|
739
848
|
readonly id: "id";
|
|
740
|
-
readonly
|
|
741
|
-
readonly
|
|
849
|
+
readonly contractId: "contractId";
|
|
850
|
+
readonly phaseId: "phaseId";
|
|
742
851
|
readonly installmentId: "installmentId";
|
|
743
852
|
readonly payerId: "payerId";
|
|
744
853
|
readonly paymentMethod: "paymentMethod";
|
|
@@ -746,25 +855,45 @@ export declare const PaymentOrderByRelevanceFieldEnum: {
|
|
|
746
855
|
readonly reference: "reference";
|
|
747
856
|
readonly gatewayResponse: "gatewayResponse";
|
|
748
857
|
};
|
|
749
|
-
export type
|
|
750
|
-
export declare const ContractOrderByRelevanceFieldEnum: {
|
|
751
|
-
readonly id: "id";
|
|
752
|
-
readonly propertyId: "propertyId";
|
|
753
|
-
readonly paymentPlanId: "paymentPlanId";
|
|
754
|
-
readonly buyerId: "buyerId";
|
|
755
|
-
readonly sellerId: "sellerId";
|
|
756
|
-
readonly contractType: "contractType";
|
|
757
|
-
readonly contractNumber: "contractNumber";
|
|
758
|
-
readonly title: "title";
|
|
759
|
-
readonly description: "description";
|
|
760
|
-
readonly status: "status";
|
|
761
|
-
};
|
|
762
|
-
export type ContractOrderByRelevanceFieldEnum = (typeof ContractOrderByRelevanceFieldEnum)[keyof typeof ContractOrderByRelevanceFieldEnum];
|
|
858
|
+
export type ContractPaymentOrderByRelevanceFieldEnum = (typeof ContractPaymentOrderByRelevanceFieldEnum)[keyof typeof ContractPaymentOrderByRelevanceFieldEnum];
|
|
763
859
|
export declare const ContractDocumentOrderByRelevanceFieldEnum: {
|
|
764
860
|
readonly id: "id";
|
|
765
861
|
readonly contractId: "contractId";
|
|
862
|
+
readonly phaseId: "phaseId";
|
|
863
|
+
readonly stepId: "stepId";
|
|
766
864
|
readonly name: "name";
|
|
767
865
|
readonly url: "url";
|
|
768
866
|
readonly type: "type";
|
|
867
|
+
readonly uploadedById: "uploadedById";
|
|
868
|
+
readonly status: "status";
|
|
769
869
|
};
|
|
770
870
|
export type ContractDocumentOrderByRelevanceFieldEnum = (typeof ContractDocumentOrderByRelevanceFieldEnum)[keyof typeof ContractDocumentOrderByRelevanceFieldEnum];
|
|
871
|
+
export declare const ContractTransitionOrderByRelevanceFieldEnum: {
|
|
872
|
+
readonly id: "id";
|
|
873
|
+
readonly contractId: "contractId";
|
|
874
|
+
readonly fromState: "fromState";
|
|
875
|
+
readonly toState: "toState";
|
|
876
|
+
readonly trigger: "trigger";
|
|
877
|
+
readonly metadata: "metadata";
|
|
878
|
+
};
|
|
879
|
+
export type ContractTransitionOrderByRelevanceFieldEnum = (typeof ContractTransitionOrderByRelevanceFieldEnum)[keyof typeof ContractTransitionOrderByRelevanceFieldEnum];
|
|
880
|
+
export declare const ContractEventOrderByRelevanceFieldEnum: {
|
|
881
|
+
readonly id: "id";
|
|
882
|
+
readonly contractId: "contractId";
|
|
883
|
+
readonly event: "event";
|
|
884
|
+
readonly data: "data";
|
|
885
|
+
};
|
|
886
|
+
export type ContractEventOrderByRelevanceFieldEnum = (typeof ContractEventOrderByRelevanceFieldEnum)[keyof typeof ContractEventOrderByRelevanceFieldEnum];
|
|
887
|
+
export declare const DomainEventOrderByRelevanceFieldEnum: {
|
|
888
|
+
readonly id: "id";
|
|
889
|
+
readonly eventType: "eventType";
|
|
890
|
+
readonly aggregateType: "aggregateType";
|
|
891
|
+
readonly aggregateId: "aggregateId";
|
|
892
|
+
readonly queueName: "queueName";
|
|
893
|
+
readonly payload: "payload";
|
|
894
|
+
readonly actorId: "actorId";
|
|
895
|
+
readonly actorRole: "actorRole";
|
|
896
|
+
readonly status: "status";
|
|
897
|
+
readonly lastError: "lastError";
|
|
898
|
+
};
|
|
899
|
+
export type DomainEventOrderByRelevanceFieldEnum = (typeof DomainEventOrderByRelevanceFieldEnum)[keyof typeof DomainEventOrderByRelevanceFieldEnum];
|