@mikemo-coposit/am-accounting-shared 0.0.12 → 0.0.13
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/index.js +67 -50
- package/dist/cjs/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +24 -24
- package/dist/cjs/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +8 -8
- package/dist/cjs/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +24 -24
- package/dist/cjs/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +8 -8
- package/dist/cjs/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +156 -156
- package/dist/cjs/schemas/payout/payout.rest.schema.d.ts +448 -448
- package/dist/cjs/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +36 -36
- package/dist/cjs/schemas/property/property.rest.schema.d.ts +16 -16
- package/dist/cjs/schemas/report/index.d.ts +2 -0
- package/dist/cjs/schemas/report/index.d.ts.map +1 -1
- package/dist/cjs/schemas/report/project-ledger.rest.schema.d.ts +34 -0
- package/dist/cjs/schemas/report/project-ledger.rest.schema.d.ts.map +1 -0
- package/dist/cjs/schemas/report/unknown-receipt-ledger.schema.d.ts +30 -0
- package/dist/cjs/schemas/report/unknown-receipt-ledger.schema.d.ts.map +1 -0
- package/dist/cjs/utils/mask-string.util.d.ts +9 -0
- package/dist/cjs/utils/mask-string.util.d.ts.map +1 -1
- package/dist/cjs/utils/payment-credential-generate.util.d.ts +21 -0
- package/dist/cjs/utils/payment-credential-generate.util.d.ts.map +1 -1
- package/dist/cjs/utils/property.util.d.ts +13 -1
- package/dist/cjs/utils/property.util.d.ts.map +1 -1
- package/dist/esm/index.mjs +42 -31
- package/dist/esm/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts +24 -24
- package/dist/esm/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts +8 -8
- package/dist/esm/schemas/mta-account-period/mta-account-period-closing-summary.rest.schema.d.ts +24 -24
- package/dist/esm/schemas/mta-reconciled-transaction/mta-reconciled-transaction.rest.schema.d.ts +8 -8
- package/dist/esm/schemas/payout/mta-to-cma-payout/provision-data.mta-to-cma-payout.rest.schema.d.ts +156 -156
- package/dist/esm/schemas/payout/payout.rest.schema.d.ts +448 -448
- package/dist/esm/schemas/payout-transaction/payout-transaction.rest.entity.d.ts +36 -36
- package/dist/esm/schemas/property/property.rest.schema.d.ts +16 -16
- package/dist/esm/schemas/report/index.d.ts +2 -0
- package/dist/esm/schemas/report/index.d.ts.map +1 -1
- package/dist/esm/schemas/report/project-ledger.rest.schema.d.ts +34 -0
- package/dist/esm/schemas/report/project-ledger.rest.schema.d.ts.map +1 -0
- package/dist/esm/schemas/report/unknown-receipt-ledger.schema.d.ts +30 -0
- package/dist/esm/schemas/report/unknown-receipt-ledger.schema.d.ts.map +1 -0
- package/dist/esm/utils/mask-string.util.d.ts +9 -0
- package/dist/esm/utils/mask-string.util.d.ts.map +1 -1
- package/dist/esm/utils/payment-credential-generate.util.d.ts +21 -0
- package/dist/esm/utils/payment-credential-generate.util.d.ts.map +1 -1
- package/dist/esm/utils/property.util.d.ts +13 -1
- package/dist/esm/utils/property.util.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.mjs
CHANGED
|
@@ -2448,12 +2448,19 @@ const paymentListReportRestReqSchema = commonReportRestReqSchema.and(z.object({
|
|
|
2448
2448
|
accountId: z.string().uuid(),
|
|
2449
2449
|
accountType: z.nativeEnum(account_type_constant_AccountType)
|
|
2450
2450
|
}));
|
|
2451
|
+
const projectLedgerRestReqSchema = commonReportRestReqSchema.and(z.object({
|
|
2452
|
+
propertyIds: z.array(z.string().uuid()).min(1),
|
|
2453
|
+
reportGroupType: z.nativeEnum(report_group_type_constant_ReportGroupType)
|
|
2454
|
+
}));
|
|
2451
2455
|
const receiptListReportRestReqSchema = commonReportRestReqSchema.and(z.object({
|
|
2452
2456
|
accountId: z.string().uuid(),
|
|
2453
2457
|
accountType: z.nativeEnum(account_type_constant_AccountType)
|
|
2454
2458
|
}));
|
|
2455
2459
|
const reconciledItemsListReportRestReqSchema = commonReportWithCmaSelectionRestReqSchema;
|
|
2456
2460
|
const trustTrialBalanceReportRestReqSchema = commonReportWithCmaSelectionRestReqSchema;
|
|
2461
|
+
const unknownReceiptLedgerRestReqSchema = commonReportRestReqSchema.and(z.object({
|
|
2462
|
+
mtaId: z.string().uuid()
|
|
2463
|
+
}));
|
|
2457
2464
|
const unreconciledItemsListReportRestReqSchema = commonReportWithCmaSelectionRestReqSchema;
|
|
2458
2465
|
function bind(fn, thisArg) {
|
|
2459
2466
|
return function() {
|
|
@@ -2786,7 +2793,7 @@ const utils = {
|
|
|
2786
2793
|
asap,
|
|
2787
2794
|
isIterable
|
|
2788
2795
|
};
|
|
2789
|
-
function
|
|
2796
|
+
function AxiosError(message, code, config, request, response) {
|
|
2790
2797
|
Error.call(this);
|
|
2791
2798
|
if (Error.captureStackTrace) Error.captureStackTrace(this, this.constructor);
|
|
2792
2799
|
else this.stack = new Error().stack;
|
|
@@ -2800,7 +2807,7 @@ function AxiosError_AxiosError(message, code, config, request, response) {
|
|
|
2800
2807
|
this.status = response.status ? response.status : null;
|
|
2801
2808
|
}
|
|
2802
2809
|
}
|
|
2803
|
-
utils.inherits(
|
|
2810
|
+
utils.inherits(AxiosError, Error, {
|
|
2804
2811
|
toJSON: function() {
|
|
2805
2812
|
return {
|
|
2806
2813
|
message: this.message,
|
|
@@ -2817,7 +2824,7 @@ utils.inherits(AxiosError_AxiosError, Error, {
|
|
|
2817
2824
|
};
|
|
2818
2825
|
}
|
|
2819
2826
|
});
|
|
2820
|
-
const AxiosError_prototype =
|
|
2827
|
+
const AxiosError_prototype = AxiosError.prototype;
|
|
2821
2828
|
const AxiosError_descriptors = {};
|
|
2822
2829
|
[
|
|
2823
2830
|
'ERR_BAD_OPTION_VALUE',
|
|
@@ -2837,22 +2844,22 @@ const AxiosError_descriptors = {};
|
|
|
2837
2844
|
value: code
|
|
2838
2845
|
};
|
|
2839
2846
|
});
|
|
2840
|
-
Object.defineProperties(
|
|
2847
|
+
Object.defineProperties(AxiosError, AxiosError_descriptors);
|
|
2841
2848
|
Object.defineProperty(AxiosError_prototype, 'isAxiosError', {
|
|
2842
2849
|
value: true
|
|
2843
2850
|
});
|
|
2844
|
-
|
|
2851
|
+
AxiosError.from = (error, code, config, request, response, customProps)=>{
|
|
2845
2852
|
const axiosError = Object.create(AxiosError_prototype);
|
|
2846
2853
|
utils.toFlatObject(error, axiosError, function(obj) {
|
|
2847
2854
|
return obj !== Error.prototype;
|
|
2848
2855
|
}, (prop)=>'isAxiosError' !== prop);
|
|
2849
|
-
|
|
2856
|
+
AxiosError.call(axiosError, error.message, code, config, request, response);
|
|
2850
2857
|
axiosError.cause = error;
|
|
2851
2858
|
axiosError.name = error.name;
|
|
2852
2859
|
customProps && Object.assign(axiosError, customProps);
|
|
2853
2860
|
return axiosError;
|
|
2854
2861
|
};
|
|
2855
|
-
const
|
|
2862
|
+
const core_AxiosError = AxiosError;
|
|
2856
2863
|
const helpers_null = null;
|
|
2857
2864
|
function isVisitable(thing) {
|
|
2858
2865
|
return utils.isPlainObject(thing) || utils.isArray(thing);
|
|
@@ -2894,7 +2901,7 @@ function toFormData(obj, formData, options) {
|
|
|
2894
2901
|
if (null === value) return '';
|
|
2895
2902
|
if (utils.isDate(value)) return value.toISOString();
|
|
2896
2903
|
if (utils.isBoolean(value)) return value.toString();
|
|
2897
|
-
if (!useBlob && utils.isBlob(value)) throw new
|
|
2904
|
+
if (!useBlob && utils.isBlob(value)) throw new core_AxiosError('Blob is not supported. Use a Buffer instead.');
|
|
2898
2905
|
if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) return useBlob && 'function' == typeof Blob ? new Blob([
|
|
2899
2906
|
value
|
|
2900
2907
|
]) : Buffer.from(value);
|
|
@@ -3176,7 +3183,7 @@ const defaults = {
|
|
|
3176
3183
|
return JSON.parse(data);
|
|
3177
3184
|
} catch (e) {
|
|
3178
3185
|
if (strictJSONParsing) {
|
|
3179
|
-
if ('SyntaxError' === e.name) throw
|
|
3186
|
+
if ('SyntaxError' === e.name) throw core_AxiosError.from(e, core_AxiosError.ERR_BAD_RESPONSE, this, null, this.response);
|
|
3180
3187
|
throw e;
|
|
3181
3188
|
}
|
|
3182
3189
|
}
|
|
@@ -3473,19 +3480,19 @@ function isCancel(value) {
|
|
|
3473
3480
|
return !!(value && value.__CANCEL__);
|
|
3474
3481
|
}
|
|
3475
3482
|
function CanceledError(message, config, request) {
|
|
3476
|
-
|
|
3483
|
+
core_AxiosError.call(this, null == message ? 'canceled' : message, core_AxiosError.ERR_CANCELED, config, request);
|
|
3477
3484
|
this.name = 'CanceledError';
|
|
3478
3485
|
}
|
|
3479
|
-
utils.inherits(CanceledError,
|
|
3486
|
+
utils.inherits(CanceledError, core_AxiosError, {
|
|
3480
3487
|
__CANCEL__: true
|
|
3481
3488
|
});
|
|
3482
3489
|
const cancel_CanceledError = CanceledError;
|
|
3483
3490
|
function settle(resolve, reject, response) {
|
|
3484
3491
|
const validateStatus = response.config.validateStatus;
|
|
3485
3492
|
if (!response.status || !validateStatus || validateStatus(response.status)) resolve(response);
|
|
3486
|
-
else reject(new
|
|
3487
|
-
|
|
3488
|
-
|
|
3493
|
+
else reject(new core_AxiosError('Request failed with status code ' + response.status, [
|
|
3494
|
+
core_AxiosError.ERR_BAD_REQUEST,
|
|
3495
|
+
core_AxiosError.ERR_BAD_RESPONSE
|
|
3489
3496
|
][Math.floor(response.status / 100) - 4], response.config, response.request, response));
|
|
3490
3497
|
}
|
|
3491
3498
|
function parseProtocol(url) {
|
|
@@ -3773,18 +3780,18 @@ const xhr = isXHRAdapterSupported && function(config) {
|
|
|
3773
3780
|
};
|
|
3774
3781
|
request.onabort = function() {
|
|
3775
3782
|
if (!request) return;
|
|
3776
|
-
reject(new
|
|
3783
|
+
reject(new core_AxiosError('Request aborted', core_AxiosError.ECONNABORTED, config, request));
|
|
3777
3784
|
request = null;
|
|
3778
3785
|
};
|
|
3779
3786
|
request.onerror = function() {
|
|
3780
|
-
reject(new
|
|
3787
|
+
reject(new core_AxiosError('Network Error', core_AxiosError.ERR_NETWORK, config, request));
|
|
3781
3788
|
request = null;
|
|
3782
3789
|
};
|
|
3783
3790
|
request.ontimeout = function() {
|
|
3784
3791
|
let timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded';
|
|
3785
3792
|
const transitional = _config.transitional || defaults_transitional;
|
|
3786
3793
|
if (_config.timeoutErrorMessage) timeoutErrorMessage = _config.timeoutErrorMessage;
|
|
3787
|
-
reject(new
|
|
3794
|
+
reject(new core_AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? core_AxiosError.ETIMEDOUT : core_AxiosError.ECONNABORTED, config, request));
|
|
3788
3795
|
request = null;
|
|
3789
3796
|
};
|
|
3790
3797
|
void 0 === requestData && requestHeaders.setContentType(null);
|
|
@@ -3813,7 +3820,7 @@ const xhr = isXHRAdapterSupported && function(config) {
|
|
|
3813
3820
|
if (_config.signal) _config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled);
|
|
3814
3821
|
}
|
|
3815
3822
|
const protocol = parseProtocol(_config.url);
|
|
3816
|
-
if (protocol && -1 === platform.protocols.indexOf(protocol)) return void reject(new
|
|
3823
|
+
if (protocol && -1 === platform.protocols.indexOf(protocol)) return void reject(new core_AxiosError('Unsupported protocol ' + protocol + ':', core_AxiosError.ERR_BAD_REQUEST, config));
|
|
3817
3824
|
request.send(requestData || null);
|
|
3818
3825
|
});
|
|
3819
3826
|
};
|
|
@@ -3827,12 +3834,12 @@ const composeSignals = (signals, timeout)=>{
|
|
|
3827
3834
|
aborted = true;
|
|
3828
3835
|
unsubscribe();
|
|
3829
3836
|
const err = reason instanceof Error ? reason : this.reason;
|
|
3830
|
-
controller.abort(err instanceof
|
|
3837
|
+
controller.abort(err instanceof core_AxiosError ? err : new cancel_CanceledError(err instanceof Error ? err.message : err));
|
|
3831
3838
|
}
|
|
3832
3839
|
};
|
|
3833
3840
|
let timer = timeout && setTimeout(()=>{
|
|
3834
3841
|
timer = null;
|
|
3835
|
-
onabort(new
|
|
3842
|
+
onabort(new core_AxiosError(`timeout ${timeout} of ms exceeded`, core_AxiosError.ETIMEDOUT));
|
|
3836
3843
|
}, timeout);
|
|
3837
3844
|
const unsubscribe = ()=>{
|
|
3838
3845
|
if (signals) {
|
|
@@ -3952,7 +3959,7 @@ isFetchSupported && ((res)=>{
|
|
|
3952
3959
|
'stream'
|
|
3953
3960
|
].forEach((type)=>{
|
|
3954
3961
|
resolvers[type] || (resolvers[type] = utils.isFunction(res[type]) ? (res)=>res[type]() : (_, config)=>{
|
|
3955
|
-
throw new
|
|
3962
|
+
throw new core_AxiosError(`Response type '${type}' is not supported`, core_AxiosError.ERR_NOT_SUPPORT, config);
|
|
3956
3963
|
});
|
|
3957
3964
|
});
|
|
3958
3965
|
})(new Response);
|
|
@@ -4044,10 +4051,10 @@ const adapters_fetch = isFetchSupported && (async (config)=>{
|
|
|
4044
4051
|
});
|
|
4045
4052
|
} catch (err) {
|
|
4046
4053
|
unsubscribe && unsubscribe();
|
|
4047
|
-
if (err && 'TypeError' === err.name && /Load failed|fetch/i.test(err.message)) throw Object.assign(new
|
|
4054
|
+
if (err && 'TypeError' === err.name && /Load failed|fetch/i.test(err.message)) throw Object.assign(new core_AxiosError('Network Error', core_AxiosError.ERR_NETWORK, config, request), {
|
|
4048
4055
|
cause: err.cause || err
|
|
4049
4056
|
});
|
|
4050
|
-
throw
|
|
4057
|
+
throw core_AxiosError.from(err, err && err.code, config, request);
|
|
4051
4058
|
}
|
|
4052
4059
|
});
|
|
4053
4060
|
const knownAdapters = {
|
|
@@ -4084,7 +4091,7 @@ const adapters_adapters = {
|
|
|
4084
4091
|
adapter = nameOrAdapter;
|
|
4085
4092
|
if (!isResolvedHandle(nameOrAdapter)) {
|
|
4086
4093
|
adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
|
|
4087
|
-
if (void 0 === adapter) throw new
|
|
4094
|
+
if (void 0 === adapter) throw new core_AxiosError(`Unknown adapter '${id}'`);
|
|
4088
4095
|
}
|
|
4089
4096
|
if (adapter) break;
|
|
4090
4097
|
rejectedReasons[id || '#' + i] = adapter;
|
|
@@ -4092,7 +4099,7 @@ const adapters_adapters = {
|
|
|
4092
4099
|
if (!adapter) {
|
|
4093
4100
|
const reasons = Object.entries(rejectedReasons).map(([id, state])=>`adapter ${id} ` + (false === state ? 'is not supported by the environment' : 'is not available in the build'));
|
|
4094
4101
|
let s = length ? reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0]) : 'as no adapter specified';
|
|
4095
|
-
throw new
|
|
4102
|
+
throw new core_AxiosError("There is no suitable adapter to dispatch the request " + s, 'ERR_NOT_SUPPORT');
|
|
4096
4103
|
}
|
|
4097
4104
|
return adapter;
|
|
4098
4105
|
},
|
|
@@ -4148,7 +4155,7 @@ validators.transitional = function(validator, version, message) {
|
|
|
4148
4155
|
return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : '');
|
|
4149
4156
|
}
|
|
4150
4157
|
return (value, opt, opts)=>{
|
|
4151
|
-
if (false === validator) throw new
|
|
4158
|
+
if (false === validator) throw new core_AxiosError(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), core_AxiosError.ERR_DEPRECATED);
|
|
4152
4159
|
if (version && !deprecatedWarnings[opt]) {
|
|
4153
4160
|
deprecatedWarnings[opt] = true;
|
|
4154
4161
|
console.warn(formatMessage(opt, ' has been deprecated since v' + version + ' and will be removed in the near future'));
|
|
@@ -4163,7 +4170,7 @@ validators.spelling = function(correctSpelling) {
|
|
|
4163
4170
|
};
|
|
4164
4171
|
};
|
|
4165
4172
|
function assertOptions(options, schema, allowUnknown) {
|
|
4166
|
-
if ('object' != typeof options) throw new
|
|
4173
|
+
if ('object' != typeof options) throw new core_AxiosError('options must be an object', core_AxiosError.ERR_BAD_OPTION_VALUE);
|
|
4167
4174
|
const keys = Object.keys(options);
|
|
4168
4175
|
let i = keys.length;
|
|
4169
4176
|
while(i-- > 0){
|
|
@@ -4172,10 +4179,10 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
4172
4179
|
if (validator) {
|
|
4173
4180
|
const value = options[opt];
|
|
4174
4181
|
const result = void 0 === value || validator(value, opt, options);
|
|
4175
|
-
if (true !== result) throw new
|
|
4182
|
+
if (true !== result) throw new core_AxiosError('option ' + opt + ' must be ' + result, core_AxiosError.ERR_BAD_OPTION_VALUE);
|
|
4176
4183
|
continue;
|
|
4177
4184
|
}
|
|
4178
|
-
if (true !== allowUnknown) throw new
|
|
4185
|
+
if (true !== allowUnknown) throw new core_AxiosError('Unknown option ' + opt, core_AxiosError.ERR_BAD_OPTION);
|
|
4179
4186
|
}
|
|
4180
4187
|
}
|
|
4181
4188
|
const helpers_validator = {
|
|
@@ -4503,7 +4510,7 @@ axios.CancelToken = CancelToken;
|
|
|
4503
4510
|
axios.isCancel = isCancel;
|
|
4504
4511
|
axios.VERSION = VERSION;
|
|
4505
4512
|
axios.toFormData = helpers_toFormData;
|
|
4506
|
-
axios.AxiosError =
|
|
4513
|
+
axios.AxiosError = core_AxiosError;
|
|
4507
4514
|
axios.Cancel = axios.CanceledError;
|
|
4508
4515
|
axios.all = function(promises) {
|
|
4509
4516
|
return Promise.all(promises);
|
|
@@ -4602,7 +4609,11 @@ const getPropertyName = (property, options)=>{
|
|
|
4602
4609
|
lotDetail,
|
|
4603
4610
|
project?.name
|
|
4604
4611
|
];
|
|
4612
|
+
if ('report' === target) names = [
|
|
4613
|
+
lotDetail,
|
|
4614
|
+
property.propertyAddress
|
|
4615
|
+
];
|
|
4605
4616
|
names = names.filter(Boolean);
|
|
4606
4617
|
return names.length > 0 ? names.join(' ') : 'Nill';
|
|
4607
4618
|
};
|
|
4608
|
-
export { ASSIGN_UNKNOWN_TO_CUSTOMER, account_period_constant_AccountPeriodStatus as AccountPeriodStatus, account_type_constant_AccountType as AccountType, common_status_constant_AccountingCommonStatus as AccountingCommonStatus, AccountingCommonSyncStatus, AmmoZeptoBankAccounts, AmmoZeptoClient, CmaPayoutTransactionType, CmaReceiptTransactionType, CmaStatus, cma_input_type_constant_CmaTransactionCreateType as CmaTransactionCreateType, CmaTransactionCreateTypeToDisplayText, cma_input_type_constant_CmaTransactionInputType as CmaTransactionInputType, CmaTransactionInputTypeToDisplayText, cma_payment_method_constant_CmaTransactionPaymentMethod as CmaTransactionPaymentMethod, CmaTransactionStatus, CmaTransactionStatusToDisplayTextMapper, CmaTransactionType, CmaTransactionTypeToDisplayTextMapper, DEFAULT_PAYOUT_SOURCE_BANK_REF, DEFAULT_PAYOUT_SOURCE_DESCRIPTION, DEFAULT_PAYOUT_TARGET_BANK_REF, DEFAULT_PAYOUT_TARGET_DESCRIPTION, InputJsonValueSchema, JsonNullableFilterSchema, MenuStatus, MenuType, MtaCustomerTransactionType, MtaPayoutTransactionType, MtaReceiptTransactionType, mta_MtaStatus as MtaStatus, MtaTransactionExtendedStatus, MtaTransactionExtendedStatusToDisplayTextMapper, mta_input_type_constant_MtaTransactionInputType as MtaTransactionInputType, MtaTransactionInputTypeToDisplayText, mta_payment_method_constant_MtaTransactionPaymentMethod as MtaTransactionPaymentMethod, MtaTransactionStatus, MtaTransactionStatusToDisplayTextMapper, MtaTransactionType, MtaTransactionTypeToDisplayTextMapper, MtaUnknownTransactionType, payment_method_constant_PaymentMethod as PaymentMethod, PayoutBankFileStatus, payout_constant_PayoutSourceAccountType as PayoutSourceAccountType, PayoutStatus, payout_constant_PayoutTargetAccountType as PayoutTargetAccountType, PayoutType, ProjectApplyStatusRestRes, ProjectMtaAllocationStatus, PropertyRestResStatus, PropertyStage, QueryMode, reconcile_transaction_action_constant_ReconcileTransactionAction as ReconcileTransactionAction, reconciliation_constant_ReconciliationStatus as ReconciliationStatus, report_data_range_type_constant_ReportDataRangeType as ReportDataRangeType, report_group_type_constant_ReportGroupType as ReportGroupType, StringFilterBaseSchema, TRANSACTION_CANCEL, accountBsbFormattedSchema, accountBsbMaskedSchema, accountBsbValidationSchema, accountNumberMaskedSchema, accountNumberValidationSchema, allocateMtaToProjectRestReqSchema, approveMtaAllocationRestReqSchema, assignUnknownReceiptToPropertyRestReqSchema, balanceRestResSchema, bankCodeSchema, bankReconciliationSummaryRestReqSchema, bigIntFilterSchema, boolFilterBaseSchema, boolFilterSchema, cancelCmaTransactionRestReqSchema, cancelMtaTransactionRestReqSchema, cancelPayoutPaymentRestReqSchema, cancelPayoutRestReqSchema, centsToDollarsSchema, cmaAccountPeriodCloseRestReqSchema, cmaAccountPeriodClosingSummaryRestReqSchema, cmaAccountPeriodClosingSummaryRestResSchema, cmaAccountPeriodEntitySchema, cmaAccountPeriodRestResBaseSchema, cmaAccountPeriodRestResSchema, cmaClosedAccountPeriodRestResSchema, cmaEntitySchema, cmaNestedEntitySchema, cmaReconciledTransactionEntitySchema, cmaReconciledTransactionRestResSchema, cmaReconciliationEntitySchema, cmaReconciliationRestResSchema, cmaRestResBaseSchema, cmaRestResSchema, cmaSearchRestReqSchema, cmaSettlementPayoutRestResSchema, cmaTransactionEntitySchema, cmaTransactionNestedSchema, cmaTransactionRestResBaseSchema, cmaTransactionRestResSchema, cmaTransactionSearchRestReqSchema, commonPayoutSourceDetailEntitySchema, commonPayoutTargetDetailEntitySchema, commonReportRestReqSchema, commonReportWithCmaSelectionRestReqSchema, commonUpdatePayoutRestReqSchema, commonUpdatePayoutTargetDetailRestReqSchema, confirmPayoutBankFileProcessedRestReqSchema, createCmaReconciliationRestReqSchema, createCmaRestReqSchema, createCmaTransactionRestReqSchema, createMenuRestReqSchema, createMtaReconciliationRestReqSchema, createMtaRestReqSchema, createMtaToCmaPayoutRestReqSchema, createMtaTransactionRestReqSchema, createSettlementPayoutRestReqSchema, createSettlementPayoutSourceAccountSchema, createSettlementPayoutTargetAccountSchema, createUnknownPayoutRestReqSchema, customerEntitySchema, customerLedgerRestReqSchema, dateTimeFilterBaseSchema, dateTimeFilterSchema, developerEntitySchema, displayBankAccount, dollarsToCentsSchema, formatBankBsb, formatCurrency, fromCentsToDollars, fromDollarsToCents, generateMtaPaymentMethodAccountConfigForZepto, generateMtaPaymentMethodFloatAccountConfigForZepto, getPropertyName, getTransactionAmountStr, getTransactionNumber, getTransactionStatus, intFilterSchema, isInterestTransaction, isPaymentTransaction, isReceiptTransaction, isTransactionAssignable, isTransactionCancelable, isUnknownReceiptAssignedToProperty, isUnknownTransaction, markCmaTransactionAsClearedRestReqSchema, maskBankAccount, maskBankAccountNumber, maskBankBsb, maskString, menuRestResSchema, menuSchema, mtaAccountPeriodCloseRestReqSchema, mtaAccountPeriodClosingSummaryRestReqSchema, mtaAccountPeriodClosingSummaryRestResSchema, mtaAccountPeriodEntitySchema, mtaAccountPeriodRestResSchema, mtaClosedAccountPeriodRestResSchema, mtaEntitySchema, mtaListItemRestResSchema, mtaPaymentMethodAccountConfigSchema, mtaPaymentMethodEntitySchema, mtaPaymentMethodFloatAccountConfigSchema, mtaPaymentMethodRestResSchema, mtaReconciledTransactionEntitySchema, mtaReconciledTransactionRestResSchema, mtaReconciliationEntitySchema, mtaReconciliationRestResSchema, mtaRestResBaseSchema, mtaRestResSchema, mtaSettlementPayoutRestResSchema, mtaToCmaPayoutPaymentEntitySchema, mtaToCmaPayoutPaymentRestSchema, mtaToCmaPayoutProvisionDataEntitySchema, mtaToCmaPayoutProvisionDataRestSchema, mtaToCmaPayoutRestResSchema, mtaToCmaPayoutSourceDetailEntitySchema, mtaToCmaPayoutSourceDetailRestSchema, mtaToCmaPayoutTargetDetailEntitySchema, mtaToCmaPayoutTargetDetailRestSchema, mtaTransactionEntitySchema, mtaTransactionNestedSchema, mtaTransactionRestResBaseSchema, mtaTransactionRestResSchema, mtaTransactionSearchRestReqSchema, mtaTransactionStatusSummaryRestResSchema, paginatedResSchema, paginationReqSchema, paymentListReportRestReqSchema, paymentProviderEntitySchema, payoutBankFileDownloadHistoryEntitySchema, payoutBankFileEntitySchema, payoutBankFileRestResSchema, payoutEntitySchema, payoutProvisionDataEntitySchema, payoutRestResBaseSchema, payoutRestResSchema, payoutSearchRestReqSchema, payoutStatusSummaryRestResSchema, payoutTransactionEntitySchema, payoutTransactionRestResSchema, payoutTransactionSearchRestReqSchema, payoutUpdateRestReqSchema, projectEntitySchema, projectMtaAllocationEntitySchema, projectMtaAllocationRestResSchema, projectNestedEntitySchema, projectRestResSchema, propertyAccountsBalanceRestResSchema, propertyEntitySchema, propertyNestedEntitySchema, propertyRestResBaseSchema, propertyRestResSchema, propertySearchRestReqSchema, queryModeSchema, receiptListReportRestReqSchema, reconcileCmaTransactionRestReqSchema, reconcileMtaTransactionRestReqSchema, reconciledItemsListReportRestReqSchema, settlementPayoutPaymentEntitySchema, settlementPayoutProvisionDataEntitySchema, settlementPayoutRestResSchema, settlementPayoutSourceDetailEntitySchema, settlementPayoutTargetDetailEntitySchema, simpleStringFilterSchema, stateCodeSchema, stringFilterSchema, stringToDateSchema, stringToEndOfDaySchema, stringToStartOfDaySchema, trustTrialBalanceReportRestReqSchema, unknownPayoutPaymentEntitySchema, unknownPayoutProvisionDataEntitySchema, unknownPayoutRestResSchema, unknownPayoutSourceDetailEntitySchema, unknownPayoutTargetDetailEntitySchema, unreconciledItemsListReportRestReqSchema, updateCmaAccountPeriodReconciledToRestReqSchema, updateCmaOpenReconciliationCurrentBankStatementBalanceRestReqSchema, updateCmaSettlementPayoutRestReqSchema, updateMenuRestReqSchema, updateMtaAccountPeriodReconciledToRestReqSchema, updateMtaRestReqSchema, updateMtaSettlementPayoutRestReqSchema, updateMtaToCmaPayoutRestReqSchema, updateOpenReconciliationCurrentBankStatementBalanceRestReqSchema, updateSettlementPayoutRestReqSchema, updateUnknownPayoutRestReqSchema, updateUnknownPayoutTargetDetailRestReqSchema, userEntitySchema, userRestResSchema };
|
|
4619
|
+
export { ASSIGN_UNKNOWN_TO_CUSTOMER, account_period_constant_AccountPeriodStatus as AccountPeriodStatus, account_type_constant_AccountType as AccountType, common_status_constant_AccountingCommonStatus as AccountingCommonStatus, AccountingCommonSyncStatus, AmmoZeptoBankAccounts, AmmoZeptoClient, CmaPayoutTransactionType, CmaReceiptTransactionType, CmaStatus, cma_input_type_constant_CmaTransactionCreateType as CmaTransactionCreateType, CmaTransactionCreateTypeToDisplayText, cma_input_type_constant_CmaTransactionInputType as CmaTransactionInputType, CmaTransactionInputTypeToDisplayText, cma_payment_method_constant_CmaTransactionPaymentMethod as CmaTransactionPaymentMethod, CmaTransactionStatus, CmaTransactionStatusToDisplayTextMapper, CmaTransactionType, CmaTransactionTypeToDisplayTextMapper, DEFAULT_PAYOUT_SOURCE_BANK_REF, DEFAULT_PAYOUT_SOURCE_DESCRIPTION, DEFAULT_PAYOUT_TARGET_BANK_REF, DEFAULT_PAYOUT_TARGET_DESCRIPTION, InputJsonValueSchema, JsonNullableFilterSchema, MenuStatus, MenuType, MtaCustomerTransactionType, MtaPayoutTransactionType, MtaReceiptTransactionType, mta_MtaStatus as MtaStatus, MtaTransactionExtendedStatus, MtaTransactionExtendedStatusToDisplayTextMapper, mta_input_type_constant_MtaTransactionInputType as MtaTransactionInputType, MtaTransactionInputTypeToDisplayText, mta_payment_method_constant_MtaTransactionPaymentMethod as MtaTransactionPaymentMethod, MtaTransactionStatus, MtaTransactionStatusToDisplayTextMapper, MtaTransactionType, MtaTransactionTypeToDisplayTextMapper, MtaUnknownTransactionType, payment_method_constant_PaymentMethod as PaymentMethod, PayoutBankFileStatus, payout_constant_PayoutSourceAccountType as PayoutSourceAccountType, PayoutStatus, payout_constant_PayoutTargetAccountType as PayoutTargetAccountType, PayoutType, ProjectApplyStatusRestRes, ProjectMtaAllocationStatus, PropertyRestResStatus, PropertyStage, QueryMode, reconcile_transaction_action_constant_ReconcileTransactionAction as ReconcileTransactionAction, reconciliation_constant_ReconciliationStatus as ReconciliationStatus, report_data_range_type_constant_ReportDataRangeType as ReportDataRangeType, report_group_type_constant_ReportGroupType as ReportGroupType, StringFilterBaseSchema, TRANSACTION_CANCEL, accountBsbFormattedSchema, accountBsbMaskedSchema, accountBsbValidationSchema, accountNumberMaskedSchema, accountNumberValidationSchema, allocateMtaToProjectRestReqSchema, approveMtaAllocationRestReqSchema, assignUnknownReceiptToPropertyRestReqSchema, balanceRestResSchema, bankCodeSchema, bankReconciliationSummaryRestReqSchema, bigIntFilterSchema, boolFilterBaseSchema, boolFilterSchema, cancelCmaTransactionRestReqSchema, cancelMtaTransactionRestReqSchema, cancelPayoutPaymentRestReqSchema, cancelPayoutRestReqSchema, centsToDollarsSchema, cmaAccountPeriodCloseRestReqSchema, cmaAccountPeriodClosingSummaryRestReqSchema, cmaAccountPeriodClosingSummaryRestResSchema, cmaAccountPeriodEntitySchema, cmaAccountPeriodRestResBaseSchema, cmaAccountPeriodRestResSchema, cmaClosedAccountPeriodRestResSchema, cmaEntitySchema, cmaNestedEntitySchema, cmaReconciledTransactionEntitySchema, cmaReconciledTransactionRestResSchema, cmaReconciliationEntitySchema, cmaReconciliationRestResSchema, cmaRestResBaseSchema, cmaRestResSchema, cmaSearchRestReqSchema, cmaSettlementPayoutRestResSchema, cmaTransactionEntitySchema, cmaTransactionNestedSchema, cmaTransactionRestResBaseSchema, cmaTransactionRestResSchema, cmaTransactionSearchRestReqSchema, commonPayoutSourceDetailEntitySchema, commonPayoutTargetDetailEntitySchema, commonReportRestReqSchema, commonReportWithCmaSelectionRestReqSchema, commonUpdatePayoutRestReqSchema, commonUpdatePayoutTargetDetailRestReqSchema, confirmPayoutBankFileProcessedRestReqSchema, createCmaReconciliationRestReqSchema, createCmaRestReqSchema, createCmaTransactionRestReqSchema, createMenuRestReqSchema, createMtaReconciliationRestReqSchema, createMtaRestReqSchema, createMtaToCmaPayoutRestReqSchema, createMtaTransactionRestReqSchema, createSettlementPayoutRestReqSchema, createSettlementPayoutSourceAccountSchema, createSettlementPayoutTargetAccountSchema, createUnknownPayoutRestReqSchema, customerEntitySchema, customerLedgerRestReqSchema, dateTimeFilterBaseSchema, dateTimeFilterSchema, developerEntitySchema, displayBankAccount, dollarsToCentsSchema, formatBankBsb, formatCurrency, fromCentsToDollars, fromDollarsToCents, generateMtaPaymentMethodAccountConfigForZepto, generateMtaPaymentMethodFloatAccountConfigForZepto, getPropertyName, getTransactionAmountStr, getTransactionNumber, getTransactionStatus, intFilterSchema, isInterestTransaction, isPaymentTransaction, isReceiptTransaction, isTransactionAssignable, isTransactionCancelable, isUnknownReceiptAssignedToProperty, isUnknownTransaction, markCmaTransactionAsClearedRestReqSchema, maskBankAccount, maskBankAccountNumber, maskBankBsb, maskString, menuRestResSchema, menuSchema, mtaAccountPeriodCloseRestReqSchema, mtaAccountPeriodClosingSummaryRestReqSchema, mtaAccountPeriodClosingSummaryRestResSchema, mtaAccountPeriodEntitySchema, mtaAccountPeriodRestResSchema, mtaClosedAccountPeriodRestResSchema, mtaEntitySchema, mtaListItemRestResSchema, mtaPaymentMethodAccountConfigSchema, mtaPaymentMethodEntitySchema, mtaPaymentMethodFloatAccountConfigSchema, mtaPaymentMethodRestResSchema, mtaReconciledTransactionEntitySchema, mtaReconciledTransactionRestResSchema, mtaReconciliationEntitySchema, mtaReconciliationRestResSchema, mtaRestResBaseSchema, mtaRestResSchema, mtaSettlementPayoutRestResSchema, mtaToCmaPayoutPaymentEntitySchema, mtaToCmaPayoutPaymentRestSchema, mtaToCmaPayoutProvisionDataEntitySchema, mtaToCmaPayoutProvisionDataRestSchema, mtaToCmaPayoutRestResSchema, mtaToCmaPayoutSourceDetailEntitySchema, mtaToCmaPayoutSourceDetailRestSchema, mtaToCmaPayoutTargetDetailEntitySchema, mtaToCmaPayoutTargetDetailRestSchema, mtaTransactionEntitySchema, mtaTransactionNestedSchema, mtaTransactionRestResBaseSchema, mtaTransactionRestResSchema, mtaTransactionSearchRestReqSchema, mtaTransactionStatusSummaryRestResSchema, paginatedResSchema, paginationReqSchema, paymentListReportRestReqSchema, paymentProviderEntitySchema, payoutBankFileDownloadHistoryEntitySchema, payoutBankFileEntitySchema, payoutBankFileRestResSchema, payoutEntitySchema, payoutProvisionDataEntitySchema, payoutRestResBaseSchema, payoutRestResSchema, payoutSearchRestReqSchema, payoutStatusSummaryRestResSchema, payoutTransactionEntitySchema, payoutTransactionRestResSchema, payoutTransactionSearchRestReqSchema, payoutUpdateRestReqSchema, projectEntitySchema, projectLedgerRestReqSchema, projectMtaAllocationEntitySchema, projectMtaAllocationRestResSchema, projectNestedEntitySchema, projectRestResSchema, propertyAccountsBalanceRestResSchema, propertyEntitySchema, propertyNestedEntitySchema, propertyRestResBaseSchema, propertyRestResSchema, propertySearchRestReqSchema, queryModeSchema, receiptListReportRestReqSchema, reconcileCmaTransactionRestReqSchema, reconcileMtaTransactionRestReqSchema, reconciledItemsListReportRestReqSchema, settlementPayoutPaymentEntitySchema, settlementPayoutProvisionDataEntitySchema, settlementPayoutRestResSchema, settlementPayoutSourceDetailEntitySchema, settlementPayoutTargetDetailEntitySchema, simpleStringFilterSchema, stateCodeSchema, stringFilterSchema, stringToDateSchema, stringToEndOfDaySchema, stringToStartOfDaySchema, trustTrialBalanceReportRestReqSchema, unknownPayoutPaymentEntitySchema, unknownPayoutProvisionDataEntitySchema, unknownPayoutRestResSchema, unknownPayoutSourceDetailEntitySchema, unknownPayoutTargetDetailEntitySchema, unknownReceiptLedgerRestReqSchema, unreconciledItemsListReportRestReqSchema, updateCmaAccountPeriodReconciledToRestReqSchema, updateCmaOpenReconciliationCurrentBankStatementBalanceRestReqSchema, updateCmaSettlementPayoutRestReqSchema, updateMenuRestReqSchema, updateMtaAccountPeriodReconciledToRestReqSchema, updateMtaRestReqSchema, updateMtaSettlementPayoutRestReqSchema, updateMtaToCmaPayoutRestReqSchema, updateOpenReconciliationCurrentBankStatementBalanceRestReqSchema, updateSettlementPayoutRestReqSchema, updateUnknownPayoutRestReqSchema, updateUnknownPayoutTargetDetailRestReqSchema, userEntitySchema, userRestResSchema };
|
package/dist/esm/schemas/cma-account-period/cma-account-period-closing-summary.rest.schema.d.ts
CHANGED
|
@@ -316,7 +316,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
316
316
|
firstName?: string | null | undefined;
|
|
317
317
|
lastName?: string | null | undefined;
|
|
318
318
|
} | null | undefined;
|
|
319
|
-
} & any, "cma"> | null | undefined;
|
|
319
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
320
320
|
subsequentTransactions?: Omit<{
|
|
321
321
|
status: "clearing" | "cleared" | "reconciled";
|
|
322
322
|
id: string;
|
|
@@ -408,7 +408,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
408
408
|
firstName?: string | null | undefined;
|
|
409
409
|
lastName?: string | null | undefined;
|
|
410
410
|
} | null | undefined;
|
|
411
|
-
} & any, "cma">[] | null | undefined;
|
|
411
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
412
412
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
413
413
|
isReceipt?: boolean | null | undefined;
|
|
414
414
|
isPayment?: boolean | null | undefined;
|
|
@@ -601,7 +601,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
601
601
|
firstName?: string | null | undefined;
|
|
602
602
|
lastName?: string | null | undefined;
|
|
603
603
|
} | null | undefined;
|
|
604
|
-
} & any) | null | undefined;
|
|
604
|
+
} & /*elided*/ any) | null | undefined;
|
|
605
605
|
subsequentTransactions?: ({
|
|
606
606
|
status: string;
|
|
607
607
|
id: string;
|
|
@@ -693,7 +693,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
693
693
|
firstName?: string | null | undefined;
|
|
694
694
|
lastName?: string | null | undefined;
|
|
695
695
|
} | null | undefined;
|
|
696
|
-
} & any)[] | null | undefined;
|
|
696
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
697
697
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
698
698
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
699
699
|
}>, "many">>>>;
|
|
@@ -882,7 +882,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
882
882
|
firstName?: string | null | undefined;
|
|
883
883
|
lastName?: string | null | undefined;
|
|
884
884
|
} | null | undefined;
|
|
885
|
-
} & any, "cma"> | null | undefined;
|
|
885
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
886
886
|
subsequentTransactions?: Omit<{
|
|
887
887
|
status: "clearing" | "cleared" | "reconciled";
|
|
888
888
|
id: string;
|
|
@@ -974,7 +974,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
974
974
|
firstName?: string | null | undefined;
|
|
975
975
|
lastName?: string | null | undefined;
|
|
976
976
|
} | null | undefined;
|
|
977
|
-
} & any, "cma">[] | null | undefined;
|
|
977
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
978
978
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
979
979
|
isReceipt?: boolean | null | undefined;
|
|
980
980
|
isPayment?: boolean | null | undefined;
|
|
@@ -1167,7 +1167,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1167
1167
|
firstName?: string | null | undefined;
|
|
1168
1168
|
lastName?: string | null | undefined;
|
|
1169
1169
|
} | null | undefined;
|
|
1170
|
-
} & any) | null | undefined;
|
|
1170
|
+
} & /*elided*/ any) | null | undefined;
|
|
1171
1171
|
subsequentTransactions?: ({
|
|
1172
1172
|
status: string;
|
|
1173
1173
|
id: string;
|
|
@@ -1259,7 +1259,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1259
1259
|
firstName?: string | null | undefined;
|
|
1260
1260
|
lastName?: string | null | undefined;
|
|
1261
1261
|
} | null | undefined;
|
|
1262
|
-
} & any)[] | null | undefined;
|
|
1262
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
1263
1263
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1264
1264
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
1265
1265
|
}>, "many">>>>;
|
|
@@ -1450,7 +1450,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1450
1450
|
firstName?: string | null | undefined;
|
|
1451
1451
|
lastName?: string | null | undefined;
|
|
1452
1452
|
} | null | undefined;
|
|
1453
|
-
} & any, "cma"> | null | undefined;
|
|
1453
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
1454
1454
|
subsequentTransactions?: Omit<{
|
|
1455
1455
|
status: "clearing" | "cleared" | "reconciled";
|
|
1456
1456
|
id: string;
|
|
@@ -1542,7 +1542,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1542
1542
|
firstName?: string | null | undefined;
|
|
1543
1543
|
lastName?: string | null | undefined;
|
|
1544
1544
|
} | null | undefined;
|
|
1545
|
-
} & any, "cma">[] | null | undefined;
|
|
1545
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
1546
1546
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1547
1547
|
isReceipt?: boolean | null | undefined;
|
|
1548
1548
|
isPayment?: boolean | null | undefined;
|
|
@@ -1736,7 +1736,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1736
1736
|
firstName?: string | null | undefined;
|
|
1737
1737
|
lastName?: string | null | undefined;
|
|
1738
1738
|
} | null | undefined;
|
|
1739
|
-
} & any, "cma"> | null | undefined;
|
|
1739
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
1740
1740
|
subsequentTransactions?: Omit<{
|
|
1741
1741
|
status: "clearing" | "cleared" | "reconciled";
|
|
1742
1742
|
id: string;
|
|
@@ -1828,7 +1828,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
1828
1828
|
firstName?: string | null | undefined;
|
|
1829
1829
|
lastName?: string | null | undefined;
|
|
1830
1830
|
} | null | undefined;
|
|
1831
|
-
} & any, "cma">[] | null | undefined;
|
|
1831
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
1832
1832
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1833
1833
|
isReceipt?: boolean | null | undefined;
|
|
1834
1834
|
isPayment?: boolean | null | undefined;
|
|
@@ -2025,7 +2025,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2025
2025
|
firstName?: string | null | undefined;
|
|
2026
2026
|
lastName?: string | null | undefined;
|
|
2027
2027
|
} | null | undefined;
|
|
2028
|
-
} & any) | null | undefined;
|
|
2028
|
+
} & /*elided*/ any) | null | undefined;
|
|
2029
2029
|
subsequentTransactions?: ({
|
|
2030
2030
|
status: string;
|
|
2031
2031
|
id: string;
|
|
@@ -2117,7 +2117,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2117
2117
|
firstName?: string | null | undefined;
|
|
2118
2118
|
lastName?: string | null | undefined;
|
|
2119
2119
|
} | null | undefined;
|
|
2120
|
-
} & any)[] | null | undefined;
|
|
2120
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
2121
2121
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2122
2122
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
2123
2123
|
})[] | null | undefined;
|
|
@@ -2305,7 +2305,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2305
2305
|
firstName?: string | null | undefined;
|
|
2306
2306
|
lastName?: string | null | undefined;
|
|
2307
2307
|
} | null | undefined;
|
|
2308
|
-
} & any) | null | undefined;
|
|
2308
|
+
} & /*elided*/ any) | null | undefined;
|
|
2309
2309
|
subsequentTransactions?: ({
|
|
2310
2310
|
status: string;
|
|
2311
2311
|
id: string;
|
|
@@ -2397,7 +2397,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2397
2397
|
firstName?: string | null | undefined;
|
|
2398
2398
|
lastName?: string | null | undefined;
|
|
2399
2399
|
} | null | undefined;
|
|
2400
|
-
} & any)[] | null | undefined;
|
|
2400
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
2401
2401
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2402
2402
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
2403
2403
|
})[] | null | undefined;
|
|
@@ -2611,7 +2611,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2611
2611
|
firstName?: string | null | undefined;
|
|
2612
2612
|
lastName?: string | null | undefined;
|
|
2613
2613
|
} | null | undefined;
|
|
2614
|
-
} & any, "cma"> | null | undefined;
|
|
2614
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
2615
2615
|
subsequentTransactions?: Omit<{
|
|
2616
2616
|
status: "clearing" | "cleared" | "reconciled";
|
|
2617
2617
|
id: string;
|
|
@@ -2703,7 +2703,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2703
2703
|
firstName?: string | null | undefined;
|
|
2704
2704
|
lastName?: string | null | undefined;
|
|
2705
2705
|
} | null | undefined;
|
|
2706
|
-
} & any, "cma">[] | null | undefined;
|
|
2706
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
2707
2707
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2708
2708
|
isReceipt?: boolean | null | undefined;
|
|
2709
2709
|
isPayment?: boolean | null | undefined;
|
|
@@ -2897,7 +2897,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2897
2897
|
firstName?: string | null | undefined;
|
|
2898
2898
|
lastName?: string | null | undefined;
|
|
2899
2899
|
} | null | undefined;
|
|
2900
|
-
} & any, "cma"> | null | undefined;
|
|
2900
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
2901
2901
|
subsequentTransactions?: Omit<{
|
|
2902
2902
|
status: "clearing" | "cleared" | "reconciled";
|
|
2903
2903
|
id: string;
|
|
@@ -2989,7 +2989,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
2989
2989
|
firstName?: string | null | undefined;
|
|
2990
2990
|
lastName?: string | null | undefined;
|
|
2991
2991
|
} | null | undefined;
|
|
2992
|
-
} & any, "cma">[] | null | undefined;
|
|
2992
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
2993
2993
|
reconciledTransactions?: z.output<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2994
2994
|
isReceipt?: boolean | null | undefined;
|
|
2995
2995
|
isPayment?: boolean | null | undefined;
|
|
@@ -3232,7 +3232,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
3232
3232
|
firstName?: string | null | undefined;
|
|
3233
3233
|
lastName?: string | null | undefined;
|
|
3234
3234
|
} | null | undefined;
|
|
3235
|
-
} & any) | null | undefined;
|
|
3235
|
+
} & /*elided*/ any) | null | undefined;
|
|
3236
3236
|
subsequentTransactions?: ({
|
|
3237
3237
|
status: string;
|
|
3238
3238
|
id: string;
|
|
@@ -3324,7 +3324,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
3324
3324
|
firstName?: string | null | undefined;
|
|
3325
3325
|
lastName?: string | null | undefined;
|
|
3326
3326
|
} | null | undefined;
|
|
3327
|
-
} & any)[] | null | undefined;
|
|
3327
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
3328
3328
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
3329
3329
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
3330
3330
|
})[] | null | undefined;
|
|
@@ -3512,7 +3512,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
3512
3512
|
firstName?: string | null | undefined;
|
|
3513
3513
|
lastName?: string | null | undefined;
|
|
3514
3514
|
} | null | undefined;
|
|
3515
|
-
} & any) | null | undefined;
|
|
3515
|
+
} & /*elided*/ any) | null | undefined;
|
|
3516
3516
|
subsequentTransactions?: ({
|
|
3517
3517
|
status: string;
|
|
3518
3518
|
id: string;
|
|
@@ -3604,7 +3604,7 @@ export declare const cmaAccountPeriodClosingSummaryRestResSchema: z.ZodObject<{
|
|
|
3604
3604
|
firstName?: string | null | undefined;
|
|
3605
3605
|
lastName?: string | null | undefined;
|
|
3606
3606
|
} | null | undefined;
|
|
3607
|
-
} & any)[] | null | undefined;
|
|
3607
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
3608
3608
|
reconciledTransactions?: z.input<typeof import("..").cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
3609
3609
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
3610
3610
|
})[] | null | undefined;
|
package/dist/esm/schemas/cma-reconciled-transaction/cma-reconciled-transaction.rest.schema.d.ts
CHANGED
|
@@ -195,7 +195,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
195
195
|
firstName?: string | null | undefined;
|
|
196
196
|
lastName?: string | null | undefined;
|
|
197
197
|
} | null | undefined;
|
|
198
|
-
} & any, "cma"> | null | undefined;
|
|
198
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
199
199
|
subsequentTransactions?: Omit<{
|
|
200
200
|
status: "clearing" | "cleared" | "reconciled";
|
|
201
201
|
id: string;
|
|
@@ -287,7 +287,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
287
287
|
firstName?: string | null | undefined;
|
|
288
288
|
lastName?: string | null | undefined;
|
|
289
289
|
} | null | undefined;
|
|
290
|
-
} & any, "cma">[] | null | undefined;
|
|
290
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
291
291
|
reconciledTransactions?: z.output<typeof cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
292
292
|
isReceipt?: boolean | null | undefined;
|
|
293
293
|
isPayment?: boolean | null | undefined;
|
|
@@ -480,7 +480,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
480
480
|
firstName?: string | null | undefined;
|
|
481
481
|
lastName?: string | null | undefined;
|
|
482
482
|
} | null | undefined;
|
|
483
|
-
} & any) | null | undefined;
|
|
483
|
+
} & /*elided*/ any) | null | undefined;
|
|
484
484
|
subsequentTransactions?: ({
|
|
485
485
|
status: string;
|
|
486
486
|
id: string;
|
|
@@ -572,7 +572,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
572
572
|
firstName?: string | null | undefined;
|
|
573
573
|
lastName?: string | null | undefined;
|
|
574
574
|
} | null | undefined;
|
|
575
|
-
} & any)[] | null | undefined;
|
|
575
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
576
576
|
reconciledTransactions?: z.input<typeof cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
577
577
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
578
578
|
}>>>;
|
|
@@ -1750,7 +1750,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
1750
1750
|
firstName?: string | null | undefined;
|
|
1751
1751
|
lastName?: string | null | undefined;
|
|
1752
1752
|
} | null | undefined;
|
|
1753
|
-
} & any, "cma"> | null | undefined;
|
|
1753
|
+
} & /*elided*/ any, "cma"> | null | undefined;
|
|
1754
1754
|
subsequentTransactions?: Omit<{
|
|
1755
1755
|
status: "clearing" | "cleared" | "reconciled";
|
|
1756
1756
|
id: string;
|
|
@@ -1842,7 +1842,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
1842
1842
|
firstName?: string | null | undefined;
|
|
1843
1843
|
lastName?: string | null | undefined;
|
|
1844
1844
|
} | null | undefined;
|
|
1845
|
-
} & any, "cma">[] | null | undefined;
|
|
1845
|
+
} & /*elided*/ any, "cma">[] | null | undefined;
|
|
1846
1846
|
reconciledTransactions?: z.output<typeof cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
1847
1847
|
isReceipt?: boolean | null | undefined;
|
|
1848
1848
|
isPayment?: boolean | null | undefined;
|
|
@@ -2137,7 +2137,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
2137
2137
|
firstName?: string | null | undefined;
|
|
2138
2138
|
lastName?: string | null | undefined;
|
|
2139
2139
|
} | null | undefined;
|
|
2140
|
-
} & any) | null | undefined;
|
|
2140
|
+
} & /*elided*/ any) | null | undefined;
|
|
2141
2141
|
subsequentTransactions?: ({
|
|
2142
2142
|
status: string;
|
|
2143
2143
|
id: string;
|
|
@@ -2229,7 +2229,7 @@ export declare const cmaReconciledTransactionRestResSchema: z.ZodObject<{
|
|
|
2229
2229
|
firstName?: string | null | undefined;
|
|
2230
2230
|
lastName?: string | null | undefined;
|
|
2231
2231
|
} | null | undefined;
|
|
2232
|
-
} & any)[] | null | undefined;
|
|
2232
|
+
} & /*elided*/ any)[] | null | undefined;
|
|
2233
2233
|
reconciledTransactions?: z.input<typeof cmaReconciledTransactionRestResSchema>[] | null | undefined;
|
|
2234
2234
|
payout?: z.input<typeof import("..").payoutEntitySchema> | null | undefined;
|
|
2235
2235
|
}) | undefined;
|