@mikemo-coposit/am-accounting-shared 1.0.6 → 1.0.8

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 (41) hide show
  1. package/dist/cjs/constants/common/package-version.constant.d.ts +1 -1
  2. package/dist/cjs/index.cjs +538 -427
  3. package/dist/cjs/schemas/cma/cma.rest.schema.d.ts +7 -7
  4. package/dist/cjs/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +12 -12
  5. package/dist/cjs/schemas/cma-account-period/cma-account-period.rest.schema.d.ts +7 -7
  6. package/dist/cjs/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +13 -13
  7. package/dist/cjs/schemas/cma-transaction/cma-transaction.rest.schema.d.ts +1 -1
  8. package/dist/cjs/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +12 -12
  9. package/dist/cjs/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +6 -6
  10. package/dist/cjs/schemas/mta-transaction/mta-transaction.entity.schema.d.ts +1 -1
  11. package/dist/cjs/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +1 -1
  12. package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.entity.schema.d.ts +2 -2
  13. package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +99 -99
  14. package/dist/cjs/schemas/payout/payout-provision-data.entity.schema.d.ts +2 -2
  15. package/dist/cjs/schemas/payout/payout.entity.schema.d.ts +2 -2
  16. package/dist/cjs/schemas/payout/payout.rest.schema.d.ts +132 -132
  17. package/dist/cjs/schemas/payout/settlement-payout/provision-data.settlement-payout.entity.schema.d.ts +2 -2
  18. package/dist/cjs/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +13 -13
  19. package/dist/cjs/schemas/property/property.entity.schema.d.ts +2 -2
  20. package/dist/cjs/schemas/property/property.rest.schema.d.ts +14 -14
  21. package/dist/esm/constants/common/package-version.constant.d.ts +1 -1
  22. package/dist/esm/index.js +120 -111
  23. package/dist/esm/schemas/cma/cma.rest.schema.d.ts +7 -7
  24. package/dist/esm/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +12 -12
  25. package/dist/esm/schemas/cma-account-period/cma-account-period.rest.schema.d.ts +7 -7
  26. package/dist/esm/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +13 -13
  27. package/dist/esm/schemas/cma-transaction/cma-transaction.rest.schema.d.ts +1 -1
  28. package/dist/esm/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +12 -12
  29. package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +6 -6
  30. package/dist/esm/schemas/mta-transaction/mta-transaction.entity.schema.d.ts +1 -1
  31. package/dist/esm/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +1 -1
  32. package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.entity.schema.d.ts +2 -2
  33. package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +99 -99
  34. package/dist/esm/schemas/payout/payout-provision-data.entity.schema.d.ts +2 -2
  35. package/dist/esm/schemas/payout/payout.entity.schema.d.ts +2 -2
  36. package/dist/esm/schemas/payout/payout.rest.schema.d.ts +132 -132
  37. package/dist/esm/schemas/payout/settlement-payout/provision-data.settlement-payout.entity.schema.d.ts +2 -2
  38. package/dist/esm/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +13 -13
  39. package/dist/esm/schemas/property/property.entity.schema.d.ts +2 -2
  40. package/dist/esm/schemas/property/property.rest.schema.d.ts +14 -14
  41. package/package.json +1 -1
@@ -71,7 +71,7 @@ export declare const cmaRestResSchema: z.ZodObject<{
71
71
  propertyAddress: z.ZodString;
72
72
  cmaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
73
73
  mtaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
74
- isCmaRequired: z.ZodBoolean;
74
+ isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
75
75
  stage: z.ZodString;
76
76
  initialDepositStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
77
77
  project: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
@@ -464,11 +464,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
464
464
  propertyAddress: string;
465
465
  cmaBalanceCents: unknown;
466
466
  mtaBalanceCents: unknown;
467
- isCmaRequired: boolean;
468
467
  stage: string;
469
468
  cmaNotRequiredReason?: string | null | undefined;
470
469
  cmaId?: string | null | undefined;
471
470
  buyerName?: string | null | undefined;
471
+ isCmaRequired?: boolean | undefined;
472
472
  initialDepositStatus?: string | null | undefined;
473
473
  project?: {
474
474
  id: string;
@@ -562,11 +562,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
562
562
  propertyAddress: string;
563
563
  cmaBalanceCents: unknown;
564
564
  mtaBalanceCents: unknown;
565
- isCmaRequired: boolean;
566
565
  stage: string;
567
566
  cmaNotRequiredReason?: string | null | undefined;
568
567
  cmaId?: string | null | undefined;
569
568
  buyerName?: string | null | undefined;
569
+ isCmaRequired?: boolean | undefined;
570
570
  initialDepositStatus?: string | null | undefined;
571
571
  project?: {
572
572
  id: string;
@@ -659,11 +659,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
659
659
  propertyAddress: string;
660
660
  cmaBalanceCents: unknown;
661
661
  mtaBalanceCents: unknown;
662
- isCmaRequired: boolean;
663
662
  stage: string;
664
663
  cmaNotRequiredReason?: string | null | undefined;
665
664
  cmaId?: string | null | undefined;
666
665
  buyerName?: string | null | undefined;
666
+ isCmaRequired?: boolean | undefined;
667
667
  initialDepositStatus?: string | null | undefined;
668
668
  project?: {
669
669
  id: string;
@@ -1058,11 +1058,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
1058
1058
  propertyAddress: string;
1059
1059
  cmaBalanceCents: unknown;
1060
1060
  mtaBalanceCents: unknown;
1061
- isCmaRequired: boolean;
1062
1061
  stage: string;
1063
1062
  cmaNotRequiredReason?: string | null | undefined;
1064
1063
  cmaId?: string | null | undefined;
1065
1064
  buyerName?: string | null | undefined;
1065
+ isCmaRequired?: boolean | undefined;
1066
1066
  initialDepositStatus?: string | null | undefined;
1067
1067
  project?: {
1068
1068
  id: string;
@@ -1156,11 +1156,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
1156
1156
  propertyAddress: string;
1157
1157
  cmaBalanceCents: unknown;
1158
1158
  mtaBalanceCents: unknown;
1159
- isCmaRequired: boolean;
1160
1159
  stage: string;
1161
1160
  cmaNotRequiredReason?: string | null | undefined;
1162
1161
  cmaId?: string | null | undefined;
1163
1162
  buyerName?: string | null | undefined;
1163
+ isCmaRequired?: boolean | undefined;
1164
1164
  initialDepositStatus?: string | null | undefined;
1165
1165
  project?: {
1166
1166
  id: string;
@@ -1253,11 +1253,11 @@ export declare const cmaRestResSchema: z.ZodObject<{
1253
1253
  propertyAddress: string;
1254
1254
  cmaBalanceCents: unknown;
1255
1255
  mtaBalanceCents: unknown;
1256
- isCmaRequired: boolean;
1257
1256
  stage: string;
1258
1257
  cmaNotRequiredReason?: string | null | undefined;
1259
1258
  cmaId?: string | null | undefined;
1260
1259
  buyerName?: string | null | undefined;
1260
+ isCmaRequired?: boolean | undefined;
1261
1261
  initialDepositStatus?: string | null | undefined;
1262
1262
  project?: {
1263
1263
  id: string;
@@ -406,11 +406,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
406
406
  propertyAddress: string;
407
407
  cmaBalanceCents: unknown;
408
408
  mtaBalanceCents: unknown;
409
- isCmaRequired: boolean;
410
409
  stage: string;
411
410
  cmaNotRequiredReason?: string | null | undefined;
412
411
  cmaId?: string | null | undefined;
413
412
  buyerName?: string | null | undefined;
413
+ isCmaRequired?: boolean | undefined;
414
414
  initialDepositStatus?: string | null | undefined;
415
415
  project?: {
416
416
  id: string;
@@ -504,11 +504,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
504
504
  propertyAddress: string;
505
505
  cmaBalanceCents: unknown;
506
506
  mtaBalanceCents: unknown;
507
- isCmaRequired: boolean;
508
507
  stage: string;
509
508
  cmaNotRequiredReason?: string | null | undefined;
510
509
  cmaId?: string | null | undefined;
511
510
  buyerName?: string | null | undefined;
511
+ isCmaRequired?: boolean | undefined;
512
512
  initialDepositStatus?: string | null | undefined;
513
513
  project?: {
514
514
  id: string;
@@ -601,11 +601,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
601
601
  propertyAddress: string;
602
602
  cmaBalanceCents: unknown;
603
603
  mtaBalanceCents: unknown;
604
- isCmaRequired: boolean;
605
604
  stage: string;
606
605
  cmaNotRequiredReason?: string | null | undefined;
607
606
  cmaId?: string | null | undefined;
608
607
  buyerName?: string | null | undefined;
608
+ isCmaRequired?: boolean | undefined;
609
609
  initialDepositStatus?: string | null | undefined;
610
610
  project?: {
611
611
  id: string;
@@ -1000,11 +1000,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1000
1000
  propertyAddress: string;
1001
1001
  cmaBalanceCents: unknown;
1002
1002
  mtaBalanceCents: unknown;
1003
- isCmaRequired: boolean;
1004
1003
  stage: string;
1005
1004
  cmaNotRequiredReason?: string | null | undefined;
1006
1005
  cmaId?: string | null | undefined;
1007
1006
  buyerName?: string | null | undefined;
1007
+ isCmaRequired?: boolean | undefined;
1008
1008
  initialDepositStatus?: string | null | undefined;
1009
1009
  project?: {
1010
1010
  id: string;
@@ -1098,11 +1098,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1098
1098
  propertyAddress: string;
1099
1099
  cmaBalanceCents: unknown;
1100
1100
  mtaBalanceCents: unknown;
1101
- isCmaRequired: boolean;
1102
1101
  stage: string;
1103
1102
  cmaNotRequiredReason?: string | null | undefined;
1104
1103
  cmaId?: string | null | undefined;
1105
1104
  buyerName?: string | null | undefined;
1105
+ isCmaRequired?: boolean | undefined;
1106
1106
  initialDepositStatus?: string | null | undefined;
1107
1107
  project?: {
1108
1108
  id: string;
@@ -1195,11 +1195,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1195
1195
  propertyAddress: string;
1196
1196
  cmaBalanceCents: unknown;
1197
1197
  mtaBalanceCents: unknown;
1198
- isCmaRequired: boolean;
1199
1198
  stage: string;
1200
1199
  cmaNotRequiredReason?: string | null | undefined;
1201
1200
  cmaId?: string | null | undefined;
1202
1201
  buyerName?: string | null | undefined;
1202
+ isCmaRequired?: boolean | undefined;
1203
1203
  initialDepositStatus?: string | null | undefined;
1204
1204
  project?: {
1205
1205
  id: string;
@@ -1596,11 +1596,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1596
1596
  propertyAddress: string;
1597
1597
  cmaBalanceCents: unknown;
1598
1598
  mtaBalanceCents: unknown;
1599
- isCmaRequired: boolean;
1600
1599
  stage: string;
1601
1600
  cmaNotRequiredReason?: string | null | undefined;
1602
1601
  cmaId?: string | null | undefined;
1603
1602
  buyerName?: string | null | undefined;
1603
+ isCmaRequired?: boolean | undefined;
1604
1604
  initialDepositStatus?: string | null | undefined;
1605
1605
  project?: {
1606
1606
  id: string;
@@ -1694,11 +1694,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1694
1694
  propertyAddress: string;
1695
1695
  cmaBalanceCents: unknown;
1696
1696
  mtaBalanceCents: unknown;
1697
- isCmaRequired: boolean;
1698
1697
  stage: string;
1699
1698
  cmaNotRequiredReason?: string | null | undefined;
1700
1699
  cmaId?: string | null | undefined;
1701
1700
  buyerName?: string | null | undefined;
1701
+ isCmaRequired?: boolean | undefined;
1702
1702
  initialDepositStatus?: string | null | undefined;
1703
1703
  project?: {
1704
1704
  id: string;
@@ -1791,11 +1791,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1791
1791
  propertyAddress: string;
1792
1792
  cmaBalanceCents: unknown;
1793
1793
  mtaBalanceCents: unknown;
1794
- isCmaRequired: boolean;
1795
1794
  stage: string;
1796
1795
  cmaNotRequiredReason?: string | null | undefined;
1797
1796
  cmaId?: string | null | undefined;
1798
1797
  buyerName?: string | null | undefined;
1798
+ isCmaRequired?: boolean | undefined;
1799
1799
  initialDepositStatus?: string | null | undefined;
1800
1800
  project?: {
1801
1801
  id: string;
@@ -2190,11 +2190,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2190
2190
  propertyAddress: string;
2191
2191
  cmaBalanceCents: unknown;
2192
2192
  mtaBalanceCents: unknown;
2193
- isCmaRequired: boolean;
2194
2193
  stage: string;
2195
2194
  cmaNotRequiredReason?: string | null | undefined;
2196
2195
  cmaId?: string | null | undefined;
2197
2196
  buyerName?: string | null | undefined;
2197
+ isCmaRequired?: boolean | undefined;
2198
2198
  initialDepositStatus?: string | null | undefined;
2199
2199
  project?: {
2200
2200
  id: string;
@@ -2288,11 +2288,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2288
2288
  propertyAddress: string;
2289
2289
  cmaBalanceCents: unknown;
2290
2290
  mtaBalanceCents: unknown;
2291
- isCmaRequired: boolean;
2292
2291
  stage: string;
2293
2292
  cmaNotRequiredReason?: string | null | undefined;
2294
2293
  cmaId?: string | null | undefined;
2295
2294
  buyerName?: string | null | undefined;
2295
+ isCmaRequired?: boolean | undefined;
2296
2296
  initialDepositStatus?: string | null | undefined;
2297
2297
  project?: {
2298
2298
  id: string;
@@ -2385,11 +2385,11 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2385
2385
  propertyAddress: string;
2386
2386
  cmaBalanceCents: unknown;
2387
2387
  mtaBalanceCents: unknown;
2388
- isCmaRequired: boolean;
2389
2388
  stage: string;
2390
2389
  cmaNotRequiredReason?: string | null | undefined;
2391
2390
  cmaId?: string | null | undefined;
2392
2391
  buyerName?: string | null | undefined;
2392
+ isCmaRequired?: boolean | undefined;
2393
2393
  initialDepositStatus?: string | null | undefined;
2394
2394
  project?: {
2395
2395
  id: string;
@@ -79,7 +79,7 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
79
79
  propertyAddress: z.ZodString;
80
80
  cmaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
81
81
  mtaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
82
- isCmaRequired: z.ZodBoolean;
82
+ isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
83
83
  stage: z.ZodString;
84
84
  initialDepositStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
85
85
  project: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
@@ -472,11 +472,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
472
472
  propertyAddress: string;
473
473
  cmaBalanceCents: unknown;
474
474
  mtaBalanceCents: unknown;
475
- isCmaRequired: boolean;
476
475
  stage: string;
477
476
  cmaNotRequiredReason?: string | null | undefined;
478
477
  cmaId?: string | null | undefined;
479
478
  buyerName?: string | null | undefined;
479
+ isCmaRequired?: boolean | undefined;
480
480
  initialDepositStatus?: string | null | undefined;
481
481
  project?: {
482
482
  id: string;
@@ -570,11 +570,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
570
570
  propertyAddress: string;
571
571
  cmaBalanceCents: unknown;
572
572
  mtaBalanceCents: unknown;
573
- isCmaRequired: boolean;
574
573
  stage: string;
575
574
  cmaNotRequiredReason?: string | null | undefined;
576
575
  cmaId?: string | null | undefined;
577
576
  buyerName?: string | null | undefined;
577
+ isCmaRequired?: boolean | undefined;
578
578
  initialDepositStatus?: string | null | undefined;
579
579
  project?: {
580
580
  id: string;
@@ -667,11 +667,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
667
667
  propertyAddress: string;
668
668
  cmaBalanceCents: unknown;
669
669
  mtaBalanceCents: unknown;
670
- isCmaRequired: boolean;
671
670
  stage: string;
672
671
  cmaNotRequiredReason?: string | null | undefined;
673
672
  cmaId?: string | null | undefined;
674
673
  buyerName?: string | null | undefined;
674
+ isCmaRequired?: boolean | undefined;
675
675
  initialDepositStatus?: string | null | undefined;
676
676
  project?: {
677
677
  id: string;
@@ -1066,11 +1066,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
1066
1066
  propertyAddress: string;
1067
1067
  cmaBalanceCents: unknown;
1068
1068
  mtaBalanceCents: unknown;
1069
- isCmaRequired: boolean;
1070
1069
  stage: string;
1071
1070
  cmaNotRequiredReason?: string | null | undefined;
1072
1071
  cmaId?: string | null | undefined;
1073
1072
  buyerName?: string | null | undefined;
1073
+ isCmaRequired?: boolean | undefined;
1074
1074
  initialDepositStatus?: string | null | undefined;
1075
1075
  project?: {
1076
1076
  id: string;
@@ -1164,11 +1164,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
1164
1164
  propertyAddress: string;
1165
1165
  cmaBalanceCents: unknown;
1166
1166
  mtaBalanceCents: unknown;
1167
- isCmaRequired: boolean;
1168
1167
  stage: string;
1169
1168
  cmaNotRequiredReason?: string | null | undefined;
1170
1169
  cmaId?: string | null | undefined;
1171
1170
  buyerName?: string | null | undefined;
1171
+ isCmaRequired?: boolean | undefined;
1172
1172
  initialDepositStatus?: string | null | undefined;
1173
1173
  project?: {
1174
1174
  id: string;
@@ -1261,11 +1261,11 @@ export declare const cmaAccountPeriodRestResSchema: z.ZodObject<{
1261
1261
  propertyAddress: string;
1262
1262
  cmaBalanceCents: unknown;
1263
1263
  mtaBalanceCents: unknown;
1264
- isCmaRequired: boolean;
1265
1264
  stage: string;
1266
1265
  cmaNotRequiredReason?: string | null | undefined;
1267
1266
  cmaId?: string | null | undefined;
1268
1267
  buyerName?: string | null | undefined;
1268
+ isCmaRequired?: boolean | undefined;
1269
1269
  initialDepositStatus?: string | null | undefined;
1270
1270
  project?: {
1271
1271
  id: string;
@@ -365,11 +365,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
365
365
  propertyAddress: string;
366
366
  cmaBalanceCents: unknown;
367
367
  mtaBalanceCents: unknown;
368
- isCmaRequired: boolean;
369
368
  stage: string;
370
369
  cmaNotRequiredReason?: string | null | undefined;
371
370
  cmaId?: string | null | undefined;
372
371
  buyerName?: string | null | undefined;
372
+ isCmaRequired?: boolean | undefined;
373
373
  initialDepositStatus?: string | null | undefined;
374
374
  project?: {
375
375
  id: string;
@@ -463,11 +463,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
463
463
  propertyAddress: string;
464
464
  cmaBalanceCents: unknown;
465
465
  mtaBalanceCents: unknown;
466
- isCmaRequired: boolean;
467
466
  stage: string;
468
467
  cmaNotRequiredReason?: string | null | undefined;
469
468
  cmaId?: string | null | undefined;
470
469
  buyerName?: string | null | undefined;
470
+ isCmaRequired?: boolean | undefined;
471
471
  initialDepositStatus?: string | null | undefined;
472
472
  project?: {
473
473
  id: string;
@@ -560,11 +560,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
560
560
  propertyAddress: string;
561
561
  cmaBalanceCents: unknown;
562
562
  mtaBalanceCents: unknown;
563
- isCmaRequired: boolean;
564
563
  stage: string;
565
564
  cmaNotRequiredReason?: string | null | undefined;
566
565
  cmaId?: string | null | undefined;
567
566
  buyerName?: string | null | undefined;
567
+ isCmaRequired?: boolean | undefined;
568
568
  initialDepositStatus?: string | null | undefined;
569
569
  project?: {
570
570
  id: string;
@@ -959,11 +959,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
959
959
  propertyAddress: string;
960
960
  cmaBalanceCents: unknown;
961
961
  mtaBalanceCents: unknown;
962
- isCmaRequired: boolean;
963
962
  stage: string;
964
963
  cmaNotRequiredReason?: string | null | undefined;
965
964
  cmaId?: string | null | undefined;
966
965
  buyerName?: string | null | undefined;
966
+ isCmaRequired?: boolean | undefined;
967
967
  initialDepositStatus?: string | null | undefined;
968
968
  project?: {
969
969
  id: string;
@@ -1057,11 +1057,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1057
1057
  propertyAddress: string;
1058
1058
  cmaBalanceCents: unknown;
1059
1059
  mtaBalanceCents: unknown;
1060
- isCmaRequired: boolean;
1061
1060
  stage: string;
1062
1061
  cmaNotRequiredReason?: string | null | undefined;
1063
1062
  cmaId?: string | null | undefined;
1064
1063
  buyerName?: string | null | undefined;
1064
+ isCmaRequired?: boolean | undefined;
1065
1065
  initialDepositStatus?: string | null | undefined;
1066
1066
  project?: {
1067
1067
  id: string;
@@ -1154,11 +1154,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1154
1154
  propertyAddress: string;
1155
1155
  cmaBalanceCents: unknown;
1156
1156
  mtaBalanceCents: unknown;
1157
- isCmaRequired: boolean;
1158
1157
  stage: string;
1159
1158
  cmaNotRequiredReason?: string | null | undefined;
1160
1159
  cmaId?: string | null | undefined;
1161
1160
  buyerName?: string | null | undefined;
1161
+ isCmaRequired?: boolean | undefined;
1162
1162
  initialDepositStatus?: string | null | undefined;
1163
1163
  project?: {
1164
1164
  id: string;
@@ -1260,7 +1260,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1260
1260
  propertyAddress: z.ZodString;
1261
1261
  cmaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
1262
1262
  mtaBalanceCents: z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodBigInt, z.ZodNumber]>, z.ZodNumber>;
1263
- isCmaRequired: z.ZodBoolean;
1263
+ isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
1264
1264
  stage: z.ZodString;
1265
1265
  initialDepositStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1266
1266
  project: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
@@ -1653,11 +1653,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1653
1653
  propertyAddress: string;
1654
1654
  cmaBalanceCents: unknown;
1655
1655
  mtaBalanceCents: unknown;
1656
- isCmaRequired: boolean;
1657
1656
  stage: string;
1658
1657
  cmaNotRequiredReason?: string | null | undefined;
1659
1658
  cmaId?: string | null | undefined;
1660
1659
  buyerName?: string | null | undefined;
1660
+ isCmaRequired?: boolean | undefined;
1661
1661
  initialDepositStatus?: string | null | undefined;
1662
1662
  project?: {
1663
1663
  id: string;
@@ -1751,11 +1751,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1751
1751
  propertyAddress: string;
1752
1752
  cmaBalanceCents: unknown;
1753
1753
  mtaBalanceCents: unknown;
1754
- isCmaRequired: boolean;
1755
1754
  stage: string;
1756
1755
  cmaNotRequiredReason?: string | null | undefined;
1757
1756
  cmaId?: string | null | undefined;
1758
1757
  buyerName?: string | null | undefined;
1758
+ isCmaRequired?: boolean | undefined;
1759
1759
  initialDepositStatus?: string | null | undefined;
1760
1760
  project?: {
1761
1761
  id: string;
@@ -1848,11 +1848,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
1848
1848
  propertyAddress: string;
1849
1849
  cmaBalanceCents: unknown;
1850
1850
  mtaBalanceCents: unknown;
1851
- isCmaRequired: boolean;
1852
1851
  stage: string;
1853
1852
  cmaNotRequiredReason?: string | null | undefined;
1854
1853
  cmaId?: string | null | undefined;
1855
1854
  buyerName?: string | null | undefined;
1855
+ isCmaRequired?: boolean | undefined;
1856
1856
  initialDepositStatus?: string | null | undefined;
1857
1857
  project?: {
1858
1858
  id: string;
@@ -2247,11 +2247,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
2247
2247
  propertyAddress: string;
2248
2248
  cmaBalanceCents: unknown;
2249
2249
  mtaBalanceCents: unknown;
2250
- isCmaRequired: boolean;
2251
2250
  stage: string;
2252
2251
  cmaNotRequiredReason?: string | null | undefined;
2253
2252
  cmaId?: string | null | undefined;
2254
2253
  buyerName?: string | null | undefined;
2254
+ isCmaRequired?: boolean | undefined;
2255
2255
  initialDepositStatus?: string | null | undefined;
2256
2256
  project?: {
2257
2257
  id: string;
@@ -2345,11 +2345,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
2345
2345
  propertyAddress: string;
2346
2346
  cmaBalanceCents: unknown;
2347
2347
  mtaBalanceCents: unknown;
2348
- isCmaRequired: boolean;
2349
2348
  stage: string;
2350
2349
  cmaNotRequiredReason?: string | null | undefined;
2351
2350
  cmaId?: string | null | undefined;
2352
2351
  buyerName?: string | null | undefined;
2352
+ isCmaRequired?: boolean | undefined;
2353
2353
  initialDepositStatus?: string | null | undefined;
2354
2354
  project?: {
2355
2355
  id: string;
@@ -2442,11 +2442,11 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
2442
2442
  propertyAddress: string;
2443
2443
  cmaBalanceCents: unknown;
2444
2444
  mtaBalanceCents: unknown;
2445
- isCmaRequired: boolean;
2446
2445
  stage: string;
2447
2446
  cmaNotRequiredReason?: string | null | undefined;
2448
2447
  cmaId?: string | null | undefined;
2449
2448
  buyerName?: string | null | undefined;
2449
+ isCmaRequired?: boolean | undefined;
2450
2450
  initialDepositStatus?: string | null | undefined;
2451
2451
  project?: {
2452
2452
  id: string;
@@ -48,7 +48,7 @@ export declare const cmaTransactionRestResBaseSchema: z.ZodObject<{
48
48
  propertyAddress: z.ZodString;
49
49
  cmaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
50
50
  mtaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
51
- isCmaRequired: z.ZodBoolean;
51
+ isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
52
52
  stage: z.ZodString;
53
53
  initialDepositStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54
54
  project: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
@@ -414,11 +414,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
414
414
  propertyAddress: string;
415
415
  cmaBalanceCents: unknown;
416
416
  mtaBalanceCents: unknown;
417
- isCmaRequired: boolean;
418
417
  stage: string;
419
418
  cmaNotRequiredReason?: string | null | undefined;
420
419
  cmaId?: string | null | undefined;
421
420
  buyerName?: string | null | undefined;
421
+ isCmaRequired?: boolean | undefined;
422
422
  initialDepositStatus?: string | null | undefined;
423
423
  project?: {
424
424
  id: string;
@@ -513,11 +513,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
513
513
  propertyAddress: string;
514
514
  cmaBalanceCents: unknown;
515
515
  mtaBalanceCents: unknown;
516
- isCmaRequired: boolean;
517
516
  stage: string;
518
517
  cmaNotRequiredReason?: string | null | undefined;
519
518
  cmaId?: string | null | undefined;
520
519
  buyerName?: string | null | undefined;
520
+ isCmaRequired?: boolean | undefined;
521
521
  initialDepositStatus?: string | null | undefined;
522
522
  project?: {
523
523
  id: string;
@@ -611,11 +611,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
611
611
  propertyAddress: string;
612
612
  cmaBalanceCents: unknown;
613
613
  mtaBalanceCents: unknown;
614
- isCmaRequired: boolean;
615
614
  stage: string;
616
615
  cmaNotRequiredReason?: string | null | undefined;
617
616
  cmaId?: string | null | undefined;
618
617
  buyerName?: string | null | undefined;
618
+ isCmaRequired?: boolean | undefined;
619
619
  initialDepositStatus?: string | null | undefined;
620
620
  project?: {
621
621
  id: string;
@@ -1018,11 +1018,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1018
1018
  propertyAddress: string;
1019
1019
  cmaBalanceCents: unknown;
1020
1020
  mtaBalanceCents: unknown;
1021
- isCmaRequired: boolean;
1022
1021
  stage: string;
1023
1022
  cmaNotRequiredReason?: string | null | undefined;
1024
1023
  cmaId?: string | null | undefined;
1025
1024
  buyerName?: string | null | undefined;
1025
+ isCmaRequired?: boolean | undefined;
1026
1026
  initialDepositStatus?: string | null | undefined;
1027
1027
  project?: {
1028
1028
  id: string;
@@ -1117,11 +1117,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1117
1117
  propertyAddress: string;
1118
1118
  cmaBalanceCents: unknown;
1119
1119
  mtaBalanceCents: unknown;
1120
- isCmaRequired: boolean;
1121
1120
  stage: string;
1122
1121
  cmaNotRequiredReason?: string | null | undefined;
1123
1122
  cmaId?: string | null | undefined;
1124
1123
  buyerName?: string | null | undefined;
1124
+ isCmaRequired?: boolean | undefined;
1125
1125
  initialDepositStatus?: string | null | undefined;
1126
1126
  project?: {
1127
1127
  id: string;
@@ -1215,11 +1215,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1215
1215
  propertyAddress: string;
1216
1216
  cmaBalanceCents: unknown;
1217
1217
  mtaBalanceCents: unknown;
1218
- isCmaRequired: boolean;
1219
1218
  stage: string;
1220
1219
  cmaNotRequiredReason?: string | null | undefined;
1221
1220
  cmaId?: string | null | undefined;
1222
1221
  buyerName?: string | null | undefined;
1222
+ isCmaRequired?: boolean | undefined;
1223
1223
  initialDepositStatus?: string | null | undefined;
1224
1224
  project?: {
1225
1225
  id: string;
@@ -1624,11 +1624,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1624
1624
  propertyAddress: string;
1625
1625
  cmaBalanceCents: unknown;
1626
1626
  mtaBalanceCents: unknown;
1627
- isCmaRequired: boolean;
1628
1627
  stage: string;
1629
1628
  cmaNotRequiredReason?: string | null | undefined;
1630
1629
  cmaId?: string | null | undefined;
1631
1630
  buyerName?: string | null | undefined;
1631
+ isCmaRequired?: boolean | undefined;
1632
1632
  initialDepositStatus?: string | null | undefined;
1633
1633
  project?: {
1634
1634
  id: string;
@@ -1723,11 +1723,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1723
1723
  propertyAddress: string;
1724
1724
  cmaBalanceCents: unknown;
1725
1725
  mtaBalanceCents: unknown;
1726
- isCmaRequired: boolean;
1727
1726
  stage: string;
1728
1727
  cmaNotRequiredReason?: string | null | undefined;
1729
1728
  cmaId?: string | null | undefined;
1730
1729
  buyerName?: string | null | undefined;
1730
+ isCmaRequired?: boolean | undefined;
1731
1731
  initialDepositStatus?: string | null | undefined;
1732
1732
  project?: {
1733
1733
  id: string;
@@ -1821,11 +1821,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
1821
1821
  propertyAddress: string;
1822
1822
  cmaBalanceCents: unknown;
1823
1823
  mtaBalanceCents: unknown;
1824
- isCmaRequired: boolean;
1825
1824
  stage: string;
1826
1825
  cmaNotRequiredReason?: string | null | undefined;
1827
1826
  cmaId?: string | null | undefined;
1828
1827
  buyerName?: string | null | undefined;
1828
+ isCmaRequired?: boolean | undefined;
1829
1829
  initialDepositStatus?: string | null | undefined;
1830
1830
  project?: {
1831
1831
  id: string;
@@ -2228,11 +2228,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2228
2228
  propertyAddress: string;
2229
2229
  cmaBalanceCents: unknown;
2230
2230
  mtaBalanceCents: unknown;
2231
- isCmaRequired: boolean;
2232
2231
  stage: string;
2233
2232
  cmaNotRequiredReason?: string | null | undefined;
2234
2233
  cmaId?: string | null | undefined;
2235
2234
  buyerName?: string | null | undefined;
2235
+ isCmaRequired?: boolean | undefined;
2236
2236
  initialDepositStatus?: string | null | undefined;
2237
2237
  project?: {
2238
2238
  id: string;
@@ -2327,11 +2327,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2327
2327
  propertyAddress: string;
2328
2328
  cmaBalanceCents: unknown;
2329
2329
  mtaBalanceCents: unknown;
2330
- isCmaRequired: boolean;
2331
2330
  stage: string;
2332
2331
  cmaNotRequiredReason?: string | null | undefined;
2333
2332
  cmaId?: string | null | undefined;
2334
2333
  buyerName?: string | null | undefined;
2334
+ isCmaRequired?: boolean | undefined;
2335
2335
  initialDepositStatus?: string | null | undefined;
2336
2336
  project?: {
2337
2337
  id: string;
@@ -2425,11 +2425,11 @@ export declare const mtaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
2425
2425
  propertyAddress: string;
2426
2426
  cmaBalanceCents: unknown;
2427
2427
  mtaBalanceCents: unknown;
2428
- isCmaRequired: boolean;
2429
2428
  stage: string;
2430
2429
  cmaNotRequiredReason?: string | null | undefined;
2431
2430
  cmaId?: string | null | undefined;
2432
2431
  buyerName?: string | null | undefined;
2432
+ isCmaRequired?: boolean | undefined;
2433
2433
  initialDepositStatus?: string | null | undefined;
2434
2434
  project?: {
2435
2435
  id: string;