@mikemo-coposit/am-accounting-shared 0.0.21 → 1.0.1-dev.2
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/constants/common/package-version.constant.d.ts.map +1 -1
- package/dist/cjs/index.js +250 -147
- package/dist/cjs/schemas/mta/create-mta.rest.schema.d.ts +1 -0
- package/dist/cjs/schemas/mta/create-mta.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +8 -0
- package/dist/cjs/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +4 -0
- package/dist/cjs/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +3 -0
- package/dist/cjs/schemas/mta-transaction/mta-transaction.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +12 -0
- package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/payout/payout.rest.schema.d.ts +47 -0
- package/dist/cjs/schemas/payout/payout.rest.schema.d.ts.map +1 -1
- package/dist/cjs/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +5 -0
- package/dist/cjs/schemas/payout-transaction/payout-transaction.rest.entity.d.ts.map +1 -1
- package/dist/cjs/schemas/property/property.rest.schema.d.ts +4 -0
- package/dist/cjs/schemas/property/property.rest.schema.d.ts.map +1 -1
- package/dist/esm/constants/common/package-version.constant.d.ts +1 -1
- package/dist/esm/constants/common/package-version.constant.d.ts.map +1 -1
- package/dist/esm/index.mjs +198 -145
- package/dist/esm/schemas/mta/create-mta.rest.schema.d.ts +1 -0
- package/dist/esm/schemas/mta/create-mta.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +8 -0
- package/dist/esm/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +4 -0
- package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/mta-transaction/mta-transaction.rest.schema.d.ts +3 -0
- package/dist/esm/schemas/mta-transaction/mta-transaction.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +12 -0
- package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/payout/payout.rest.schema.d.ts +47 -0
- package/dist/esm/schemas/payout/payout.rest.schema.d.ts.map +1 -1
- package/dist/esm/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +5 -0
- package/dist/esm/schemas/payout-transaction/payout-transaction.rest.entity.d.ts.map +1 -1
- package/dist/esm/schemas/property/property.rest.schema.d.ts +4 -0
- package/dist/esm/schemas/property/property.rest.schema.d.ts.map +1 -1
- package/package.json +15 -22
package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ export declare const mtaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
310
310
|
amountStr?: string | null | undefined;
|
|
311
311
|
transactionNumber?: string | null | undefined;
|
|
312
312
|
isCancelable?: boolean | null | undefined;
|
|
313
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
313
314
|
}, {
|
|
314
315
|
id: string;
|
|
315
316
|
referenceId: string | null;
|
|
@@ -600,6 +601,7 @@ export declare const mtaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
600
601
|
} | null | undefined;
|
|
601
602
|
} & /*elided*/ any)[] | null | undefined;
|
|
602
603
|
reconciledTransactions?: z.input<typeof mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
604
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
603
605
|
}, z.core.$ZodTypeInternals<{
|
|
604
606
|
id: string;
|
|
605
607
|
referenceId: string | null;
|
|
@@ -900,6 +902,7 @@ export declare const mtaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
900
902
|
amountStr?: string | null | undefined;
|
|
901
903
|
transactionNumber?: string | null | undefined;
|
|
902
904
|
isCancelable?: boolean | null | undefined;
|
|
905
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
903
906
|
}, {
|
|
904
907
|
id: string;
|
|
905
908
|
referenceId: string | null;
|
|
@@ -1190,6 +1193,7 @@ export declare const mtaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
1190
1193
|
} | null | undefined;
|
|
1191
1194
|
} & /*elided*/ any)[] | null | undefined;
|
|
1192
1195
|
reconciledTransactions?: z.input<typeof mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1196
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
1193
1197
|
}>>>>;
|
|
1194
1198
|
accountPeriod: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
1195
1199
|
id: z.ZodUUID;
|
package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mta-reconciled-transaction.rest.schema.d.ts","sourceRoot":"","sources":["../../../../packages/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,qCAAqC
|
|
1
|
+
{"version":3,"file":"mta-reconciled-transaction.rest.schema.d.ts","sourceRoot":"","sources":["../../../../packages/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGhD,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC"}
|
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import { MtaTransactionInputType } from '../../constants';
|
|
3
3
|
import { mtaRestResSchema } from '../mta';
|
|
4
4
|
import { mtaReconciledTransactionRestResSchema } from '../mta-reconciled-transaction/mta-reconciled-transaction.rest.schema';
|
|
5
|
+
import { payoutEntitySchema } from '../payout';
|
|
5
6
|
export declare const mtaTransactionRestResBaseSchema: z.ZodObject<{
|
|
6
7
|
id: z.ZodUUID;
|
|
7
8
|
referenceId: z.ZodNullable<z.ZodString>;
|
|
@@ -119,6 +120,7 @@ type Input = z.input<typeof mtaTransactionRestResBaseSchema> & {
|
|
|
119
120
|
sourceTransaction?: Input | null | undefined;
|
|
120
121
|
subsequentTransactions?: Input[] | null | undefined;
|
|
121
122
|
reconciledTransactions?: z.input<typeof mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
123
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
122
124
|
};
|
|
123
125
|
type Output = z.output<typeof mtaTransactionRestResBaseSchema> & {
|
|
124
126
|
mta?: z.output<typeof mtaRestResSchema> | null | undefined;
|
|
@@ -135,6 +137,7 @@ type Output = z.output<typeof mtaTransactionRestResBaseSchema> & {
|
|
|
135
137
|
amountStr?: string | null | undefined;
|
|
136
138
|
transactionNumber?: string | null | undefined;
|
|
137
139
|
isCancelable?: boolean | null | undefined;
|
|
140
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
138
141
|
};
|
|
139
142
|
export declare const mtaTransactionRestResSchema: z.ZodType<Output, Input>;
|
|
140
143
|
export type MtaTransactionRestRes = z.infer<typeof mtaTransactionRestResSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mta-transaction.rest.schema.d.ts","sourceRoot":"","sources":["../../../../packages/schemas/mta-transaction/mta-transaction.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,uBAAuB,EAAwB,MAAM,iBAAiB,CAAC;AAIhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,OAAO,EAAE,qCAAqC,EAAE,MAAM,sEAAsE,CAAC;
|
|
1
|
+
{"version":3,"file":"mta-transaction.rest.schema.d.ts","sourceRoot":"","sources":["../../../../packages/schemas/mta-transaction/mta-transaction.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,uBAAuB,EAAwB,MAAM,iBAAiB,CAAC;AAIhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,OAAO,EAAE,qCAAqC,EAAE,MAAM,sEAAsE,CAAC;AAC7H,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAK/C,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiB1C,CAAC;AAEH,KAAK,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,GAAG;IAC7D,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1D,iBAAiB,CAAC,EAAE,KAAK,GAAG,IAAI,GAAG,SAAS,CAAC;IAC7C,sBAAsB,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACpD,sBAAsB,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACpG,MAAM,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CAChE,CAAC;AAEF,KAAK,MAAM,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,+BAA+B,CAAC,GAAG;IAC/D,GAAG,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC3D,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC9C,sBAAsB,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACrD,sBAAsB,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,qCAAqC,CAAC,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACrG,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,YAAY,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1C,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,sBAAsB,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACpD,oBAAoB,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IAClD,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACtC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC9C,YAAY,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1C,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,kBAAkB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CACjE,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAsC/D,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC"}
|
package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts
CHANGED
|
@@ -334,6 +334,7 @@ export declare const mtaToCmaPayoutSourceDetailRestSchema: z.ZodObject<{
|
|
|
334
334
|
amountStr?: string | null | undefined;
|
|
335
335
|
transactionNumber?: string | null | undefined;
|
|
336
336
|
isCancelable?: boolean | null | undefined;
|
|
337
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
337
338
|
}, {
|
|
338
339
|
id: string;
|
|
339
340
|
referenceId: string | null;
|
|
@@ -624,6 +625,7 @@ export declare const mtaToCmaPayoutSourceDetailRestSchema: z.ZodObject<{
|
|
|
624
625
|
} | null | undefined;
|
|
625
626
|
} & /*elided*/ any)[] | null | undefined;
|
|
626
627
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
628
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
627
629
|
}, z.core.$ZodTypeInternals<{
|
|
628
630
|
id: string;
|
|
629
631
|
referenceId: string | null;
|
|
@@ -924,6 +926,7 @@ export declare const mtaToCmaPayoutSourceDetailRestSchema: z.ZodObject<{
|
|
|
924
926
|
amountStr?: string | null | undefined;
|
|
925
927
|
transactionNumber?: string | null | undefined;
|
|
926
928
|
isCancelable?: boolean | null | undefined;
|
|
929
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
927
930
|
}, {
|
|
928
931
|
id: string;
|
|
929
932
|
referenceId: string | null;
|
|
@@ -1214,6 +1217,7 @@ export declare const mtaToCmaPayoutSourceDetailRestSchema: z.ZodObject<{
|
|
|
1214
1217
|
} | null | undefined;
|
|
1215
1218
|
} & /*elided*/ any)[] | null | undefined;
|
|
1216
1219
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1220
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
1217
1221
|
}>>>>>;
|
|
1218
1222
|
}, z.core.$loose>;
|
|
1219
1223
|
export declare const mtaToCmaPayoutTargetDetailRestSchema: z.ZodObject<{
|
|
@@ -2812,6 +2816,7 @@ export declare const mtaToCmaPayoutPaymentRestSchema: z.ZodObject<{
|
|
|
2812
2816
|
amountStr?: string | null | undefined;
|
|
2813
2817
|
transactionNumber?: string | null | undefined;
|
|
2814
2818
|
isCancelable?: boolean | null | undefined;
|
|
2819
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
2815
2820
|
}, {
|
|
2816
2821
|
id: string;
|
|
2817
2822
|
referenceId: string | null;
|
|
@@ -3102,6 +3107,7 @@ export declare const mtaToCmaPayoutPaymentRestSchema: z.ZodObject<{
|
|
|
3102
3107
|
} | null | undefined;
|
|
3103
3108
|
} & /*elided*/ any)[] | null | undefined;
|
|
3104
3109
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
3110
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
3105
3111
|
}, z.core.$ZodTypeInternals<{
|
|
3106
3112
|
id: string;
|
|
3107
3113
|
referenceId: string | null;
|
|
@@ -3402,6 +3408,7 @@ export declare const mtaToCmaPayoutPaymentRestSchema: z.ZodObject<{
|
|
|
3402
3408
|
amountStr?: string | null | undefined;
|
|
3403
3409
|
transactionNumber?: string | null | undefined;
|
|
3404
3410
|
isCancelable?: boolean | null | undefined;
|
|
3411
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
3405
3412
|
}, {
|
|
3406
3413
|
id: string;
|
|
3407
3414
|
referenceId: string | null;
|
|
@@ -3692,6 +3699,7 @@ export declare const mtaToCmaPayoutPaymentRestSchema: z.ZodObject<{
|
|
|
3692
3699
|
} | null | undefined;
|
|
3693
3700
|
} & /*elided*/ any)[] | null | undefined;
|
|
3694
3701
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
3702
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
3695
3703
|
}>>>>>;
|
|
3696
3704
|
}, z.core.$loose>;
|
|
3697
3705
|
targetDetail: z.ZodObject<{
|
|
@@ -5312,6 +5320,7 @@ export declare const mtaToCmaPayoutProvisionDataRestSchema: z.ZodObject<{
|
|
|
5312
5320
|
amountStr?: string | null | undefined;
|
|
5313
5321
|
transactionNumber?: string | null | undefined;
|
|
5314
5322
|
isCancelable?: boolean | null | undefined;
|
|
5323
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
5315
5324
|
}, {
|
|
5316
5325
|
id: string;
|
|
5317
5326
|
referenceId: string | null;
|
|
@@ -5602,6 +5611,7 @@ export declare const mtaToCmaPayoutProvisionDataRestSchema: z.ZodObject<{
|
|
|
5602
5611
|
} | null | undefined;
|
|
5603
5612
|
} & /*elided*/ any)[] | null | undefined;
|
|
5604
5613
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
5614
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
5605
5615
|
}, z.core.$ZodTypeInternals<{
|
|
5606
5616
|
id: string;
|
|
5607
5617
|
referenceId: string | null;
|
|
@@ -5902,6 +5912,7 @@ export declare const mtaToCmaPayoutProvisionDataRestSchema: z.ZodObject<{
|
|
|
5902
5912
|
amountStr?: string | null | undefined;
|
|
5903
5913
|
transactionNumber?: string | null | undefined;
|
|
5904
5914
|
isCancelable?: boolean | null | undefined;
|
|
5915
|
+
payout?: z.output<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
5905
5916
|
}, {
|
|
5906
5917
|
id: string;
|
|
5907
5918
|
referenceId: string | null;
|
|
@@ -6192,6 +6203,7 @@ export declare const mtaToCmaPayoutProvisionDataRestSchema: z.ZodObject<{
|
|
|
6192
6203
|
} | null | undefined;
|
|
6193
6204
|
} & /*elided*/ any)[] | null | undefined;
|
|
6194
6205
|
reconciledTransactions?: z.input<typeof import("../..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
6206
|
+
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
6195
6207
|
}>>>>>;
|
|
6196
6208
|
}, z.core.$loose>;
|
|
6197
6209
|
targetDetail: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provision-data.mta-to-cma-payout.rest.schema.d.ts","sourceRoot":"","sources":["../../../../../packages/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,oCAAoC
|
|
1
|
+
{"version":3,"file":"provision-data.mta-to-cma-payout.rest.schema.d.ts","sourceRoot":"","sources":["../../../../../packages/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIvC,CAAC;AAEX,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGvC,CAAC;AAEX,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG1C,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIxC,CAAC;AAEX,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC"}
|
|
@@ -2248,6 +2248,7 @@ export declare const mtaToCmaPayoutRestResSchema: z.ZodObject<{
|
|
|
2248
2248
|
amountStr?: string | null | undefined;
|
|
2249
2249
|
transactionNumber?: string | null | undefined;
|
|
2250
2250
|
isCancelable?: boolean | null | undefined;
|
|
2251
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
2251
2252
|
}, {
|
|
2252
2253
|
id: string;
|
|
2253
2254
|
referenceId: string | null;
|
|
@@ -2538,6 +2539,7 @@ export declare const mtaToCmaPayoutRestResSchema: z.ZodObject<{
|
|
|
2538
2539
|
} | null | undefined;
|
|
2539
2540
|
} & /*elided*/ any)[] | null | undefined;
|
|
2540
2541
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2542
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
2541
2543
|
}, z.core.$ZodTypeInternals<{
|
|
2542
2544
|
id: string;
|
|
2543
2545
|
referenceId: string | null;
|
|
@@ -2838,6 +2840,7 @@ export declare const mtaToCmaPayoutRestResSchema: z.ZodObject<{
|
|
|
2838
2840
|
amountStr?: string | null | undefined;
|
|
2839
2841
|
transactionNumber?: string | null | undefined;
|
|
2840
2842
|
isCancelable?: boolean | null | undefined;
|
|
2843
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
2841
2844
|
}, {
|
|
2842
2845
|
id: string;
|
|
2843
2846
|
referenceId: string | null;
|
|
@@ -3128,6 +3131,7 @@ export declare const mtaToCmaPayoutRestResSchema: z.ZodObject<{
|
|
|
3128
3131
|
} | null | undefined;
|
|
3129
3132
|
} & /*elided*/ any)[] | null | undefined;
|
|
3130
3133
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
3134
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
3131
3135
|
}>>>>>;
|
|
3132
3136
|
}, z.core.$strip>>>>;
|
|
3133
3137
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -3459,6 +3463,7 @@ export declare const mtaToCmaPayoutRestResSchema: z.ZodObject<{
|
|
|
3459
3463
|
amountStr?: string | null | undefined;
|
|
3460
3464
|
transactionNumber?: string | null | undefined;
|
|
3461
3465
|
isCancelable?: boolean | null | undefined;
|
|
3466
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
3462
3467
|
}, {
|
|
3463
3468
|
[x: string]: unknown;
|
|
3464
3469
|
id: string;
|
|
@@ -5624,6 +5629,7 @@ export declare const mtaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
5624
5629
|
amountStr?: string | null | undefined;
|
|
5625
5630
|
transactionNumber?: string | null | undefined;
|
|
5626
5631
|
isCancelable?: boolean | null | undefined;
|
|
5632
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
5627
5633
|
}, {
|
|
5628
5634
|
id: string;
|
|
5629
5635
|
referenceId: string | null;
|
|
@@ -5914,6 +5920,7 @@ export declare const mtaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
5914
5920
|
} | null | undefined;
|
|
5915
5921
|
} & /*elided*/ any)[] | null | undefined;
|
|
5916
5922
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
5923
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
5917
5924
|
}, z.core.$ZodTypeInternals<{
|
|
5918
5925
|
id: string;
|
|
5919
5926
|
referenceId: string | null;
|
|
@@ -6214,6 +6221,7 @@ export declare const mtaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
6214
6221
|
amountStr?: string | null | undefined;
|
|
6215
6222
|
transactionNumber?: string | null | undefined;
|
|
6216
6223
|
isCancelable?: boolean | null | undefined;
|
|
6224
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
6217
6225
|
}, {
|
|
6218
6226
|
id: string;
|
|
6219
6227
|
referenceId: string | null;
|
|
@@ -6504,6 +6512,7 @@ export declare const mtaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
6504
6512
|
} | null | undefined;
|
|
6505
6513
|
} & /*elided*/ any)[] | null | undefined;
|
|
6506
6514
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
6515
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
6507
6516
|
}>>>>>;
|
|
6508
6517
|
}, z.core.$strip>>>>;
|
|
6509
6518
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -6835,6 +6844,7 @@ export declare const mtaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
6835
6844
|
amountStr?: string | null | undefined;
|
|
6836
6845
|
transactionNumber?: string | null | undefined;
|
|
6837
6846
|
isCancelable?: boolean | null | undefined;
|
|
6847
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
6838
6848
|
}, {
|
|
6839
6849
|
[x: string]: unknown;
|
|
6840
6850
|
id: string;
|
|
@@ -8953,6 +8963,7 @@ export declare const cmaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
8953
8963
|
amountStr?: string | null | undefined;
|
|
8954
8964
|
transactionNumber?: string | null | undefined;
|
|
8955
8965
|
isCancelable?: boolean | null | undefined;
|
|
8966
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
8956
8967
|
}, {
|
|
8957
8968
|
id: string;
|
|
8958
8969
|
referenceId: string | null;
|
|
@@ -9243,6 +9254,7 @@ export declare const cmaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
9243
9254
|
} | null | undefined;
|
|
9244
9255
|
} & /*elided*/ any)[] | null | undefined;
|
|
9245
9256
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
9257
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
9246
9258
|
}, z.core.$ZodTypeInternals<{
|
|
9247
9259
|
id: string;
|
|
9248
9260
|
referenceId: string | null;
|
|
@@ -9543,6 +9555,7 @@ export declare const cmaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
9543
9555
|
amountStr?: string | null | undefined;
|
|
9544
9556
|
transactionNumber?: string | null | undefined;
|
|
9545
9557
|
isCancelable?: boolean | null | undefined;
|
|
9558
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
9546
9559
|
}, {
|
|
9547
9560
|
id: string;
|
|
9548
9561
|
referenceId: string | null;
|
|
@@ -9833,6 +9846,7 @@ export declare const cmaSettlementPayoutRestResSchema: z.ZodObject<{
|
|
|
9833
9846
|
} | null | undefined;
|
|
9834
9847
|
} & /*elided*/ any)[] | null | undefined;
|
|
9835
9848
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
9849
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
9836
9850
|
}>>>>>;
|
|
9837
9851
|
}, z.core.$strip>>>>;
|
|
9838
9852
|
triggerDetails: z.ZodNullable<z.ZodString>;
|
|
@@ -11969,6 +11983,7 @@ export declare const unknownPayoutRestResSchema: z.ZodObject<{
|
|
|
11969
11983
|
amountStr?: string | null | undefined;
|
|
11970
11984
|
transactionNumber?: string | null | undefined;
|
|
11971
11985
|
isCancelable?: boolean | null | undefined;
|
|
11986
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
11972
11987
|
}, {
|
|
11973
11988
|
id: string;
|
|
11974
11989
|
referenceId: string | null;
|
|
@@ -12259,6 +12274,7 @@ export declare const unknownPayoutRestResSchema: z.ZodObject<{
|
|
|
12259
12274
|
} | null | undefined;
|
|
12260
12275
|
} & /*elided*/ any)[] | null | undefined;
|
|
12261
12276
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
12277
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
12262
12278
|
}, z.core.$ZodTypeInternals<{
|
|
12263
12279
|
id: string;
|
|
12264
12280
|
referenceId: string | null;
|
|
@@ -12559,6 +12575,7 @@ export declare const unknownPayoutRestResSchema: z.ZodObject<{
|
|
|
12559
12575
|
amountStr?: string | null | undefined;
|
|
12560
12576
|
transactionNumber?: string | null | undefined;
|
|
12561
12577
|
isCancelable?: boolean | null | undefined;
|
|
12578
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
12562
12579
|
}, {
|
|
12563
12580
|
id: string;
|
|
12564
12581
|
referenceId: string | null;
|
|
@@ -12849,6 +12866,7 @@ export declare const unknownPayoutRestResSchema: z.ZodObject<{
|
|
|
12849
12866
|
} | null | undefined;
|
|
12850
12867
|
} & /*elided*/ any)[] | null | undefined;
|
|
12851
12868
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
12869
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
12852
12870
|
}>>>>>;
|
|
12853
12871
|
}, z.core.$strip>>>>;
|
|
12854
12872
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -13180,6 +13198,7 @@ export declare const unknownPayoutRestResSchema: z.ZodObject<{
|
|
|
13180
13198
|
amountStr?: string | null | undefined;
|
|
13181
13199
|
transactionNumber?: string | null | undefined;
|
|
13182
13200
|
isCancelable?: boolean | null | undefined;
|
|
13201
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
13183
13202
|
}, {
|
|
13184
13203
|
[x: string]: unknown;
|
|
13185
13204
|
id: string;
|
|
@@ -15106,6 +15125,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
15106
15125
|
amountStr?: string | null | undefined;
|
|
15107
15126
|
transactionNumber?: string | null | undefined;
|
|
15108
15127
|
isCancelable?: boolean | null | undefined;
|
|
15128
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
15109
15129
|
}, {
|
|
15110
15130
|
id: string;
|
|
15111
15131
|
referenceId: string | null;
|
|
@@ -15396,6 +15416,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
15396
15416
|
} | null | undefined;
|
|
15397
15417
|
} & /*elided*/ any)[] | null | undefined;
|
|
15398
15418
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
15419
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
15399
15420
|
}, z.core.$ZodTypeInternals<{
|
|
15400
15421
|
id: string;
|
|
15401
15422
|
referenceId: string | null;
|
|
@@ -15696,6 +15717,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
15696
15717
|
amountStr?: string | null | undefined;
|
|
15697
15718
|
transactionNumber?: string | null | undefined;
|
|
15698
15719
|
isCancelable?: boolean | null | undefined;
|
|
15720
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
15699
15721
|
}, {
|
|
15700
15722
|
id: string;
|
|
15701
15723
|
referenceId: string | null;
|
|
@@ -15986,6 +16008,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
15986
16008
|
} | null | undefined;
|
|
15987
16009
|
} & /*elided*/ any)[] | null | undefined;
|
|
15988
16010
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
16011
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
15989
16012
|
}>>>>>;
|
|
15990
16013
|
}, z.core.$strip>>>>;
|
|
15991
16014
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -16317,6 +16340,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
16317
16340
|
amountStr?: string | null | undefined;
|
|
16318
16341
|
transactionNumber?: string | null | undefined;
|
|
16319
16342
|
isCancelable?: boolean | null | undefined;
|
|
16343
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
16320
16344
|
}, {
|
|
16321
16345
|
[x: string]: unknown;
|
|
16322
16346
|
id: string;
|
|
@@ -18434,6 +18458,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
18434
18458
|
amountStr?: string | null | undefined;
|
|
18435
18459
|
transactionNumber?: string | null | undefined;
|
|
18436
18460
|
isCancelable?: boolean | null | undefined;
|
|
18461
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
18437
18462
|
}, {
|
|
18438
18463
|
id: string;
|
|
18439
18464
|
referenceId: string | null;
|
|
@@ -18724,6 +18749,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
18724
18749
|
} | null | undefined;
|
|
18725
18750
|
} & /*elided*/ any)[] | null | undefined;
|
|
18726
18751
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
18752
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
18727
18753
|
}, z.core.$ZodTypeInternals<{
|
|
18728
18754
|
id: string;
|
|
18729
18755
|
referenceId: string | null;
|
|
@@ -19024,6 +19050,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
19024
19050
|
amountStr?: string | null | undefined;
|
|
19025
19051
|
transactionNumber?: string | null | undefined;
|
|
19026
19052
|
isCancelable?: boolean | null | undefined;
|
|
19053
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
19027
19054
|
}, {
|
|
19028
19055
|
id: string;
|
|
19029
19056
|
referenceId: string | null;
|
|
@@ -19314,6 +19341,7 @@ export declare const settlementPayoutRestResSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
19314
19341
|
} | null | undefined;
|
|
19315
19342
|
} & /*elided*/ any)[] | null | undefined;
|
|
19316
19343
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
19344
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
19317
19345
|
}>>>>>;
|
|
19318
19346
|
}, z.core.$strip>>>>;
|
|
19319
19347
|
triggerDetails: z.ZodNullable<z.ZodString>;
|
|
@@ -21807,6 +21835,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
21807
21835
|
amountStr?: string | null | undefined;
|
|
21808
21836
|
transactionNumber?: string | null | undefined;
|
|
21809
21837
|
isCancelable?: boolean | null | undefined;
|
|
21838
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
21810
21839
|
}, {
|
|
21811
21840
|
id: string;
|
|
21812
21841
|
referenceId: string | null;
|
|
@@ -22097,6 +22126,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22097
22126
|
} | null | undefined;
|
|
22098
22127
|
} & /*elided*/ any)[] | null | undefined;
|
|
22099
22128
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
22129
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
22100
22130
|
}, z.core.$ZodTypeInternals<{
|
|
22101
22131
|
id: string;
|
|
22102
22132
|
referenceId: string | null;
|
|
@@ -22397,6 +22427,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22397
22427
|
amountStr?: string | null | undefined;
|
|
22398
22428
|
transactionNumber?: string | null | undefined;
|
|
22399
22429
|
isCancelable?: boolean | null | undefined;
|
|
22430
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
22400
22431
|
}, {
|
|
22401
22432
|
id: string;
|
|
22402
22433
|
referenceId: string | null;
|
|
@@ -22687,6 +22718,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22687
22718
|
} | null | undefined;
|
|
22688
22719
|
} & /*elided*/ any)[] | null | undefined;
|
|
22689
22720
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
22721
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
22690
22722
|
}>>>>>;
|
|
22691
22723
|
}, z.core.$strip>>>>;
|
|
22692
22724
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -23018,6 +23050,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
23018
23050
|
amountStr?: string | null | undefined;
|
|
23019
23051
|
transactionNumber?: string | null | undefined;
|
|
23020
23052
|
isCancelable?: boolean | null | undefined;
|
|
23053
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
23021
23054
|
}, {
|
|
23022
23055
|
[x: string]: unknown;
|
|
23023
23056
|
id: string;
|
|
@@ -25182,6 +25215,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
25182
25215
|
amountStr?: string | null | undefined;
|
|
25183
25216
|
transactionNumber?: string | null | undefined;
|
|
25184
25217
|
isCancelable?: boolean | null | undefined;
|
|
25218
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
25185
25219
|
}, {
|
|
25186
25220
|
id: string;
|
|
25187
25221
|
referenceId: string | null;
|
|
@@ -25472,6 +25506,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
25472
25506
|
} | null | undefined;
|
|
25473
25507
|
} & /*elided*/ any)[] | null | undefined;
|
|
25474
25508
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
25509
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
25475
25510
|
}, z.core.$ZodTypeInternals<{
|
|
25476
25511
|
id: string;
|
|
25477
25512
|
referenceId: string | null;
|
|
@@ -25772,6 +25807,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
25772
25807
|
amountStr?: string | null | undefined;
|
|
25773
25808
|
transactionNumber?: string | null | undefined;
|
|
25774
25809
|
isCancelable?: boolean | null | undefined;
|
|
25810
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
25775
25811
|
}, {
|
|
25776
25812
|
id: string;
|
|
25777
25813
|
referenceId: string | null;
|
|
@@ -26062,6 +26098,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
26062
26098
|
} | null | undefined;
|
|
26063
26099
|
} & /*elided*/ any)[] | null | undefined;
|
|
26064
26100
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
26101
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
26065
26102
|
}>>>>>;
|
|
26066
26103
|
}, z.core.$strip>>>>;
|
|
26067
26104
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -26393,6 +26430,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
26393
26430
|
amountStr?: string | null | undefined;
|
|
26394
26431
|
transactionNumber?: string | null | undefined;
|
|
26395
26432
|
isCancelable?: boolean | null | undefined;
|
|
26433
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
26396
26434
|
}, {
|
|
26397
26435
|
[x: string]: unknown;
|
|
26398
26436
|
id: string;
|
|
@@ -28510,6 +28548,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
28510
28548
|
amountStr?: string | null | undefined;
|
|
28511
28549
|
transactionNumber?: string | null | undefined;
|
|
28512
28550
|
isCancelable?: boolean | null | undefined;
|
|
28551
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
28513
28552
|
}, {
|
|
28514
28553
|
id: string;
|
|
28515
28554
|
referenceId: string | null;
|
|
@@ -28800,6 +28839,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
28800
28839
|
} | null | undefined;
|
|
28801
28840
|
} & /*elided*/ any)[] | null | undefined;
|
|
28802
28841
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
28842
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
28803
28843
|
}, z.core.$ZodTypeInternals<{
|
|
28804
28844
|
id: string;
|
|
28805
28845
|
referenceId: string | null;
|
|
@@ -29100,6 +29140,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
29100
29140
|
amountStr?: string | null | undefined;
|
|
29101
29141
|
transactionNumber?: string | null | undefined;
|
|
29102
29142
|
isCancelable?: boolean | null | undefined;
|
|
29143
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
29103
29144
|
}, {
|
|
29104
29145
|
id: string;
|
|
29105
29146
|
referenceId: string | null;
|
|
@@ -29390,6 +29431,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
29390
29431
|
} | null | undefined;
|
|
29391
29432
|
} & /*elided*/ any)[] | null | undefined;
|
|
29392
29433
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
29434
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
29393
29435
|
}>>>>>;
|
|
29394
29436
|
}, z.core.$strip>>>>;
|
|
29395
29437
|
triggerDetails: z.ZodNullable<z.ZodString>;
|
|
@@ -31525,6 +31567,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
31525
31567
|
amountStr?: string | null | undefined;
|
|
31526
31568
|
transactionNumber?: string | null | undefined;
|
|
31527
31569
|
isCancelable?: boolean | null | undefined;
|
|
31570
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
31528
31571
|
}, {
|
|
31529
31572
|
id: string;
|
|
31530
31573
|
referenceId: string | null;
|
|
@@ -31815,6 +31858,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
31815
31858
|
} | null | undefined;
|
|
31816
31859
|
} & /*elided*/ any)[] | null | undefined;
|
|
31817
31860
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
31861
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
31818
31862
|
}, z.core.$ZodTypeInternals<{
|
|
31819
31863
|
id: string;
|
|
31820
31864
|
referenceId: string | null;
|
|
@@ -32115,6 +32159,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
32115
32159
|
amountStr?: string | null | undefined;
|
|
32116
32160
|
transactionNumber?: string | null | undefined;
|
|
32117
32161
|
isCancelable?: boolean | null | undefined;
|
|
32162
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
32118
32163
|
}, {
|
|
32119
32164
|
id: string;
|
|
32120
32165
|
referenceId: string | null;
|
|
@@ -32405,6 +32450,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
32405
32450
|
} | null | undefined;
|
|
32406
32451
|
} & /*elided*/ any)[] | null | undefined;
|
|
32407
32452
|
reconciledTransactions?: z.input<typeof import("..").mtaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
32453
|
+
payout?: z.input<typeof payoutEntitySchema> | null | undefined;
|
|
32408
32454
|
}>>>>>;
|
|
32409
32455
|
}, z.core.$strip>>>>;
|
|
32410
32456
|
mtaTransaction: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodLazy<z.ZodObject<{
|
|
@@ -32736,6 +32782,7 @@ export declare const payoutRestResSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
32736
32782
|
amountStr?: string | null | undefined;
|
|
32737
32783
|
transactionNumber?: string | null | undefined;
|
|
32738
32784
|
isCancelable?: boolean | null | undefined;
|
|
32785
|
+
payout?: z.output<typeof payoutEntitySchema> | null | undefined;
|
|
32739
32786
|
}, {
|
|
32740
32787
|
[x: string]: unknown;
|
|
32741
32788
|
id: string;
|