@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.
- package/dist/cjs/constants/common/package-version.constant.d.ts +1 -1
- package/dist/cjs/index.cjs +538 -427
- package/dist/cjs/schemas/cma/cma.rest.schema.d.ts +7 -7
- package/dist/cjs/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +12 -12
- package/dist/cjs/schemas/cma-account-period/cma-account-period.rest.schema.d.ts +7 -7
- package/dist/cjs/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +13 -13
- package/dist/cjs/schemas/cma-transaction/cma-transaction.rest.schema.d.ts +1 -1
- package/dist/cjs/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +12 -12
- package/dist/cjs/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +6 -6
- package/dist/cjs/schemas/mta-transaction/mta-transaction.entity.schema.d.ts +1 -1
- package/dist/cjs/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +1 -1
- package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.entity.schema.d.ts +2 -2
- package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +99 -99
- package/dist/cjs/schemas/payout/payout-provision-data.entity.schema.d.ts +2 -2
- package/dist/cjs/schemas/payout/payout.entity.schema.d.ts +2 -2
- package/dist/cjs/schemas/payout/payout.rest.schema.d.ts +132 -132
- package/dist/cjs/schemas/payout/settlement-payout/provision-data.settlement-payout.entity.schema.d.ts +2 -2
- package/dist/cjs/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +13 -13
- package/dist/cjs/schemas/property/property.entity.schema.d.ts +2 -2
- package/dist/cjs/schemas/property/property.rest.schema.d.ts +14 -14
- package/dist/esm/constants/common/package-version.constant.d.ts +1 -1
- package/dist/esm/index.js +120 -111
- package/dist/esm/schemas/cma/cma.rest.schema.d.ts +7 -7
- package/dist/esm/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +12 -12
- package/dist/esm/schemas/cma-account-period/cma-account-period.rest.schema.d.ts +7 -7
- package/dist/esm/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +13 -13
- package/dist/esm/schemas/cma-transaction/cma-transaction.rest.schema.d.ts +1 -1
- package/dist/esm/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +12 -12
- package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +6 -6
- package/dist/esm/schemas/mta-transaction/mta-transaction.entity.schema.d.ts +1 -1
- package/dist/esm/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +1 -1
- package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.entity.schema.d.ts +2 -2
- package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +99 -99
- package/dist/esm/schemas/payout/payout-provision-data.entity.schema.d.ts +2 -2
- package/dist/esm/schemas/payout/payout.entity.schema.d.ts +2 -2
- package/dist/esm/schemas/payout/payout.rest.schema.d.ts +132 -132
- package/dist/esm/schemas/payout/settlement-payout/provision-data.settlement-payout.entity.schema.d.ts +2 -2
- package/dist/esm/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +13 -13
- package/dist/esm/schemas/property/property.entity.schema.d.ts +2 -2
- package/dist/esm/schemas/property/property.rest.schema.d.ts +14 -14
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ export declare const settlementPayoutPaymentEntitySchema: z.ZodObject<{
|
|
|
65
65
|
balanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
66
66
|
cmaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
67
67
|
mtaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
68
|
-
isCmaRequired: z.ZodBoolean
|
|
68
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
69
69
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
70
70
|
stage: z.ZodString;
|
|
71
71
|
status: z.ZodString;
|
|
@@ -158,7 +158,7 @@ export declare const settlementPayoutProvisionDataEntitySchema: z.ZodObject<{
|
|
|
158
158
|
balanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
159
159
|
cmaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
160
160
|
mtaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
161
|
-
isCmaRequired: z.ZodBoolean
|
|
161
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
162
162
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
163
163
|
stage: z.ZodString;
|
|
164
164
|
status: z.ZodString;
|
|
@@ -29,7 +29,7 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
29
29
|
buyerName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30
30
|
lotDetail: z.ZodNullable<z.ZodString>;
|
|
31
31
|
propertyAddress: z.ZodString;
|
|
32
|
-
isCmaRequired: z.ZodBoolean
|
|
32
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
33
33
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
stage: z.ZodString;
|
|
35
35
|
status: z.ZodString;
|
|
@@ -479,11 +479,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
479
479
|
propertyAddress: string;
|
|
480
480
|
cmaBalanceCents: unknown;
|
|
481
481
|
mtaBalanceCents: unknown;
|
|
482
|
-
isCmaRequired: boolean;
|
|
483
482
|
stage: string;
|
|
484
483
|
cmaNotRequiredReason?: string | null | undefined;
|
|
485
484
|
cmaId?: string | null | undefined;
|
|
486
485
|
buyerName?: string | null | undefined;
|
|
486
|
+
isCmaRequired?: boolean | undefined;
|
|
487
487
|
initialDepositStatus?: string | null | undefined;
|
|
488
488
|
project?: {
|
|
489
489
|
id: string;
|
|
@@ -577,11 +577,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
577
577
|
propertyAddress: string;
|
|
578
578
|
cmaBalanceCents: unknown;
|
|
579
579
|
mtaBalanceCents: unknown;
|
|
580
|
-
isCmaRequired: boolean;
|
|
581
580
|
stage: string;
|
|
582
581
|
cmaNotRequiredReason?: string | null | undefined;
|
|
583
582
|
cmaId?: string | null | undefined;
|
|
584
583
|
buyerName?: string | null | undefined;
|
|
584
|
+
isCmaRequired?: boolean | undefined;
|
|
585
585
|
initialDepositStatus?: string | null | undefined;
|
|
586
586
|
project?: {
|
|
587
587
|
id: string;
|
|
@@ -674,11 +674,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
674
674
|
propertyAddress: string;
|
|
675
675
|
cmaBalanceCents: unknown;
|
|
676
676
|
mtaBalanceCents: unknown;
|
|
677
|
-
isCmaRequired: boolean;
|
|
678
677
|
stage: string;
|
|
679
678
|
cmaNotRequiredReason?: string | null | undefined;
|
|
680
679
|
cmaId?: string | null | undefined;
|
|
681
680
|
buyerName?: string | null | undefined;
|
|
681
|
+
isCmaRequired?: boolean | undefined;
|
|
682
682
|
initialDepositStatus?: string | null | undefined;
|
|
683
683
|
project?: {
|
|
684
684
|
id: string;
|
|
@@ -1073,11 +1073,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1073
1073
|
propertyAddress: string;
|
|
1074
1074
|
cmaBalanceCents: unknown;
|
|
1075
1075
|
mtaBalanceCents: unknown;
|
|
1076
|
-
isCmaRequired: boolean;
|
|
1077
1076
|
stage: string;
|
|
1078
1077
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1079
1078
|
cmaId?: string | null | undefined;
|
|
1080
1079
|
buyerName?: string | null | undefined;
|
|
1080
|
+
isCmaRequired?: boolean | undefined;
|
|
1081
1081
|
initialDepositStatus?: string | null | undefined;
|
|
1082
1082
|
project?: {
|
|
1083
1083
|
id: string;
|
|
@@ -1171,11 +1171,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1171
1171
|
propertyAddress: string;
|
|
1172
1172
|
cmaBalanceCents: unknown;
|
|
1173
1173
|
mtaBalanceCents: unknown;
|
|
1174
|
-
isCmaRequired: boolean;
|
|
1175
1174
|
stage: string;
|
|
1176
1175
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1177
1176
|
cmaId?: string | null | undefined;
|
|
1178
1177
|
buyerName?: string | null | undefined;
|
|
1178
|
+
isCmaRequired?: boolean | undefined;
|
|
1179
1179
|
initialDepositStatus?: string | null | undefined;
|
|
1180
1180
|
project?: {
|
|
1181
1181
|
id: string;
|
|
@@ -1268,11 +1268,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1268
1268
|
propertyAddress: string;
|
|
1269
1269
|
cmaBalanceCents: unknown;
|
|
1270
1270
|
mtaBalanceCents: unknown;
|
|
1271
|
-
isCmaRequired: boolean;
|
|
1272
1271
|
stage: string;
|
|
1273
1272
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1274
1273
|
cmaId?: string | null | undefined;
|
|
1275
1274
|
buyerName?: string | null | undefined;
|
|
1275
|
+
isCmaRequired?: boolean | undefined;
|
|
1276
1276
|
initialDepositStatus?: string | null | undefined;
|
|
1277
1277
|
project?: {
|
|
1278
1278
|
id: string;
|
|
@@ -1676,11 +1676,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1676
1676
|
propertyAddress: string;
|
|
1677
1677
|
cmaBalanceCents: unknown;
|
|
1678
1678
|
mtaBalanceCents: unknown;
|
|
1679
|
-
isCmaRequired: boolean;
|
|
1680
1679
|
stage: string;
|
|
1681
1680
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1682
1681
|
cmaId?: string | null | undefined;
|
|
1683
1682
|
buyerName?: string | null | undefined;
|
|
1683
|
+
isCmaRequired?: boolean | undefined;
|
|
1684
1684
|
initialDepositStatus?: string | null | undefined;
|
|
1685
1685
|
project?: {
|
|
1686
1686
|
id: string;
|
|
@@ -1775,11 +1775,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1775
1775
|
propertyAddress: string;
|
|
1776
1776
|
cmaBalanceCents: unknown;
|
|
1777
1777
|
mtaBalanceCents: unknown;
|
|
1778
|
-
isCmaRequired: boolean;
|
|
1779
1778
|
stage: string;
|
|
1780
1779
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1781
1780
|
cmaId?: string | null | undefined;
|
|
1782
1781
|
buyerName?: string | null | undefined;
|
|
1782
|
+
isCmaRequired?: boolean | undefined;
|
|
1783
1783
|
initialDepositStatus?: string | null | undefined;
|
|
1784
1784
|
project?: {
|
|
1785
1785
|
id: string;
|
|
@@ -1873,11 +1873,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
1873
1873
|
propertyAddress: string;
|
|
1874
1874
|
cmaBalanceCents: unknown;
|
|
1875
1875
|
mtaBalanceCents: unknown;
|
|
1876
|
-
isCmaRequired: boolean;
|
|
1877
1876
|
stage: string;
|
|
1878
1877
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1879
1878
|
cmaId?: string | null | undefined;
|
|
1880
1879
|
buyerName?: string | null | undefined;
|
|
1880
|
+
isCmaRequired?: boolean | undefined;
|
|
1881
1881
|
initialDepositStatus?: string | null | undefined;
|
|
1882
1882
|
project?: {
|
|
1883
1883
|
id: string;
|
|
@@ -2280,11 +2280,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
2280
2280
|
propertyAddress: string;
|
|
2281
2281
|
cmaBalanceCents: unknown;
|
|
2282
2282
|
mtaBalanceCents: unknown;
|
|
2283
|
-
isCmaRequired: boolean;
|
|
2284
2283
|
stage: string;
|
|
2285
2284
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2286
2285
|
cmaId?: string | null | undefined;
|
|
2287
2286
|
buyerName?: string | null | undefined;
|
|
2287
|
+
isCmaRequired?: boolean | undefined;
|
|
2288
2288
|
initialDepositStatus?: string | null | undefined;
|
|
2289
2289
|
project?: {
|
|
2290
2290
|
id: string;
|
|
@@ -2379,11 +2379,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
2379
2379
|
propertyAddress: string;
|
|
2380
2380
|
cmaBalanceCents: unknown;
|
|
2381
2381
|
mtaBalanceCents: unknown;
|
|
2382
|
-
isCmaRequired: boolean;
|
|
2383
2382
|
stage: string;
|
|
2384
2383
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2385
2384
|
cmaId?: string | null | undefined;
|
|
2386
2385
|
buyerName?: string | null | undefined;
|
|
2386
|
+
isCmaRequired?: boolean | undefined;
|
|
2387
2387
|
initialDepositStatus?: string | null | undefined;
|
|
2388
2388
|
project?: {
|
|
2389
2389
|
id: string;
|
|
@@ -2477,11 +2477,11 @@ export declare const payoutTransactionRestResSchema: z.ZodObject<{
|
|
|
2477
2477
|
propertyAddress: string;
|
|
2478
2478
|
cmaBalanceCents: unknown;
|
|
2479
2479
|
mtaBalanceCents: unknown;
|
|
2480
|
-
isCmaRequired: boolean;
|
|
2481
2480
|
stage: string;
|
|
2482
2481
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2483
2482
|
cmaId?: string | null | undefined;
|
|
2484
2483
|
buyerName?: string | null | undefined;
|
|
2484
|
+
isCmaRequired?: boolean | undefined;
|
|
2485
2485
|
initialDepositStatus?: string | null | undefined;
|
|
2486
2486
|
project?: {
|
|
2487
2487
|
id: string;
|
|
@@ -9,7 +9,7 @@ export declare const propertyEntitySchema: z.ZodObject<{
|
|
|
9
9
|
balanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
10
10
|
cmaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
11
11
|
mtaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
12
|
-
isCmaRequired: z.ZodBoolean
|
|
12
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
13
13
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
stage: z.ZodString;
|
|
15
15
|
status: z.ZodString;
|
|
@@ -32,7 +32,7 @@ export declare const propertyNestedEntitySchema: z.ZodObject<{
|
|
|
32
32
|
balanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
33
33
|
cmaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
34
34
|
mtaBalanceCents: z.ZodPipe<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodCoercedNumber<unknown>]>, z.ZodBigInt>;
|
|
35
|
-
isCmaRequired: z.ZodBoolean
|
|
35
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
36
36
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
37
|
stage: z.ZodString;
|
|
38
38
|
status: z.ZodString;
|
|
@@ -6,7 +6,7 @@ export declare const propertyRestResBaseSchema: z.ZodObject<{
|
|
|
6
6
|
buyerName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
7
|
lotDetail: z.ZodNullable<z.ZodString>;
|
|
8
8
|
propertyAddress: z.ZodString;
|
|
9
|
-
isCmaRequired: z.ZodBoolean
|
|
9
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
10
10
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
stage: z.ZodString;
|
|
12
12
|
status: z.ZodString;
|
|
@@ -28,7 +28,7 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
28
28
|
buyerName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
29
29
|
lotDetail: z.ZodNullable<z.ZodString>;
|
|
30
30
|
propertyAddress: z.ZodString;
|
|
31
|
-
isCmaRequired: z.ZodBoolean
|
|
31
|
+
isCmaRequired: z.ZodDefault<z.ZodPrefault<z.ZodBoolean>>;
|
|
32
32
|
cmaNotRequiredReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33
33
|
stage: z.ZodString;
|
|
34
34
|
status: z.ZodString;
|
|
@@ -478,11 +478,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
478
478
|
propertyAddress: string;
|
|
479
479
|
cmaBalanceCents: unknown;
|
|
480
480
|
mtaBalanceCents: unknown;
|
|
481
|
-
isCmaRequired: boolean;
|
|
482
481
|
stage: string;
|
|
483
482
|
cmaNotRequiredReason?: string | null | undefined;
|
|
484
483
|
cmaId?: string | null | undefined;
|
|
485
484
|
buyerName?: string | null | undefined;
|
|
485
|
+
isCmaRequired?: boolean | undefined;
|
|
486
486
|
initialDepositStatus?: string | null | undefined;
|
|
487
487
|
project?: {
|
|
488
488
|
id: string;
|
|
@@ -576,11 +576,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
576
576
|
propertyAddress: string;
|
|
577
577
|
cmaBalanceCents: unknown;
|
|
578
578
|
mtaBalanceCents: unknown;
|
|
579
|
-
isCmaRequired: boolean;
|
|
580
579
|
stage: string;
|
|
581
580
|
cmaNotRequiredReason?: string | null | undefined;
|
|
582
581
|
cmaId?: string | null | undefined;
|
|
583
582
|
buyerName?: string | null | undefined;
|
|
583
|
+
isCmaRequired?: boolean | undefined;
|
|
584
584
|
initialDepositStatus?: string | null | undefined;
|
|
585
585
|
project?: {
|
|
586
586
|
id: string;
|
|
@@ -673,11 +673,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
673
673
|
propertyAddress: string;
|
|
674
674
|
cmaBalanceCents: unknown;
|
|
675
675
|
mtaBalanceCents: unknown;
|
|
676
|
-
isCmaRequired: boolean;
|
|
677
676
|
stage: string;
|
|
678
677
|
cmaNotRequiredReason?: string | null | undefined;
|
|
679
678
|
cmaId?: string | null | undefined;
|
|
680
679
|
buyerName?: string | null | undefined;
|
|
680
|
+
isCmaRequired?: boolean | undefined;
|
|
681
681
|
initialDepositStatus?: string | null | undefined;
|
|
682
682
|
project?: {
|
|
683
683
|
id: string;
|
|
@@ -1072,11 +1072,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1072
1072
|
propertyAddress: string;
|
|
1073
1073
|
cmaBalanceCents: unknown;
|
|
1074
1074
|
mtaBalanceCents: unknown;
|
|
1075
|
-
isCmaRequired: boolean;
|
|
1076
1075
|
stage: string;
|
|
1077
1076
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1078
1077
|
cmaId?: string | null | undefined;
|
|
1079
1078
|
buyerName?: string | null | undefined;
|
|
1079
|
+
isCmaRequired?: boolean | undefined;
|
|
1080
1080
|
initialDepositStatus?: string | null | undefined;
|
|
1081
1081
|
project?: {
|
|
1082
1082
|
id: string;
|
|
@@ -1170,11 +1170,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1170
1170
|
propertyAddress: string;
|
|
1171
1171
|
cmaBalanceCents: unknown;
|
|
1172
1172
|
mtaBalanceCents: unknown;
|
|
1173
|
-
isCmaRequired: boolean;
|
|
1174
1173
|
stage: string;
|
|
1175
1174
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1176
1175
|
cmaId?: string | null | undefined;
|
|
1177
1176
|
buyerName?: string | null | undefined;
|
|
1177
|
+
isCmaRequired?: boolean | undefined;
|
|
1178
1178
|
initialDepositStatus?: string | null | undefined;
|
|
1179
1179
|
project?: {
|
|
1180
1180
|
id: string;
|
|
@@ -1267,11 +1267,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1267
1267
|
propertyAddress: string;
|
|
1268
1268
|
cmaBalanceCents: unknown;
|
|
1269
1269
|
mtaBalanceCents: unknown;
|
|
1270
|
-
isCmaRequired: boolean;
|
|
1271
1270
|
stage: string;
|
|
1272
1271
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1273
1272
|
cmaId?: string | null | undefined;
|
|
1274
1273
|
buyerName?: string | null | undefined;
|
|
1274
|
+
isCmaRequired?: boolean | undefined;
|
|
1275
1275
|
initialDepositStatus?: string | null | undefined;
|
|
1276
1276
|
project?: {
|
|
1277
1277
|
id: string;
|
|
@@ -1675,11 +1675,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1675
1675
|
propertyAddress: string;
|
|
1676
1676
|
cmaBalanceCents: unknown;
|
|
1677
1677
|
mtaBalanceCents: unknown;
|
|
1678
|
-
isCmaRequired: boolean;
|
|
1679
1678
|
stage: string;
|
|
1680
1679
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1681
1680
|
cmaId?: string | null | undefined;
|
|
1682
1681
|
buyerName?: string | null | undefined;
|
|
1682
|
+
isCmaRequired?: boolean | undefined;
|
|
1683
1683
|
initialDepositStatus?: string | null | undefined;
|
|
1684
1684
|
project?: {
|
|
1685
1685
|
id: string;
|
|
@@ -1774,11 +1774,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1774
1774
|
propertyAddress: string;
|
|
1775
1775
|
cmaBalanceCents: unknown;
|
|
1776
1776
|
mtaBalanceCents: unknown;
|
|
1777
|
-
isCmaRequired: boolean;
|
|
1778
1777
|
stage: string;
|
|
1779
1778
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1780
1779
|
cmaId?: string | null | undefined;
|
|
1781
1780
|
buyerName?: string | null | undefined;
|
|
1781
|
+
isCmaRequired?: boolean | undefined;
|
|
1782
1782
|
initialDepositStatus?: string | null | undefined;
|
|
1783
1783
|
project?: {
|
|
1784
1784
|
id: string;
|
|
@@ -1872,11 +1872,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
1872
1872
|
propertyAddress: string;
|
|
1873
1873
|
cmaBalanceCents: unknown;
|
|
1874
1874
|
mtaBalanceCents: unknown;
|
|
1875
|
-
isCmaRequired: boolean;
|
|
1876
1875
|
stage: string;
|
|
1877
1876
|
cmaNotRequiredReason?: string | null | undefined;
|
|
1878
1877
|
cmaId?: string | null | undefined;
|
|
1879
1878
|
buyerName?: string | null | undefined;
|
|
1879
|
+
isCmaRequired?: boolean | undefined;
|
|
1880
1880
|
initialDepositStatus?: string | null | undefined;
|
|
1881
1881
|
project?: {
|
|
1882
1882
|
id: string;
|
|
@@ -2279,11 +2279,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
2279
2279
|
propertyAddress: string;
|
|
2280
2280
|
cmaBalanceCents: unknown;
|
|
2281
2281
|
mtaBalanceCents: unknown;
|
|
2282
|
-
isCmaRequired: boolean;
|
|
2283
2282
|
stage: string;
|
|
2284
2283
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2285
2284
|
cmaId?: string | null | undefined;
|
|
2286
2285
|
buyerName?: string | null | undefined;
|
|
2286
|
+
isCmaRequired?: boolean | undefined;
|
|
2287
2287
|
initialDepositStatus?: string | null | undefined;
|
|
2288
2288
|
project?: {
|
|
2289
2289
|
id: string;
|
|
@@ -2378,11 +2378,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
2378
2378
|
propertyAddress: string;
|
|
2379
2379
|
cmaBalanceCents: unknown;
|
|
2380
2380
|
mtaBalanceCents: unknown;
|
|
2381
|
-
isCmaRequired: boolean;
|
|
2382
2381
|
stage: string;
|
|
2383
2382
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2384
2383
|
cmaId?: string | null | undefined;
|
|
2385
2384
|
buyerName?: string | null | undefined;
|
|
2385
|
+
isCmaRequired?: boolean | undefined;
|
|
2386
2386
|
initialDepositStatus?: string | null | undefined;
|
|
2387
2387
|
project?: {
|
|
2388
2388
|
id: string;
|
|
@@ -2476,11 +2476,11 @@ export declare const propertyRestResSchema: z.ZodObject<{
|
|
|
2476
2476
|
propertyAddress: string;
|
|
2477
2477
|
cmaBalanceCents: unknown;
|
|
2478
2478
|
mtaBalanceCents: unknown;
|
|
2479
|
-
isCmaRequired: boolean;
|
|
2480
2479
|
stage: string;
|
|
2481
2480
|
cmaNotRequiredReason?: string | null | undefined;
|
|
2482
2481
|
cmaId?: string | null | undefined;
|
|
2483
2482
|
buyerName?: string | null | undefined;
|
|
2483
|
+
isCmaRequired?: boolean | undefined;
|
|
2484
2484
|
initialDepositStatus?: string | null | undefined;
|
|
2485
2485
|
project?: {
|
|
2486
2486
|
id: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const PACKAGE_VERSION = "1.0.7";
|
|
2
2
|
//# sourceMappingURL=package-version.constant.d.ts.map
|