@mbanq/core-sdk-js 0.33.0 → 0.35.0
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/commands/index.d.mts +1546 -1
- package/dist/commands/index.d.ts +1546 -1
- package/dist/commands/index.js +2 -2
- package/dist/commands/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -22664,6 +22664,1551 @@ declare const DeleteAcquiredCard: (params: DeleteAcquiredCardRequest) => Command
|
|
|
22664
22664
|
*/
|
|
22665
22665
|
declare const GetAcquiredCardPublicKey: () => Command<undefined, AcquiredCardPublicKeyResponse>;
|
|
22666
22666
|
|
|
22667
|
+
declare const CreditAccountPendingTransactionsSchema: z$1.ZodObject<{
|
|
22668
|
+
totalFilteredRecords: z$1.ZodNumber;
|
|
22669
|
+
pageItems: z$1.ZodArray<z$1.ZodObject<{
|
|
22670
|
+
id: z$1.ZodNumber;
|
|
22671
|
+
cardAuthorization: z$1.ZodObject<{
|
|
22672
|
+
id: z$1.ZodNumber;
|
|
22673
|
+
internalId: z$1.ZodString;
|
|
22674
|
+
externalAuthId: z$1.ZodString;
|
|
22675
|
+
externalOriginalAuthId: z$1.ZodString;
|
|
22676
|
+
externalCardId: z$1.ZodString;
|
|
22677
|
+
authType: z$1.ZodString;
|
|
22678
|
+
gatewayToken: z$1.ZodString;
|
|
22679
|
+
transactionType: z$1.ZodString;
|
|
22680
|
+
account: z$1.ZodObject<{
|
|
22681
|
+
accountToken: z$1.ZodString;
|
|
22682
|
+
cardToken: z$1.ZodString;
|
|
22683
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22684
|
+
cardToken: string;
|
|
22685
|
+
accountToken: string;
|
|
22686
|
+
}, {
|
|
22687
|
+
cardToken: string;
|
|
22688
|
+
accountToken: string;
|
|
22689
|
+
}>;
|
|
22690
|
+
currency: z$1.ZodString;
|
|
22691
|
+
amount: z$1.ZodNumber;
|
|
22692
|
+
amountDetails: z$1.ZodObject<{
|
|
22693
|
+
cashBackAmount: z$1.ZodNumber;
|
|
22694
|
+
exchangeRate: z$1.ZodNumber;
|
|
22695
|
+
localCurrency: z$1.ZodString;
|
|
22696
|
+
localCurrencyAmount: z$1.ZodNumber;
|
|
22697
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22698
|
+
exchangeRate: number;
|
|
22699
|
+
cashBackAmount: number;
|
|
22700
|
+
localCurrency: string;
|
|
22701
|
+
localCurrencyAmount: number;
|
|
22702
|
+
}, {
|
|
22703
|
+
exchangeRate: number;
|
|
22704
|
+
cashBackAmount: number;
|
|
22705
|
+
localCurrency: string;
|
|
22706
|
+
localCurrencyAmount: number;
|
|
22707
|
+
}>;
|
|
22708
|
+
isEcommerce: z$1.ZodBoolean;
|
|
22709
|
+
returnBalance: z$1.ZodBoolean;
|
|
22710
|
+
transaction: z$1.ZodObject<{
|
|
22711
|
+
entryType: z$1.ZodString;
|
|
22712
|
+
validationResults: z$1.ZodObject<{
|
|
22713
|
+
aav: z$1.ZodString;
|
|
22714
|
+
arqc: z$1.ZodString;
|
|
22715
|
+
avsResult: z$1.ZodString;
|
|
22716
|
+
cvv1: z$1.ZodString;
|
|
22717
|
+
cvv2: z$1.ZodString;
|
|
22718
|
+
cvv3: z$1.ZodString;
|
|
22719
|
+
offlinePin: z$1.ZodString;
|
|
22720
|
+
pin: z$1.ZodString;
|
|
22721
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22722
|
+
aav: string;
|
|
22723
|
+
arqc: string;
|
|
22724
|
+
avsResult: string;
|
|
22725
|
+
cvv1: string;
|
|
22726
|
+
cvv2: string;
|
|
22727
|
+
cvv3: string;
|
|
22728
|
+
offlinePin: string;
|
|
22729
|
+
pin: string;
|
|
22730
|
+
}, {
|
|
22731
|
+
aav: string;
|
|
22732
|
+
arqc: string;
|
|
22733
|
+
avsResult: string;
|
|
22734
|
+
cvv1: string;
|
|
22735
|
+
cvv2: string;
|
|
22736
|
+
cvv3: string;
|
|
22737
|
+
offlinePin: string;
|
|
22738
|
+
pin: string;
|
|
22739
|
+
}>;
|
|
22740
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22741
|
+
entryType: string;
|
|
22742
|
+
validationResults: {
|
|
22743
|
+
aav: string;
|
|
22744
|
+
arqc: string;
|
|
22745
|
+
avsResult: string;
|
|
22746
|
+
cvv1: string;
|
|
22747
|
+
cvv2: string;
|
|
22748
|
+
cvv3: string;
|
|
22749
|
+
offlinePin: string;
|
|
22750
|
+
pin: string;
|
|
22751
|
+
};
|
|
22752
|
+
}, {
|
|
22753
|
+
entryType: string;
|
|
22754
|
+
validationResults: {
|
|
22755
|
+
aav: string;
|
|
22756
|
+
arqc: string;
|
|
22757
|
+
avsResult: string;
|
|
22758
|
+
cvv1: string;
|
|
22759
|
+
cvv2: string;
|
|
22760
|
+
cvv3: string;
|
|
22761
|
+
offlinePin: string;
|
|
22762
|
+
pin: string;
|
|
22763
|
+
};
|
|
22764
|
+
}>;
|
|
22765
|
+
merchant: z$1.ZodObject<{
|
|
22766
|
+
mcc: z$1.ZodNumber;
|
|
22767
|
+
merchantId: z$1.ZodString;
|
|
22768
|
+
description: z$1.ZodString;
|
|
22769
|
+
postalcode: z$1.ZodString;
|
|
22770
|
+
country: z$1.ZodString;
|
|
22771
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22772
|
+
description: string;
|
|
22773
|
+
country: string;
|
|
22774
|
+
mcc: number;
|
|
22775
|
+
merchantId: string;
|
|
22776
|
+
postalcode: string;
|
|
22777
|
+
}, {
|
|
22778
|
+
description: string;
|
|
22779
|
+
country: string;
|
|
22780
|
+
mcc: number;
|
|
22781
|
+
merchantId: string;
|
|
22782
|
+
postalcode: string;
|
|
22783
|
+
}>;
|
|
22784
|
+
network: z$1.ZodString;
|
|
22785
|
+
expiryDate: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
22786
|
+
executionCode: z$1.ZodString;
|
|
22787
|
+
executionMessage: z$1.ZodString;
|
|
22788
|
+
status: z$1.ZodString;
|
|
22789
|
+
createdAt: z$1.ZodString;
|
|
22790
|
+
clearedAmount: z$1.ZodNumber;
|
|
22791
|
+
international: z$1.ZodBoolean;
|
|
22792
|
+
incremental: z$1.ZodBoolean;
|
|
22793
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22794
|
+
status: string;
|
|
22795
|
+
id: number;
|
|
22796
|
+
currency: string;
|
|
22797
|
+
amount: number;
|
|
22798
|
+
createdAt: string;
|
|
22799
|
+
transactionType: string;
|
|
22800
|
+
network: string;
|
|
22801
|
+
internalId: string;
|
|
22802
|
+
externalAuthId: string;
|
|
22803
|
+
externalOriginalAuthId: string;
|
|
22804
|
+
authType: string;
|
|
22805
|
+
returnBalance: boolean;
|
|
22806
|
+
merchant: {
|
|
22807
|
+
description: string;
|
|
22808
|
+
country: string;
|
|
22809
|
+
mcc: number;
|
|
22810
|
+
merchantId: string;
|
|
22811
|
+
postalcode: string;
|
|
22812
|
+
};
|
|
22813
|
+
expiryDate: [number, number, number];
|
|
22814
|
+
executionCode: string;
|
|
22815
|
+
executionMessage: string;
|
|
22816
|
+
clearedAmount: number;
|
|
22817
|
+
international: boolean;
|
|
22818
|
+
incremental: boolean;
|
|
22819
|
+
transaction: {
|
|
22820
|
+
entryType: string;
|
|
22821
|
+
validationResults: {
|
|
22822
|
+
aav: string;
|
|
22823
|
+
arqc: string;
|
|
22824
|
+
avsResult: string;
|
|
22825
|
+
cvv1: string;
|
|
22826
|
+
cvv2: string;
|
|
22827
|
+
cvv3: string;
|
|
22828
|
+
offlinePin: string;
|
|
22829
|
+
pin: string;
|
|
22830
|
+
};
|
|
22831
|
+
};
|
|
22832
|
+
account: {
|
|
22833
|
+
cardToken: string;
|
|
22834
|
+
accountToken: string;
|
|
22835
|
+
};
|
|
22836
|
+
externalCardId: string;
|
|
22837
|
+
gatewayToken: string;
|
|
22838
|
+
amountDetails: {
|
|
22839
|
+
exchangeRate: number;
|
|
22840
|
+
cashBackAmount: number;
|
|
22841
|
+
localCurrency: string;
|
|
22842
|
+
localCurrencyAmount: number;
|
|
22843
|
+
};
|
|
22844
|
+
isEcommerce: boolean;
|
|
22845
|
+
}, {
|
|
22846
|
+
status: string;
|
|
22847
|
+
id: number;
|
|
22848
|
+
currency: string;
|
|
22849
|
+
amount: number;
|
|
22850
|
+
createdAt: string;
|
|
22851
|
+
transactionType: string;
|
|
22852
|
+
network: string;
|
|
22853
|
+
internalId: string;
|
|
22854
|
+
externalAuthId: string;
|
|
22855
|
+
externalOriginalAuthId: string;
|
|
22856
|
+
authType: string;
|
|
22857
|
+
returnBalance: boolean;
|
|
22858
|
+
merchant: {
|
|
22859
|
+
description: string;
|
|
22860
|
+
country: string;
|
|
22861
|
+
mcc: number;
|
|
22862
|
+
merchantId: string;
|
|
22863
|
+
postalcode: string;
|
|
22864
|
+
};
|
|
22865
|
+
expiryDate: [number, number, number];
|
|
22866
|
+
executionCode: string;
|
|
22867
|
+
executionMessage: string;
|
|
22868
|
+
clearedAmount: number;
|
|
22869
|
+
international: boolean;
|
|
22870
|
+
incremental: boolean;
|
|
22871
|
+
transaction: {
|
|
22872
|
+
entryType: string;
|
|
22873
|
+
validationResults: {
|
|
22874
|
+
aav: string;
|
|
22875
|
+
arqc: string;
|
|
22876
|
+
avsResult: string;
|
|
22877
|
+
cvv1: string;
|
|
22878
|
+
cvv2: string;
|
|
22879
|
+
cvv3: string;
|
|
22880
|
+
offlinePin: string;
|
|
22881
|
+
pin: string;
|
|
22882
|
+
};
|
|
22883
|
+
};
|
|
22884
|
+
account: {
|
|
22885
|
+
cardToken: string;
|
|
22886
|
+
accountToken: string;
|
|
22887
|
+
};
|
|
22888
|
+
externalCardId: string;
|
|
22889
|
+
gatewayToken: string;
|
|
22890
|
+
amountDetails: {
|
|
22891
|
+
exchangeRate: number;
|
|
22892
|
+
cashBackAmount: number;
|
|
22893
|
+
localCurrency: string;
|
|
22894
|
+
localCurrencyAmount: number;
|
|
22895
|
+
};
|
|
22896
|
+
isEcommerce: boolean;
|
|
22897
|
+
}>;
|
|
22898
|
+
typeOf: z$1.ZodString;
|
|
22899
|
+
valueDate: z$1.ZodString;
|
|
22900
|
+
amount: z$1.ZodNumber;
|
|
22901
|
+
pendingAmount: z$1.ZodNumber;
|
|
22902
|
+
createdAt: z$1.ZodString;
|
|
22903
|
+
manual: z$1.ZodBoolean;
|
|
22904
|
+
active: z$1.ZodBoolean;
|
|
22905
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22906
|
+
id: number;
|
|
22907
|
+
amount: number;
|
|
22908
|
+
createdAt: string;
|
|
22909
|
+
valueDate: string;
|
|
22910
|
+
active: boolean;
|
|
22911
|
+
typeOf: string;
|
|
22912
|
+
pendingAmount: number;
|
|
22913
|
+
manual: boolean;
|
|
22914
|
+
cardAuthorization: {
|
|
22915
|
+
status: string;
|
|
22916
|
+
id: number;
|
|
22917
|
+
currency: string;
|
|
22918
|
+
amount: number;
|
|
22919
|
+
createdAt: string;
|
|
22920
|
+
transactionType: string;
|
|
22921
|
+
network: string;
|
|
22922
|
+
internalId: string;
|
|
22923
|
+
externalAuthId: string;
|
|
22924
|
+
externalOriginalAuthId: string;
|
|
22925
|
+
authType: string;
|
|
22926
|
+
returnBalance: boolean;
|
|
22927
|
+
merchant: {
|
|
22928
|
+
description: string;
|
|
22929
|
+
country: string;
|
|
22930
|
+
mcc: number;
|
|
22931
|
+
merchantId: string;
|
|
22932
|
+
postalcode: string;
|
|
22933
|
+
};
|
|
22934
|
+
expiryDate: [number, number, number];
|
|
22935
|
+
executionCode: string;
|
|
22936
|
+
executionMessage: string;
|
|
22937
|
+
clearedAmount: number;
|
|
22938
|
+
international: boolean;
|
|
22939
|
+
incremental: boolean;
|
|
22940
|
+
transaction: {
|
|
22941
|
+
entryType: string;
|
|
22942
|
+
validationResults: {
|
|
22943
|
+
aav: string;
|
|
22944
|
+
arqc: string;
|
|
22945
|
+
avsResult: string;
|
|
22946
|
+
cvv1: string;
|
|
22947
|
+
cvv2: string;
|
|
22948
|
+
cvv3: string;
|
|
22949
|
+
offlinePin: string;
|
|
22950
|
+
pin: string;
|
|
22951
|
+
};
|
|
22952
|
+
};
|
|
22953
|
+
account: {
|
|
22954
|
+
cardToken: string;
|
|
22955
|
+
accountToken: string;
|
|
22956
|
+
};
|
|
22957
|
+
externalCardId: string;
|
|
22958
|
+
gatewayToken: string;
|
|
22959
|
+
amountDetails: {
|
|
22960
|
+
exchangeRate: number;
|
|
22961
|
+
cashBackAmount: number;
|
|
22962
|
+
localCurrency: string;
|
|
22963
|
+
localCurrencyAmount: number;
|
|
22964
|
+
};
|
|
22965
|
+
isEcommerce: boolean;
|
|
22966
|
+
};
|
|
22967
|
+
}, {
|
|
22968
|
+
id: number;
|
|
22969
|
+
amount: number;
|
|
22970
|
+
createdAt: string;
|
|
22971
|
+
valueDate: string;
|
|
22972
|
+
active: boolean;
|
|
22973
|
+
typeOf: string;
|
|
22974
|
+
pendingAmount: number;
|
|
22975
|
+
manual: boolean;
|
|
22976
|
+
cardAuthorization: {
|
|
22977
|
+
status: string;
|
|
22978
|
+
id: number;
|
|
22979
|
+
currency: string;
|
|
22980
|
+
amount: number;
|
|
22981
|
+
createdAt: string;
|
|
22982
|
+
transactionType: string;
|
|
22983
|
+
network: string;
|
|
22984
|
+
internalId: string;
|
|
22985
|
+
externalAuthId: string;
|
|
22986
|
+
externalOriginalAuthId: string;
|
|
22987
|
+
authType: string;
|
|
22988
|
+
returnBalance: boolean;
|
|
22989
|
+
merchant: {
|
|
22990
|
+
description: string;
|
|
22991
|
+
country: string;
|
|
22992
|
+
mcc: number;
|
|
22993
|
+
merchantId: string;
|
|
22994
|
+
postalcode: string;
|
|
22995
|
+
};
|
|
22996
|
+
expiryDate: [number, number, number];
|
|
22997
|
+
executionCode: string;
|
|
22998
|
+
executionMessage: string;
|
|
22999
|
+
clearedAmount: number;
|
|
23000
|
+
international: boolean;
|
|
23001
|
+
incremental: boolean;
|
|
23002
|
+
transaction: {
|
|
23003
|
+
entryType: string;
|
|
23004
|
+
validationResults: {
|
|
23005
|
+
aav: string;
|
|
23006
|
+
arqc: string;
|
|
23007
|
+
avsResult: string;
|
|
23008
|
+
cvv1: string;
|
|
23009
|
+
cvv2: string;
|
|
23010
|
+
cvv3: string;
|
|
23011
|
+
offlinePin: string;
|
|
23012
|
+
pin: string;
|
|
23013
|
+
};
|
|
23014
|
+
};
|
|
23015
|
+
account: {
|
|
23016
|
+
cardToken: string;
|
|
23017
|
+
accountToken: string;
|
|
23018
|
+
};
|
|
23019
|
+
externalCardId: string;
|
|
23020
|
+
gatewayToken: string;
|
|
23021
|
+
amountDetails: {
|
|
23022
|
+
exchangeRate: number;
|
|
23023
|
+
cashBackAmount: number;
|
|
23024
|
+
localCurrency: string;
|
|
23025
|
+
localCurrencyAmount: number;
|
|
23026
|
+
};
|
|
23027
|
+
isEcommerce: boolean;
|
|
23028
|
+
};
|
|
23029
|
+
}>, "many">;
|
|
23030
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23031
|
+
totalFilteredRecords: number;
|
|
23032
|
+
pageItems: {
|
|
23033
|
+
id: number;
|
|
23034
|
+
amount: number;
|
|
23035
|
+
createdAt: string;
|
|
23036
|
+
valueDate: string;
|
|
23037
|
+
active: boolean;
|
|
23038
|
+
typeOf: string;
|
|
23039
|
+
pendingAmount: number;
|
|
23040
|
+
manual: boolean;
|
|
23041
|
+
cardAuthorization: {
|
|
23042
|
+
status: string;
|
|
23043
|
+
id: number;
|
|
23044
|
+
currency: string;
|
|
23045
|
+
amount: number;
|
|
23046
|
+
createdAt: string;
|
|
23047
|
+
transactionType: string;
|
|
23048
|
+
network: string;
|
|
23049
|
+
internalId: string;
|
|
23050
|
+
externalAuthId: string;
|
|
23051
|
+
externalOriginalAuthId: string;
|
|
23052
|
+
authType: string;
|
|
23053
|
+
returnBalance: boolean;
|
|
23054
|
+
merchant: {
|
|
23055
|
+
description: string;
|
|
23056
|
+
country: string;
|
|
23057
|
+
mcc: number;
|
|
23058
|
+
merchantId: string;
|
|
23059
|
+
postalcode: string;
|
|
23060
|
+
};
|
|
23061
|
+
expiryDate: [number, number, number];
|
|
23062
|
+
executionCode: string;
|
|
23063
|
+
executionMessage: string;
|
|
23064
|
+
clearedAmount: number;
|
|
23065
|
+
international: boolean;
|
|
23066
|
+
incremental: boolean;
|
|
23067
|
+
transaction: {
|
|
23068
|
+
entryType: string;
|
|
23069
|
+
validationResults: {
|
|
23070
|
+
aav: string;
|
|
23071
|
+
arqc: string;
|
|
23072
|
+
avsResult: string;
|
|
23073
|
+
cvv1: string;
|
|
23074
|
+
cvv2: string;
|
|
23075
|
+
cvv3: string;
|
|
23076
|
+
offlinePin: string;
|
|
23077
|
+
pin: string;
|
|
23078
|
+
};
|
|
23079
|
+
};
|
|
23080
|
+
account: {
|
|
23081
|
+
cardToken: string;
|
|
23082
|
+
accountToken: string;
|
|
23083
|
+
};
|
|
23084
|
+
externalCardId: string;
|
|
23085
|
+
gatewayToken: string;
|
|
23086
|
+
amountDetails: {
|
|
23087
|
+
exchangeRate: number;
|
|
23088
|
+
cashBackAmount: number;
|
|
23089
|
+
localCurrency: string;
|
|
23090
|
+
localCurrencyAmount: number;
|
|
23091
|
+
};
|
|
23092
|
+
isEcommerce: boolean;
|
|
23093
|
+
};
|
|
23094
|
+
}[];
|
|
23095
|
+
}, {
|
|
23096
|
+
totalFilteredRecords: number;
|
|
23097
|
+
pageItems: {
|
|
23098
|
+
id: number;
|
|
23099
|
+
amount: number;
|
|
23100
|
+
createdAt: string;
|
|
23101
|
+
valueDate: string;
|
|
23102
|
+
active: boolean;
|
|
23103
|
+
typeOf: string;
|
|
23104
|
+
pendingAmount: number;
|
|
23105
|
+
manual: boolean;
|
|
23106
|
+
cardAuthorization: {
|
|
23107
|
+
status: string;
|
|
23108
|
+
id: number;
|
|
23109
|
+
currency: string;
|
|
23110
|
+
amount: number;
|
|
23111
|
+
createdAt: string;
|
|
23112
|
+
transactionType: string;
|
|
23113
|
+
network: string;
|
|
23114
|
+
internalId: string;
|
|
23115
|
+
externalAuthId: string;
|
|
23116
|
+
externalOriginalAuthId: string;
|
|
23117
|
+
authType: string;
|
|
23118
|
+
returnBalance: boolean;
|
|
23119
|
+
merchant: {
|
|
23120
|
+
description: string;
|
|
23121
|
+
country: string;
|
|
23122
|
+
mcc: number;
|
|
23123
|
+
merchantId: string;
|
|
23124
|
+
postalcode: string;
|
|
23125
|
+
};
|
|
23126
|
+
expiryDate: [number, number, number];
|
|
23127
|
+
executionCode: string;
|
|
23128
|
+
executionMessage: string;
|
|
23129
|
+
clearedAmount: number;
|
|
23130
|
+
international: boolean;
|
|
23131
|
+
incremental: boolean;
|
|
23132
|
+
transaction: {
|
|
23133
|
+
entryType: string;
|
|
23134
|
+
validationResults: {
|
|
23135
|
+
aav: string;
|
|
23136
|
+
arqc: string;
|
|
23137
|
+
avsResult: string;
|
|
23138
|
+
cvv1: string;
|
|
23139
|
+
cvv2: string;
|
|
23140
|
+
cvv3: string;
|
|
23141
|
+
offlinePin: string;
|
|
23142
|
+
pin: string;
|
|
23143
|
+
};
|
|
23144
|
+
};
|
|
23145
|
+
account: {
|
|
23146
|
+
cardToken: string;
|
|
23147
|
+
accountToken: string;
|
|
23148
|
+
};
|
|
23149
|
+
externalCardId: string;
|
|
23150
|
+
gatewayToken: string;
|
|
23151
|
+
amountDetails: {
|
|
23152
|
+
exchangeRate: number;
|
|
23153
|
+
cashBackAmount: number;
|
|
23154
|
+
localCurrency: string;
|
|
23155
|
+
localCurrencyAmount: number;
|
|
23156
|
+
};
|
|
23157
|
+
isEcommerce: boolean;
|
|
23158
|
+
};
|
|
23159
|
+
}[];
|
|
23160
|
+
}>;
|
|
23161
|
+
declare const CreditAccountTransactionSchema: z$1.ZodObject<{
|
|
23162
|
+
id: z$1.ZodNumber;
|
|
23163
|
+
transactionType: z$1.ZodObject<{
|
|
23164
|
+
id: z$1.ZodNumber;
|
|
23165
|
+
code: z$1.ZodString;
|
|
23166
|
+
value: z$1.ZodString;
|
|
23167
|
+
deposit: z$1.ZodBoolean;
|
|
23168
|
+
withdrawal: z$1.ZodBoolean;
|
|
23169
|
+
interestPosting: z$1.ZodBoolean;
|
|
23170
|
+
feeDeduction: z$1.ZodBoolean;
|
|
23171
|
+
writtenoff: z$1.ZodBoolean;
|
|
23172
|
+
overdraftFee: z$1.ZodBoolean;
|
|
23173
|
+
escheat: z$1.ZodBoolean;
|
|
23174
|
+
interestReceivableAccrued: z$1.ZodBoolean;
|
|
23175
|
+
isDebit: z$1.ZodBoolean;
|
|
23176
|
+
chargeBack: z$1.ZodBoolean;
|
|
23177
|
+
isFeeReversal: z$1.ZodBoolean;
|
|
23178
|
+
refund: z$1.ZodBoolean;
|
|
23179
|
+
isDisputeDenied: z$1.ZodBoolean;
|
|
23180
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23181
|
+
value: string;
|
|
23182
|
+
code: string;
|
|
23183
|
+
id: number;
|
|
23184
|
+
escheat: boolean;
|
|
23185
|
+
deposit: boolean;
|
|
23186
|
+
withdrawal: boolean;
|
|
23187
|
+
interestPosting: boolean;
|
|
23188
|
+
feeDeduction: boolean;
|
|
23189
|
+
writtenoff: boolean;
|
|
23190
|
+
overdraftFee: boolean;
|
|
23191
|
+
isDebit: boolean;
|
|
23192
|
+
chargeBack: boolean;
|
|
23193
|
+
isFeeReversal: boolean;
|
|
23194
|
+
refund: boolean;
|
|
23195
|
+
interestReceivableAccrued: boolean;
|
|
23196
|
+
isDisputeDenied: boolean;
|
|
23197
|
+
}, {
|
|
23198
|
+
value: string;
|
|
23199
|
+
code: string;
|
|
23200
|
+
id: number;
|
|
23201
|
+
escheat: boolean;
|
|
23202
|
+
deposit: boolean;
|
|
23203
|
+
withdrawal: boolean;
|
|
23204
|
+
interestPosting: boolean;
|
|
23205
|
+
feeDeduction: boolean;
|
|
23206
|
+
writtenoff: boolean;
|
|
23207
|
+
overdraftFee: boolean;
|
|
23208
|
+
isDebit: boolean;
|
|
23209
|
+
chargeBack: boolean;
|
|
23210
|
+
isFeeReversal: boolean;
|
|
23211
|
+
refund: boolean;
|
|
23212
|
+
interestReceivableAccrued: boolean;
|
|
23213
|
+
isDisputeDenied: boolean;
|
|
23214
|
+
}>;
|
|
23215
|
+
accountId: z$1.ZodNumber;
|
|
23216
|
+
accountNo: z$1.ZodString;
|
|
23217
|
+
date: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23218
|
+
currency: z$1.ZodObject<{
|
|
23219
|
+
code: z$1.ZodString;
|
|
23220
|
+
name: z$1.ZodString;
|
|
23221
|
+
decimalPlaces: z$1.ZodNumber;
|
|
23222
|
+
inMultiplesOf: z$1.ZodNumber;
|
|
23223
|
+
displaySymbol: z$1.ZodString;
|
|
23224
|
+
nameCode: z$1.ZodString;
|
|
23225
|
+
displayLabel: z$1.ZodString;
|
|
23226
|
+
currencyCodeInDigit: z$1.ZodNumber;
|
|
23227
|
+
isBaseCurrency: z$1.ZodBoolean;
|
|
23228
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23229
|
+
code: string;
|
|
23230
|
+
name: string;
|
|
23231
|
+
decimalPlaces: number;
|
|
23232
|
+
displaySymbol: string;
|
|
23233
|
+
nameCode: string;
|
|
23234
|
+
currencyCodeInDigit: number;
|
|
23235
|
+
isBaseCurrency: boolean;
|
|
23236
|
+
inMultiplesOf: number;
|
|
23237
|
+
displayLabel: string;
|
|
23238
|
+
}, {
|
|
23239
|
+
code: string;
|
|
23240
|
+
name: string;
|
|
23241
|
+
decimalPlaces: number;
|
|
23242
|
+
displaySymbol: string;
|
|
23243
|
+
nameCode: string;
|
|
23244
|
+
currencyCodeInDigit: number;
|
|
23245
|
+
isBaseCurrency: boolean;
|
|
23246
|
+
inMultiplesOf: number;
|
|
23247
|
+
displayLabel: string;
|
|
23248
|
+
}>;
|
|
23249
|
+
paymentDetailData: z$1.ZodObject<{
|
|
23250
|
+
id: z$1.ZodNumber;
|
|
23251
|
+
paymentType: z$1.ZodObject<{
|
|
23252
|
+
id: z$1.ZodNumber;
|
|
23253
|
+
name: z$1.ZodString;
|
|
23254
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23255
|
+
name: string;
|
|
23256
|
+
id: number;
|
|
23257
|
+
}, {
|
|
23258
|
+
name: string;
|
|
23259
|
+
id: number;
|
|
23260
|
+
}>;
|
|
23261
|
+
reference: z$1.ZodString;
|
|
23262
|
+
cardAuthorizationData: z$1.ZodObject<{
|
|
23263
|
+
id: z$1.ZodNumber;
|
|
23264
|
+
internalId: z$1.ZodString;
|
|
23265
|
+
externalAuthId: z$1.ZodString;
|
|
23266
|
+
externalOriginalAuthId: z$1.ZodString;
|
|
23267
|
+
externalCardId: z$1.ZodString;
|
|
23268
|
+
authType: z$1.ZodString;
|
|
23269
|
+
gatewayToken: z$1.ZodString;
|
|
23270
|
+
transactionType: z$1.ZodString;
|
|
23271
|
+
account: z$1.ZodAny;
|
|
23272
|
+
currency: z$1.ZodString;
|
|
23273
|
+
amount: z$1.ZodNumber;
|
|
23274
|
+
amountDetails: z$1.ZodAny;
|
|
23275
|
+
isEcommerce: z$1.ZodBoolean;
|
|
23276
|
+
returnBalance: z$1.ZodBoolean;
|
|
23277
|
+
transaction: z$1.ZodAny;
|
|
23278
|
+
merchant: z$1.ZodAny;
|
|
23279
|
+
network: z$1.ZodString;
|
|
23280
|
+
expiryDate: z$1.ZodAny;
|
|
23281
|
+
executionCode: z$1.ZodString;
|
|
23282
|
+
executionMessage: z$1.ZodString;
|
|
23283
|
+
isDFEDenied: z$1.ZodBoolean;
|
|
23284
|
+
status: z$1.ZodString;
|
|
23285
|
+
createdAt: z$1.ZodString;
|
|
23286
|
+
releasedAt: z$1.ZodString;
|
|
23287
|
+
card: z$1.ZodAny;
|
|
23288
|
+
clearedAmount: z$1.ZodNumber;
|
|
23289
|
+
international: z$1.ZodBoolean;
|
|
23290
|
+
flag: z$1.ZodString;
|
|
23291
|
+
incremental: z$1.ZodBoolean;
|
|
23292
|
+
avsData: z$1.ZodAny;
|
|
23293
|
+
pinCapability: z$1.ZodString;
|
|
23294
|
+
riskScore: z$1.ZodString;
|
|
23295
|
+
emv: z$1.ZodAny;
|
|
23296
|
+
isInPersonTapTransaction: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
23297
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23298
|
+
status: string;
|
|
23299
|
+
id: number;
|
|
23300
|
+
currency: string;
|
|
23301
|
+
amount: number;
|
|
23302
|
+
createdAt: string;
|
|
23303
|
+
transactionType: string;
|
|
23304
|
+
network: string;
|
|
23305
|
+
internalId: string;
|
|
23306
|
+
externalAuthId: string;
|
|
23307
|
+
externalOriginalAuthId: string;
|
|
23308
|
+
authType: string;
|
|
23309
|
+
returnBalance: boolean;
|
|
23310
|
+
executionCode: string;
|
|
23311
|
+
executionMessage: string;
|
|
23312
|
+
clearedAmount: number;
|
|
23313
|
+
international: boolean;
|
|
23314
|
+
incremental: boolean;
|
|
23315
|
+
flag: string;
|
|
23316
|
+
externalCardId: string;
|
|
23317
|
+
gatewayToken: string;
|
|
23318
|
+
isEcommerce: boolean;
|
|
23319
|
+
releasedAt: string;
|
|
23320
|
+
pinCapability: string;
|
|
23321
|
+
riskScore: string;
|
|
23322
|
+
isDFEDenied: boolean;
|
|
23323
|
+
merchant?: any;
|
|
23324
|
+
expiryDate?: any;
|
|
23325
|
+
transaction?: any;
|
|
23326
|
+
avsData?: any;
|
|
23327
|
+
emv?: any;
|
|
23328
|
+
account?: any;
|
|
23329
|
+
amountDetails?: any;
|
|
23330
|
+
card?: any;
|
|
23331
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23332
|
+
}, {
|
|
23333
|
+
status: string;
|
|
23334
|
+
id: number;
|
|
23335
|
+
currency: string;
|
|
23336
|
+
amount: number;
|
|
23337
|
+
createdAt: string;
|
|
23338
|
+
transactionType: string;
|
|
23339
|
+
network: string;
|
|
23340
|
+
internalId: string;
|
|
23341
|
+
externalAuthId: string;
|
|
23342
|
+
externalOriginalAuthId: string;
|
|
23343
|
+
authType: string;
|
|
23344
|
+
returnBalance: boolean;
|
|
23345
|
+
executionCode: string;
|
|
23346
|
+
executionMessage: string;
|
|
23347
|
+
clearedAmount: number;
|
|
23348
|
+
international: boolean;
|
|
23349
|
+
incremental: boolean;
|
|
23350
|
+
flag: string;
|
|
23351
|
+
externalCardId: string;
|
|
23352
|
+
gatewayToken: string;
|
|
23353
|
+
isEcommerce: boolean;
|
|
23354
|
+
releasedAt: string;
|
|
23355
|
+
pinCapability: string;
|
|
23356
|
+
riskScore: string;
|
|
23357
|
+
isDFEDenied: boolean;
|
|
23358
|
+
merchant?: any;
|
|
23359
|
+
expiryDate?: any;
|
|
23360
|
+
transaction?: any;
|
|
23361
|
+
avsData?: any;
|
|
23362
|
+
emv?: any;
|
|
23363
|
+
account?: any;
|
|
23364
|
+
amountDetails?: any;
|
|
23365
|
+
card?: any;
|
|
23366
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23367
|
+
}>;
|
|
23368
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23369
|
+
id: number;
|
|
23370
|
+
paymentType: {
|
|
23371
|
+
name: string;
|
|
23372
|
+
id: number;
|
|
23373
|
+
};
|
|
23374
|
+
reference: string;
|
|
23375
|
+
cardAuthorizationData: {
|
|
23376
|
+
status: string;
|
|
23377
|
+
id: number;
|
|
23378
|
+
currency: string;
|
|
23379
|
+
amount: number;
|
|
23380
|
+
createdAt: string;
|
|
23381
|
+
transactionType: string;
|
|
23382
|
+
network: string;
|
|
23383
|
+
internalId: string;
|
|
23384
|
+
externalAuthId: string;
|
|
23385
|
+
externalOriginalAuthId: string;
|
|
23386
|
+
authType: string;
|
|
23387
|
+
returnBalance: boolean;
|
|
23388
|
+
executionCode: string;
|
|
23389
|
+
executionMessage: string;
|
|
23390
|
+
clearedAmount: number;
|
|
23391
|
+
international: boolean;
|
|
23392
|
+
incremental: boolean;
|
|
23393
|
+
flag: string;
|
|
23394
|
+
externalCardId: string;
|
|
23395
|
+
gatewayToken: string;
|
|
23396
|
+
isEcommerce: boolean;
|
|
23397
|
+
releasedAt: string;
|
|
23398
|
+
pinCapability: string;
|
|
23399
|
+
riskScore: string;
|
|
23400
|
+
isDFEDenied: boolean;
|
|
23401
|
+
merchant?: any;
|
|
23402
|
+
expiryDate?: any;
|
|
23403
|
+
transaction?: any;
|
|
23404
|
+
avsData?: any;
|
|
23405
|
+
emv?: any;
|
|
23406
|
+
account?: any;
|
|
23407
|
+
amountDetails?: any;
|
|
23408
|
+
card?: any;
|
|
23409
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23410
|
+
};
|
|
23411
|
+
}, {
|
|
23412
|
+
id: number;
|
|
23413
|
+
paymentType: {
|
|
23414
|
+
name: string;
|
|
23415
|
+
id: number;
|
|
23416
|
+
};
|
|
23417
|
+
reference: string;
|
|
23418
|
+
cardAuthorizationData: {
|
|
23419
|
+
status: string;
|
|
23420
|
+
id: number;
|
|
23421
|
+
currency: string;
|
|
23422
|
+
amount: number;
|
|
23423
|
+
createdAt: string;
|
|
23424
|
+
transactionType: string;
|
|
23425
|
+
network: string;
|
|
23426
|
+
internalId: string;
|
|
23427
|
+
externalAuthId: string;
|
|
23428
|
+
externalOriginalAuthId: string;
|
|
23429
|
+
authType: string;
|
|
23430
|
+
returnBalance: boolean;
|
|
23431
|
+
executionCode: string;
|
|
23432
|
+
executionMessage: string;
|
|
23433
|
+
clearedAmount: number;
|
|
23434
|
+
international: boolean;
|
|
23435
|
+
incremental: boolean;
|
|
23436
|
+
flag: string;
|
|
23437
|
+
externalCardId: string;
|
|
23438
|
+
gatewayToken: string;
|
|
23439
|
+
isEcommerce: boolean;
|
|
23440
|
+
releasedAt: string;
|
|
23441
|
+
pinCapability: string;
|
|
23442
|
+
riskScore: string;
|
|
23443
|
+
isDFEDenied: boolean;
|
|
23444
|
+
merchant?: any;
|
|
23445
|
+
expiryDate?: any;
|
|
23446
|
+
transaction?: any;
|
|
23447
|
+
avsData?: any;
|
|
23448
|
+
emv?: any;
|
|
23449
|
+
account?: any;
|
|
23450
|
+
amountDetails?: any;
|
|
23451
|
+
card?: any;
|
|
23452
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23453
|
+
};
|
|
23454
|
+
}>;
|
|
23455
|
+
amount: z$1.ZodNumber;
|
|
23456
|
+
outstandingChargeAmount: z$1.ZodNumber;
|
|
23457
|
+
runningBalance: z$1.ZodNumber;
|
|
23458
|
+
reversed: z$1.ZodBoolean;
|
|
23459
|
+
interestedPostedAsOn: z$1.ZodBoolean;
|
|
23460
|
+
submittedByUsername: z$1.ZodString;
|
|
23461
|
+
submittedOnDate: z$1.ZodObject<{
|
|
23462
|
+
date: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23463
|
+
time: z$1.ZodObject<{
|
|
23464
|
+
hour: z$1.ZodNumber;
|
|
23465
|
+
minute: z$1.ZodNumber;
|
|
23466
|
+
second: z$1.ZodNumber;
|
|
23467
|
+
nano: z$1.ZodNumber;
|
|
23468
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23469
|
+
hour: number;
|
|
23470
|
+
minute: number;
|
|
23471
|
+
second: number;
|
|
23472
|
+
nano: number;
|
|
23473
|
+
}, {
|
|
23474
|
+
hour: number;
|
|
23475
|
+
minute: number;
|
|
23476
|
+
second: number;
|
|
23477
|
+
nano: number;
|
|
23478
|
+
}>;
|
|
23479
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23480
|
+
date: [number, number, number];
|
|
23481
|
+
time: {
|
|
23482
|
+
hour: number;
|
|
23483
|
+
minute: number;
|
|
23484
|
+
second: number;
|
|
23485
|
+
nano: number;
|
|
23486
|
+
};
|
|
23487
|
+
}, {
|
|
23488
|
+
date: [number, number, number];
|
|
23489
|
+
time: {
|
|
23490
|
+
hour: number;
|
|
23491
|
+
minute: number;
|
|
23492
|
+
second: number;
|
|
23493
|
+
nano: number;
|
|
23494
|
+
};
|
|
23495
|
+
}>;
|
|
23496
|
+
bookingDate: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23497
|
+
subTransactionType: z$1.ZodObject<{
|
|
23498
|
+
id: z$1.ZodNumber;
|
|
23499
|
+
code: z$1.ZodString;
|
|
23500
|
+
value: z$1.ZodString;
|
|
23501
|
+
deposit: z$1.ZodBoolean;
|
|
23502
|
+
withdrawal: z$1.ZodBoolean;
|
|
23503
|
+
interestPosting: z$1.ZodBoolean;
|
|
23504
|
+
feeDeduction: z$1.ZodBoolean;
|
|
23505
|
+
writtenoff: z$1.ZodBoolean;
|
|
23506
|
+
overdraftFee: z$1.ZodBoolean;
|
|
23507
|
+
escheat: z$1.ZodBoolean;
|
|
23508
|
+
interestReceivableAccrued: z$1.ZodBoolean;
|
|
23509
|
+
isDebit: z$1.ZodBoolean;
|
|
23510
|
+
chargeBack: z$1.ZodBoolean;
|
|
23511
|
+
isFeeReversal: z$1.ZodBoolean;
|
|
23512
|
+
refund: z$1.ZodBoolean;
|
|
23513
|
+
isDisputeDenied: z$1.ZodBoolean;
|
|
23514
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23515
|
+
value: string;
|
|
23516
|
+
code: string;
|
|
23517
|
+
id: number;
|
|
23518
|
+
escheat: boolean;
|
|
23519
|
+
deposit: boolean;
|
|
23520
|
+
withdrawal: boolean;
|
|
23521
|
+
interestPosting: boolean;
|
|
23522
|
+
feeDeduction: boolean;
|
|
23523
|
+
writtenoff: boolean;
|
|
23524
|
+
overdraftFee: boolean;
|
|
23525
|
+
isDebit: boolean;
|
|
23526
|
+
chargeBack: boolean;
|
|
23527
|
+
isFeeReversal: boolean;
|
|
23528
|
+
refund: boolean;
|
|
23529
|
+
interestReceivableAccrued: boolean;
|
|
23530
|
+
isDisputeDenied: boolean;
|
|
23531
|
+
}, {
|
|
23532
|
+
value: string;
|
|
23533
|
+
code: string;
|
|
23534
|
+
id: number;
|
|
23535
|
+
escheat: boolean;
|
|
23536
|
+
deposit: boolean;
|
|
23537
|
+
withdrawal: boolean;
|
|
23538
|
+
interestPosting: boolean;
|
|
23539
|
+
feeDeduction: boolean;
|
|
23540
|
+
writtenoff: boolean;
|
|
23541
|
+
overdraftFee: boolean;
|
|
23542
|
+
isDebit: boolean;
|
|
23543
|
+
chargeBack: boolean;
|
|
23544
|
+
isFeeReversal: boolean;
|
|
23545
|
+
refund: boolean;
|
|
23546
|
+
interestReceivableAccrued: boolean;
|
|
23547
|
+
isDisputeDenied: boolean;
|
|
23548
|
+
}>;
|
|
23549
|
+
disputable: z$1.ZodString;
|
|
23550
|
+
status: z$1.ZodString;
|
|
23551
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23552
|
+
status: string;
|
|
23553
|
+
date: [number, number, number];
|
|
23554
|
+
id: number;
|
|
23555
|
+
accountNo: string;
|
|
23556
|
+
currency: {
|
|
23557
|
+
code: string;
|
|
23558
|
+
name: string;
|
|
23559
|
+
decimalPlaces: number;
|
|
23560
|
+
displaySymbol: string;
|
|
23561
|
+
nameCode: string;
|
|
23562
|
+
currencyCodeInDigit: number;
|
|
23563
|
+
isBaseCurrency: boolean;
|
|
23564
|
+
inMultiplesOf: number;
|
|
23565
|
+
displayLabel: string;
|
|
23566
|
+
};
|
|
23567
|
+
amount: number;
|
|
23568
|
+
accountId: number;
|
|
23569
|
+
submittedOnDate: {
|
|
23570
|
+
date: [number, number, number];
|
|
23571
|
+
time: {
|
|
23572
|
+
hour: number;
|
|
23573
|
+
minute: number;
|
|
23574
|
+
second: number;
|
|
23575
|
+
nano: number;
|
|
23576
|
+
};
|
|
23577
|
+
};
|
|
23578
|
+
submittedByUsername: string;
|
|
23579
|
+
transactionType: {
|
|
23580
|
+
value: string;
|
|
23581
|
+
code: string;
|
|
23582
|
+
id: number;
|
|
23583
|
+
escheat: boolean;
|
|
23584
|
+
deposit: boolean;
|
|
23585
|
+
withdrawal: boolean;
|
|
23586
|
+
interestPosting: boolean;
|
|
23587
|
+
feeDeduction: boolean;
|
|
23588
|
+
writtenoff: boolean;
|
|
23589
|
+
overdraftFee: boolean;
|
|
23590
|
+
isDebit: boolean;
|
|
23591
|
+
chargeBack: boolean;
|
|
23592
|
+
isFeeReversal: boolean;
|
|
23593
|
+
refund: boolean;
|
|
23594
|
+
interestReceivableAccrued: boolean;
|
|
23595
|
+
isDisputeDenied: boolean;
|
|
23596
|
+
};
|
|
23597
|
+
paymentDetailData: {
|
|
23598
|
+
id: number;
|
|
23599
|
+
paymentType: {
|
|
23600
|
+
name: string;
|
|
23601
|
+
id: number;
|
|
23602
|
+
};
|
|
23603
|
+
reference: string;
|
|
23604
|
+
cardAuthorizationData: {
|
|
23605
|
+
status: string;
|
|
23606
|
+
id: number;
|
|
23607
|
+
currency: string;
|
|
23608
|
+
amount: number;
|
|
23609
|
+
createdAt: string;
|
|
23610
|
+
transactionType: string;
|
|
23611
|
+
network: string;
|
|
23612
|
+
internalId: string;
|
|
23613
|
+
externalAuthId: string;
|
|
23614
|
+
externalOriginalAuthId: string;
|
|
23615
|
+
authType: string;
|
|
23616
|
+
returnBalance: boolean;
|
|
23617
|
+
executionCode: string;
|
|
23618
|
+
executionMessage: string;
|
|
23619
|
+
clearedAmount: number;
|
|
23620
|
+
international: boolean;
|
|
23621
|
+
incremental: boolean;
|
|
23622
|
+
flag: string;
|
|
23623
|
+
externalCardId: string;
|
|
23624
|
+
gatewayToken: string;
|
|
23625
|
+
isEcommerce: boolean;
|
|
23626
|
+
releasedAt: string;
|
|
23627
|
+
pinCapability: string;
|
|
23628
|
+
riskScore: string;
|
|
23629
|
+
isDFEDenied: boolean;
|
|
23630
|
+
merchant?: any;
|
|
23631
|
+
expiryDate?: any;
|
|
23632
|
+
transaction?: any;
|
|
23633
|
+
avsData?: any;
|
|
23634
|
+
emv?: any;
|
|
23635
|
+
account?: any;
|
|
23636
|
+
amountDetails?: any;
|
|
23637
|
+
card?: any;
|
|
23638
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23639
|
+
};
|
|
23640
|
+
};
|
|
23641
|
+
runningBalance: number;
|
|
23642
|
+
reversed: boolean;
|
|
23643
|
+
interestedPostedAsOn: boolean;
|
|
23644
|
+
bookingDate: [number, number, number];
|
|
23645
|
+
subTransactionType: {
|
|
23646
|
+
value: string;
|
|
23647
|
+
code: string;
|
|
23648
|
+
id: number;
|
|
23649
|
+
escheat: boolean;
|
|
23650
|
+
deposit: boolean;
|
|
23651
|
+
withdrawal: boolean;
|
|
23652
|
+
interestPosting: boolean;
|
|
23653
|
+
feeDeduction: boolean;
|
|
23654
|
+
writtenoff: boolean;
|
|
23655
|
+
overdraftFee: boolean;
|
|
23656
|
+
isDebit: boolean;
|
|
23657
|
+
chargeBack: boolean;
|
|
23658
|
+
isFeeReversal: boolean;
|
|
23659
|
+
refund: boolean;
|
|
23660
|
+
interestReceivableAccrued: boolean;
|
|
23661
|
+
isDisputeDenied: boolean;
|
|
23662
|
+
};
|
|
23663
|
+
outstandingChargeAmount: number;
|
|
23664
|
+
disputable: string;
|
|
23665
|
+
}, {
|
|
23666
|
+
status: string;
|
|
23667
|
+
date: [number, number, number];
|
|
23668
|
+
id: number;
|
|
23669
|
+
accountNo: string;
|
|
23670
|
+
currency: {
|
|
23671
|
+
code: string;
|
|
23672
|
+
name: string;
|
|
23673
|
+
decimalPlaces: number;
|
|
23674
|
+
displaySymbol: string;
|
|
23675
|
+
nameCode: string;
|
|
23676
|
+
currencyCodeInDigit: number;
|
|
23677
|
+
isBaseCurrency: boolean;
|
|
23678
|
+
inMultiplesOf: number;
|
|
23679
|
+
displayLabel: string;
|
|
23680
|
+
};
|
|
23681
|
+
amount: number;
|
|
23682
|
+
accountId: number;
|
|
23683
|
+
submittedOnDate: {
|
|
23684
|
+
date: [number, number, number];
|
|
23685
|
+
time: {
|
|
23686
|
+
hour: number;
|
|
23687
|
+
minute: number;
|
|
23688
|
+
second: number;
|
|
23689
|
+
nano: number;
|
|
23690
|
+
};
|
|
23691
|
+
};
|
|
23692
|
+
submittedByUsername: string;
|
|
23693
|
+
transactionType: {
|
|
23694
|
+
value: string;
|
|
23695
|
+
code: string;
|
|
23696
|
+
id: number;
|
|
23697
|
+
escheat: boolean;
|
|
23698
|
+
deposit: boolean;
|
|
23699
|
+
withdrawal: boolean;
|
|
23700
|
+
interestPosting: boolean;
|
|
23701
|
+
feeDeduction: boolean;
|
|
23702
|
+
writtenoff: boolean;
|
|
23703
|
+
overdraftFee: boolean;
|
|
23704
|
+
isDebit: boolean;
|
|
23705
|
+
chargeBack: boolean;
|
|
23706
|
+
isFeeReversal: boolean;
|
|
23707
|
+
refund: boolean;
|
|
23708
|
+
interestReceivableAccrued: boolean;
|
|
23709
|
+
isDisputeDenied: boolean;
|
|
23710
|
+
};
|
|
23711
|
+
paymentDetailData: {
|
|
23712
|
+
id: number;
|
|
23713
|
+
paymentType: {
|
|
23714
|
+
name: string;
|
|
23715
|
+
id: number;
|
|
23716
|
+
};
|
|
23717
|
+
reference: string;
|
|
23718
|
+
cardAuthorizationData: {
|
|
23719
|
+
status: string;
|
|
23720
|
+
id: number;
|
|
23721
|
+
currency: string;
|
|
23722
|
+
amount: number;
|
|
23723
|
+
createdAt: string;
|
|
23724
|
+
transactionType: string;
|
|
23725
|
+
network: string;
|
|
23726
|
+
internalId: string;
|
|
23727
|
+
externalAuthId: string;
|
|
23728
|
+
externalOriginalAuthId: string;
|
|
23729
|
+
authType: string;
|
|
23730
|
+
returnBalance: boolean;
|
|
23731
|
+
executionCode: string;
|
|
23732
|
+
executionMessage: string;
|
|
23733
|
+
clearedAmount: number;
|
|
23734
|
+
international: boolean;
|
|
23735
|
+
incremental: boolean;
|
|
23736
|
+
flag: string;
|
|
23737
|
+
externalCardId: string;
|
|
23738
|
+
gatewayToken: string;
|
|
23739
|
+
isEcommerce: boolean;
|
|
23740
|
+
releasedAt: string;
|
|
23741
|
+
pinCapability: string;
|
|
23742
|
+
riskScore: string;
|
|
23743
|
+
isDFEDenied: boolean;
|
|
23744
|
+
merchant?: any;
|
|
23745
|
+
expiryDate?: any;
|
|
23746
|
+
transaction?: any;
|
|
23747
|
+
avsData?: any;
|
|
23748
|
+
emv?: any;
|
|
23749
|
+
account?: any;
|
|
23750
|
+
amountDetails?: any;
|
|
23751
|
+
card?: any;
|
|
23752
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23753
|
+
};
|
|
23754
|
+
};
|
|
23755
|
+
runningBalance: number;
|
|
23756
|
+
reversed: boolean;
|
|
23757
|
+
interestedPostedAsOn: boolean;
|
|
23758
|
+
bookingDate: [number, number, number];
|
|
23759
|
+
subTransactionType: {
|
|
23760
|
+
value: string;
|
|
23761
|
+
code: string;
|
|
23762
|
+
id: number;
|
|
23763
|
+
escheat: boolean;
|
|
23764
|
+
deposit: boolean;
|
|
23765
|
+
withdrawal: boolean;
|
|
23766
|
+
interestPosting: boolean;
|
|
23767
|
+
feeDeduction: boolean;
|
|
23768
|
+
writtenoff: boolean;
|
|
23769
|
+
overdraftFee: boolean;
|
|
23770
|
+
isDebit: boolean;
|
|
23771
|
+
chargeBack: boolean;
|
|
23772
|
+
isFeeReversal: boolean;
|
|
23773
|
+
refund: boolean;
|
|
23774
|
+
interestReceivableAccrued: boolean;
|
|
23775
|
+
isDisputeDenied: boolean;
|
|
23776
|
+
};
|
|
23777
|
+
outstandingChargeAmount: number;
|
|
23778
|
+
disputable: string;
|
|
23779
|
+
}>;
|
|
23780
|
+
type CreditAccountTransaction = z$1.infer<typeof CreditAccountTransactionSchema>;
|
|
23781
|
+
type CreditAccountPendingTransactions = z$1.infer<typeof CreditAccountPendingTransactionsSchema>;
|
|
23782
|
+
declare const CreditAccountCompletedTransactionsSchema: z$1.ZodObject<{
|
|
23783
|
+
totalFilteredRecords: z$1.ZodNumber;
|
|
23784
|
+
pageItems: z$1.ZodArray<z$1.ZodObject<{
|
|
23785
|
+
id: z$1.ZodNumber;
|
|
23786
|
+
transactionType: z$1.ZodObject<{
|
|
23787
|
+
id: z$1.ZodNumber;
|
|
23788
|
+
code: z$1.ZodString;
|
|
23789
|
+
value: z$1.ZodString;
|
|
23790
|
+
deposit: z$1.ZodBoolean;
|
|
23791
|
+
withdrawal: z$1.ZodBoolean;
|
|
23792
|
+
interestPosting: z$1.ZodBoolean;
|
|
23793
|
+
feeDeduction: z$1.ZodBoolean;
|
|
23794
|
+
writtenoff: z$1.ZodBoolean;
|
|
23795
|
+
overdraftFee: z$1.ZodBoolean;
|
|
23796
|
+
escheat: z$1.ZodBoolean;
|
|
23797
|
+
interestReceivableAccrued: z$1.ZodBoolean;
|
|
23798
|
+
isDebit: z$1.ZodBoolean;
|
|
23799
|
+
chargeBack: z$1.ZodBoolean;
|
|
23800
|
+
isFeeReversal: z$1.ZodBoolean;
|
|
23801
|
+
refund: z$1.ZodBoolean;
|
|
23802
|
+
isDisputeDenied: z$1.ZodBoolean;
|
|
23803
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23804
|
+
value: string;
|
|
23805
|
+
code: string;
|
|
23806
|
+
id: number;
|
|
23807
|
+
escheat: boolean;
|
|
23808
|
+
deposit: boolean;
|
|
23809
|
+
withdrawal: boolean;
|
|
23810
|
+
interestPosting: boolean;
|
|
23811
|
+
feeDeduction: boolean;
|
|
23812
|
+
writtenoff: boolean;
|
|
23813
|
+
overdraftFee: boolean;
|
|
23814
|
+
isDebit: boolean;
|
|
23815
|
+
chargeBack: boolean;
|
|
23816
|
+
isFeeReversal: boolean;
|
|
23817
|
+
refund: boolean;
|
|
23818
|
+
interestReceivableAccrued: boolean;
|
|
23819
|
+
isDisputeDenied: boolean;
|
|
23820
|
+
}, {
|
|
23821
|
+
value: string;
|
|
23822
|
+
code: string;
|
|
23823
|
+
id: number;
|
|
23824
|
+
escheat: boolean;
|
|
23825
|
+
deposit: boolean;
|
|
23826
|
+
withdrawal: boolean;
|
|
23827
|
+
interestPosting: boolean;
|
|
23828
|
+
feeDeduction: boolean;
|
|
23829
|
+
writtenoff: boolean;
|
|
23830
|
+
overdraftFee: boolean;
|
|
23831
|
+
isDebit: boolean;
|
|
23832
|
+
chargeBack: boolean;
|
|
23833
|
+
isFeeReversal: boolean;
|
|
23834
|
+
refund: boolean;
|
|
23835
|
+
interestReceivableAccrued: boolean;
|
|
23836
|
+
isDisputeDenied: boolean;
|
|
23837
|
+
}>;
|
|
23838
|
+
accountId: z$1.ZodNumber;
|
|
23839
|
+
accountNo: z$1.ZodString;
|
|
23840
|
+
date: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23841
|
+
currency: z$1.ZodObject<{
|
|
23842
|
+
code: z$1.ZodString;
|
|
23843
|
+
name: z$1.ZodString;
|
|
23844
|
+
decimalPlaces: z$1.ZodNumber;
|
|
23845
|
+
inMultiplesOf: z$1.ZodNumber;
|
|
23846
|
+
displaySymbol: z$1.ZodString;
|
|
23847
|
+
nameCode: z$1.ZodString;
|
|
23848
|
+
displayLabel: z$1.ZodString;
|
|
23849
|
+
currencyCodeInDigit: z$1.ZodNumber;
|
|
23850
|
+
isBaseCurrency: z$1.ZodBoolean;
|
|
23851
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23852
|
+
code: string;
|
|
23853
|
+
name: string;
|
|
23854
|
+
decimalPlaces: number;
|
|
23855
|
+
displaySymbol: string;
|
|
23856
|
+
nameCode: string;
|
|
23857
|
+
currencyCodeInDigit: number;
|
|
23858
|
+
isBaseCurrency: boolean;
|
|
23859
|
+
inMultiplesOf: number;
|
|
23860
|
+
displayLabel: string;
|
|
23861
|
+
}, {
|
|
23862
|
+
code: string;
|
|
23863
|
+
name: string;
|
|
23864
|
+
decimalPlaces: number;
|
|
23865
|
+
displaySymbol: string;
|
|
23866
|
+
nameCode: string;
|
|
23867
|
+
currencyCodeInDigit: number;
|
|
23868
|
+
isBaseCurrency: boolean;
|
|
23869
|
+
inMultiplesOf: number;
|
|
23870
|
+
displayLabel: string;
|
|
23871
|
+
}>;
|
|
23872
|
+
paymentDetailData: z$1.ZodObject<{
|
|
23873
|
+
id: z$1.ZodNumber;
|
|
23874
|
+
paymentType: z$1.ZodObject<{
|
|
23875
|
+
id: z$1.ZodNumber;
|
|
23876
|
+
name: z$1.ZodString;
|
|
23877
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23878
|
+
name: string;
|
|
23879
|
+
id: number;
|
|
23880
|
+
}, {
|
|
23881
|
+
name: string;
|
|
23882
|
+
id: number;
|
|
23883
|
+
}>;
|
|
23884
|
+
reference: z$1.ZodString;
|
|
23885
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23886
|
+
id: number;
|
|
23887
|
+
paymentType: {
|
|
23888
|
+
name: string;
|
|
23889
|
+
id: number;
|
|
23890
|
+
};
|
|
23891
|
+
reference: string;
|
|
23892
|
+
}, {
|
|
23893
|
+
id: number;
|
|
23894
|
+
paymentType: {
|
|
23895
|
+
name: string;
|
|
23896
|
+
id: number;
|
|
23897
|
+
};
|
|
23898
|
+
reference: string;
|
|
23899
|
+
}>;
|
|
23900
|
+
amount: z$1.ZodNumber;
|
|
23901
|
+
runningBalance: z$1.ZodNumber;
|
|
23902
|
+
reversed: z$1.ZodBoolean;
|
|
23903
|
+
interestedPostedAsOn: z$1.ZodBoolean;
|
|
23904
|
+
submittedByUsername: z$1.ZodString;
|
|
23905
|
+
bookingDate: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23906
|
+
subTransactionType: z$1.ZodString;
|
|
23907
|
+
status: z$1.ZodString;
|
|
23908
|
+
isAlreadyChargeBack: z$1.ZodBoolean;
|
|
23909
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23910
|
+
status: string;
|
|
23911
|
+
date: [number, number, number];
|
|
23912
|
+
id: number;
|
|
23913
|
+
accountNo: string;
|
|
23914
|
+
currency: {
|
|
23915
|
+
code: string;
|
|
23916
|
+
name: string;
|
|
23917
|
+
decimalPlaces: number;
|
|
23918
|
+
displaySymbol: string;
|
|
23919
|
+
nameCode: string;
|
|
23920
|
+
currencyCodeInDigit: number;
|
|
23921
|
+
isBaseCurrency: boolean;
|
|
23922
|
+
inMultiplesOf: number;
|
|
23923
|
+
displayLabel: string;
|
|
23924
|
+
};
|
|
23925
|
+
amount: number;
|
|
23926
|
+
accountId: number;
|
|
23927
|
+
submittedByUsername: string;
|
|
23928
|
+
transactionType: {
|
|
23929
|
+
value: string;
|
|
23930
|
+
code: string;
|
|
23931
|
+
id: number;
|
|
23932
|
+
escheat: boolean;
|
|
23933
|
+
deposit: boolean;
|
|
23934
|
+
withdrawal: boolean;
|
|
23935
|
+
interestPosting: boolean;
|
|
23936
|
+
feeDeduction: boolean;
|
|
23937
|
+
writtenoff: boolean;
|
|
23938
|
+
overdraftFee: boolean;
|
|
23939
|
+
isDebit: boolean;
|
|
23940
|
+
chargeBack: boolean;
|
|
23941
|
+
isFeeReversal: boolean;
|
|
23942
|
+
refund: boolean;
|
|
23943
|
+
interestReceivableAccrued: boolean;
|
|
23944
|
+
isDisputeDenied: boolean;
|
|
23945
|
+
};
|
|
23946
|
+
paymentDetailData: {
|
|
23947
|
+
id: number;
|
|
23948
|
+
paymentType: {
|
|
23949
|
+
name: string;
|
|
23950
|
+
id: number;
|
|
23951
|
+
};
|
|
23952
|
+
reference: string;
|
|
23953
|
+
};
|
|
23954
|
+
runningBalance: number;
|
|
23955
|
+
reversed: boolean;
|
|
23956
|
+
interestedPostedAsOn: boolean;
|
|
23957
|
+
bookingDate: [number, number, number];
|
|
23958
|
+
subTransactionType: string;
|
|
23959
|
+
isAlreadyChargeBack: boolean;
|
|
23960
|
+
}, {
|
|
23961
|
+
status: string;
|
|
23962
|
+
date: [number, number, number];
|
|
23963
|
+
id: number;
|
|
23964
|
+
accountNo: string;
|
|
23965
|
+
currency: {
|
|
23966
|
+
code: string;
|
|
23967
|
+
name: string;
|
|
23968
|
+
decimalPlaces: number;
|
|
23969
|
+
displaySymbol: string;
|
|
23970
|
+
nameCode: string;
|
|
23971
|
+
currencyCodeInDigit: number;
|
|
23972
|
+
isBaseCurrency: boolean;
|
|
23973
|
+
inMultiplesOf: number;
|
|
23974
|
+
displayLabel: string;
|
|
23975
|
+
};
|
|
23976
|
+
amount: number;
|
|
23977
|
+
accountId: number;
|
|
23978
|
+
submittedByUsername: string;
|
|
23979
|
+
transactionType: {
|
|
23980
|
+
value: string;
|
|
23981
|
+
code: string;
|
|
23982
|
+
id: number;
|
|
23983
|
+
escheat: boolean;
|
|
23984
|
+
deposit: boolean;
|
|
23985
|
+
withdrawal: boolean;
|
|
23986
|
+
interestPosting: boolean;
|
|
23987
|
+
feeDeduction: boolean;
|
|
23988
|
+
writtenoff: boolean;
|
|
23989
|
+
overdraftFee: boolean;
|
|
23990
|
+
isDebit: boolean;
|
|
23991
|
+
chargeBack: boolean;
|
|
23992
|
+
isFeeReversal: boolean;
|
|
23993
|
+
refund: boolean;
|
|
23994
|
+
interestReceivableAccrued: boolean;
|
|
23995
|
+
isDisputeDenied: boolean;
|
|
23996
|
+
};
|
|
23997
|
+
paymentDetailData: {
|
|
23998
|
+
id: number;
|
|
23999
|
+
paymentType: {
|
|
24000
|
+
name: string;
|
|
24001
|
+
id: number;
|
|
24002
|
+
};
|
|
24003
|
+
reference: string;
|
|
24004
|
+
};
|
|
24005
|
+
runningBalance: number;
|
|
24006
|
+
reversed: boolean;
|
|
24007
|
+
interestedPostedAsOn: boolean;
|
|
24008
|
+
bookingDate: [number, number, number];
|
|
24009
|
+
subTransactionType: string;
|
|
24010
|
+
isAlreadyChargeBack: boolean;
|
|
24011
|
+
}>, "many">;
|
|
24012
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
24013
|
+
totalFilteredRecords: number;
|
|
24014
|
+
pageItems: {
|
|
24015
|
+
status: string;
|
|
24016
|
+
date: [number, number, number];
|
|
24017
|
+
id: number;
|
|
24018
|
+
accountNo: string;
|
|
24019
|
+
currency: {
|
|
24020
|
+
code: string;
|
|
24021
|
+
name: string;
|
|
24022
|
+
decimalPlaces: number;
|
|
24023
|
+
displaySymbol: string;
|
|
24024
|
+
nameCode: string;
|
|
24025
|
+
currencyCodeInDigit: number;
|
|
24026
|
+
isBaseCurrency: boolean;
|
|
24027
|
+
inMultiplesOf: number;
|
|
24028
|
+
displayLabel: string;
|
|
24029
|
+
};
|
|
24030
|
+
amount: number;
|
|
24031
|
+
accountId: number;
|
|
24032
|
+
submittedByUsername: string;
|
|
24033
|
+
transactionType: {
|
|
24034
|
+
value: string;
|
|
24035
|
+
code: string;
|
|
24036
|
+
id: number;
|
|
24037
|
+
escheat: boolean;
|
|
24038
|
+
deposit: boolean;
|
|
24039
|
+
withdrawal: boolean;
|
|
24040
|
+
interestPosting: boolean;
|
|
24041
|
+
feeDeduction: boolean;
|
|
24042
|
+
writtenoff: boolean;
|
|
24043
|
+
overdraftFee: boolean;
|
|
24044
|
+
isDebit: boolean;
|
|
24045
|
+
chargeBack: boolean;
|
|
24046
|
+
isFeeReversal: boolean;
|
|
24047
|
+
refund: boolean;
|
|
24048
|
+
interestReceivableAccrued: boolean;
|
|
24049
|
+
isDisputeDenied: boolean;
|
|
24050
|
+
};
|
|
24051
|
+
paymentDetailData: {
|
|
24052
|
+
id: number;
|
|
24053
|
+
paymentType: {
|
|
24054
|
+
name: string;
|
|
24055
|
+
id: number;
|
|
24056
|
+
};
|
|
24057
|
+
reference: string;
|
|
24058
|
+
};
|
|
24059
|
+
runningBalance: number;
|
|
24060
|
+
reversed: boolean;
|
|
24061
|
+
interestedPostedAsOn: boolean;
|
|
24062
|
+
bookingDate: [number, number, number];
|
|
24063
|
+
subTransactionType: string;
|
|
24064
|
+
isAlreadyChargeBack: boolean;
|
|
24065
|
+
}[];
|
|
24066
|
+
}, {
|
|
24067
|
+
totalFilteredRecords: number;
|
|
24068
|
+
pageItems: {
|
|
24069
|
+
status: string;
|
|
24070
|
+
date: [number, number, number];
|
|
24071
|
+
id: number;
|
|
24072
|
+
accountNo: string;
|
|
24073
|
+
currency: {
|
|
24074
|
+
code: string;
|
|
24075
|
+
name: string;
|
|
24076
|
+
decimalPlaces: number;
|
|
24077
|
+
displaySymbol: string;
|
|
24078
|
+
nameCode: string;
|
|
24079
|
+
currencyCodeInDigit: number;
|
|
24080
|
+
isBaseCurrency: boolean;
|
|
24081
|
+
inMultiplesOf: number;
|
|
24082
|
+
displayLabel: string;
|
|
24083
|
+
};
|
|
24084
|
+
amount: number;
|
|
24085
|
+
accountId: number;
|
|
24086
|
+
submittedByUsername: string;
|
|
24087
|
+
transactionType: {
|
|
24088
|
+
value: string;
|
|
24089
|
+
code: string;
|
|
24090
|
+
id: number;
|
|
24091
|
+
escheat: boolean;
|
|
24092
|
+
deposit: boolean;
|
|
24093
|
+
withdrawal: boolean;
|
|
24094
|
+
interestPosting: boolean;
|
|
24095
|
+
feeDeduction: boolean;
|
|
24096
|
+
writtenoff: boolean;
|
|
24097
|
+
overdraftFee: boolean;
|
|
24098
|
+
isDebit: boolean;
|
|
24099
|
+
chargeBack: boolean;
|
|
24100
|
+
isFeeReversal: boolean;
|
|
24101
|
+
refund: boolean;
|
|
24102
|
+
interestReceivableAccrued: boolean;
|
|
24103
|
+
isDisputeDenied: boolean;
|
|
24104
|
+
};
|
|
24105
|
+
paymentDetailData: {
|
|
24106
|
+
id: number;
|
|
24107
|
+
paymentType: {
|
|
24108
|
+
name: string;
|
|
24109
|
+
id: number;
|
|
24110
|
+
};
|
|
24111
|
+
reference: string;
|
|
24112
|
+
};
|
|
24113
|
+
runningBalance: number;
|
|
24114
|
+
reversed: boolean;
|
|
24115
|
+
interestedPostedAsOn: boolean;
|
|
24116
|
+
bookingDate: [number, number, number];
|
|
24117
|
+
subTransactionType: string;
|
|
24118
|
+
isAlreadyChargeBack: boolean;
|
|
24119
|
+
}[];
|
|
24120
|
+
}>;
|
|
24121
|
+
type CreditAccountCompletedTransactions = z$1.infer<typeof CreditAccountCompletedTransactionsSchema>;
|
|
24122
|
+
|
|
24123
|
+
/**
|
|
24124
|
+
* Get credit account transaction by ID
|
|
24125
|
+
*
|
|
24126
|
+
* Retrieves detailed information for a specific transaction within a credit account
|
|
24127
|
+
* using the credit account ID and transaction ID. This endpoint allows you to fetch
|
|
24128
|
+
* comprehensive transaction details including transaction type, amount, currency,
|
|
24129
|
+
* payment details, status, and balance information.
|
|
24130
|
+
*
|
|
24131
|
+
* @param creditAccountId - The unique identifier of the credit account
|
|
24132
|
+
* @param transactionId - The unique identifier of the transaction to retrieve
|
|
24133
|
+
* @returns Command object that executes the API request and returns transaction details
|
|
24134
|
+
*
|
|
24135
|
+
* @example
|
|
24136
|
+
* ```typescript
|
|
24137
|
+
* const command = GetCreditAccountTransactionById(13985, 12345);
|
|
24138
|
+
* const transaction = await client.request(command);
|
|
24139
|
+
* ```
|
|
24140
|
+
*/
|
|
24141
|
+
declare const GetCreditAccountTransactionById: (creditAccountId: number, transactionId: number) => Command<{
|
|
24142
|
+
creditAccountId: number;
|
|
24143
|
+
transactionId: number;
|
|
24144
|
+
}, CreditAccountTransaction>;
|
|
24145
|
+
/**
|
|
24146
|
+
* Get pending transactions for a credit account
|
|
24147
|
+
*
|
|
24148
|
+
* Retrieves all pending transactions for a specific credit account. Pending transactions
|
|
24149
|
+
* are card authorizations that have been placed on hold but have not yet been cleared or posted.
|
|
24150
|
+
* This includes card authorization details, merchant information, amounts, and hold status.
|
|
24151
|
+
*
|
|
24152
|
+
* @param creditAccountId - The unique identifier of the credit account
|
|
24153
|
+
* @returns Command object that executes the API request and returns pending transactions
|
|
24154
|
+
*
|
|
24155
|
+
* @example
|
|
24156
|
+
* ```typescript
|
|
24157
|
+
* const command = GetCreditAccountPendingTransactions(388);
|
|
24158
|
+
* const pendingTransactions = await client.request(command);
|
|
24159
|
+
* ```
|
|
24160
|
+
*/
|
|
24161
|
+
declare const GetCreditAccountPendingTransactions: (creditAccountId: number) => Command<{
|
|
24162
|
+
creditAccountId: number;
|
|
24163
|
+
}, CreditAccountPendingTransactions>;
|
|
24164
|
+
/**
|
|
24165
|
+
* Get completed transactions for a credit account
|
|
24166
|
+
*
|
|
24167
|
+
* Retrieves all completed transactions for a specific credit account, excluding pending transactions.
|
|
24168
|
+
* Completed transactions are those successfully sent to the recipient (e.g., incoming returns
|
|
24169
|
+
* credited to the account, outgoing ACH transactions sent to the bank).
|
|
24170
|
+
*
|
|
24171
|
+
* @param creditAccountId - The unique identifier of the credit account
|
|
24172
|
+
* @param params - Optional query parameters for filtering transactions
|
|
24173
|
+
* @param params.unbilledTransactionsOnly - Filter for unbilled transactions only
|
|
24174
|
+
* @param params.paymentTransactionsOnly - Filter for payment transactions only
|
|
24175
|
+
* @param params.startDate - Filter transactions from this date (format: YYYY-MM-DD)
|
|
24176
|
+
* @param params.endDate - Filter transactions until this date (format: YYYY-MM-DD)
|
|
24177
|
+
* @returns Command object that executes the API request and returns completed transactions
|
|
24178
|
+
*
|
|
24179
|
+
* @example
|
|
24180
|
+
* ```typescript
|
|
24181
|
+
* // Get all completed transactions
|
|
24182
|
+
* const command = GetCreditAccountCompletedTransactions(1);
|
|
24183
|
+
* const transactions = await client.request(command);
|
|
24184
|
+
*
|
|
24185
|
+
* // Get unbilled transactions only
|
|
24186
|
+
* const unbilledCommand = GetCreditAccountCompletedTransactions(1, { unbilledTransactionsOnly: true });
|
|
24187
|
+
* const unbilledTransactions = await client.request(unbilledCommand);
|
|
24188
|
+
*
|
|
24189
|
+
* // Get transactions within a date range
|
|
24190
|
+
* const dateRangeCommand = GetCreditAccountCompletedTransactions(1, {
|
|
24191
|
+
* startDate: '2023-01-18',
|
|
24192
|
+
* endDate: '2023-02-14'
|
|
24193
|
+
* });
|
|
24194
|
+
* const datedTransactions = await client.request(dateRangeCommand);
|
|
24195
|
+
* ```
|
|
24196
|
+
*/
|
|
24197
|
+
declare const GetCreditAccountCompletedTransactions: (creditAccountId: number, params?: {
|
|
24198
|
+
unbilledTransactionsOnly?: boolean;
|
|
24199
|
+
paymentTransactionsOnly?: boolean;
|
|
24200
|
+
startDate?: string;
|
|
24201
|
+
endDate?: string;
|
|
24202
|
+
}) => Command<{
|
|
24203
|
+
creditAccountId: number;
|
|
24204
|
+
params?: {
|
|
24205
|
+
unbilledTransactionsOnly?: boolean;
|
|
24206
|
+
paymentTransactionsOnly?: boolean;
|
|
24207
|
+
startDate?: string;
|
|
24208
|
+
endDate?: string;
|
|
24209
|
+
};
|
|
24210
|
+
}, CreditAccountCompletedTransactions>;
|
|
24211
|
+
|
|
22667
24212
|
/**
|
|
22668
24213
|
* Retrieves detailed information about a specific subscriber.
|
|
22669
24214
|
*
|
|
@@ -23403,4 +24948,4 @@ declare const PayAccountCharge: (accountId: number, chargeId: number, params: Pa
|
|
|
23403
24948
|
params: PayAccountChargeRequest;
|
|
23404
24949
|
}, PayAccountChargeResponse>;
|
|
23405
24950
|
|
|
23406
|
-
export { ActivateCard, ActivatePhysicalCard, AddAcquiredCard, AddCardToMobileWallet, AddChargeToAccount, AddChargeToLoanAccount, ApproveLoan, ApproveRejectClientDocument, BlockAccount, BlockAcquiredCardAddition, CalculateLoanSchedule, ChangeCardType, CloseAccount, CreateAccountProduct, CreateAndActivateAccount, CreateCard, CreateCardProduct, CreateClient, CreateClientAddress, CreateClientIdentifier, CreateFixedDepositAccount, CreateLoan, CreatePayment, CreatePrepaidCard, CreateRecipient, CreateTransfer, CustomCreate, CustomGet, CustomUpdate, DeactivatePrepaidCard, DeleteAccount, DeleteAcquiredCard, DeleteClient, DeleteClientDocument, DeleteFixedDepositAccount, DeletePayment, DeleteRecipient, DeleteSelfServiceUser, DisburseLoan, DisburseLoanToLinkedAccount, DownloadAccountStatement, EnableDisableConfiguration, EnableSelfServiceAccess, GenerateAccountStatement, GetAccount, GetAccountDocumentsDetails, GetAccountProductById, GetAccountsOfClient, GetAcquiredCardById, GetAcquiredCardPublicKey, GetAcquiredCards, GetAllAccountProducts, GetBankDetailsFromRoutingCode, GetCardAuthorizationById, GetCardAuthorizations, GetCardById, GetCardImageUrl, GetCardProduct, GetCardSettlementById, GetCardSettlements, GetCards, GetChargesByAccountId, GetChargesByLoanAccountId, GetClient, GetClientAddress, GetClientClassification, GetClients, GetCompletedTransactions, GetConfigurationByName, GetConfigurations, GetFixedDepositAccount, GetLoanById, GetLoanPreclosureTemplate, GetLoanSearchTemplate, GetLoanTransactionDetails, GetLoanWriteoffTemplate, GetPayment, GetPayments, GetPendingTransactions, GetPermittedDocumentTypes, GetPrepaidCardById, GetPrepaidCardsByAccountId, GetRecentTransactions, GetRecipient, GetRecipients, GetSearchData, GetStatusOfVerifyClient, GetSubscriber, GetTransactionById, GetTransfer, GetTransfers, GetUserDetail, GraphQL, HoldAmount, ListCardProduct, ListClientDocument, MakeRepayment, OrderPhysicalCard, PayAccountCharge, PreCloseLoan, RenewCard, ReplaceCard, ScheduleAccountClosure, SetClientAddressStatus, SetPIN, SuspendCard, SwitchClientClassification, TerminateCard, UnblockAcquiredCardAddition, UndoChargeToAccount, UpdateAccount, UpdateAccountProduct, UpdateCardFeature, UpdateCardLimit, UpdateCardProduct, UpdateClient, UpdateClientAddress, UpdateClientIdentifier, UpdateFixedDepositAccount, UpdatePayment, UpdateRecipientGQL as UpdateRecipient, UpdateSelfServiceUser, UploadClientIdentifierDocument, VerifyWithActivateClients, WaiveChargeFromAccount, WriteLoanOff };
|
|
24951
|
+
export { ActivateCard, ActivatePhysicalCard, AddAcquiredCard, AddCardToMobileWallet, AddChargeToAccount, AddChargeToLoanAccount, ApproveLoan, ApproveRejectClientDocument, BlockAccount, BlockAcquiredCardAddition, CalculateLoanSchedule, ChangeCardType, CloseAccount, CreateAccountProduct, CreateAndActivateAccount, CreateCard, CreateCardProduct, CreateClient, CreateClientAddress, CreateClientIdentifier, CreateFixedDepositAccount, CreateLoan, CreatePayment, CreatePrepaidCard, CreateRecipient, CreateTransfer, CustomCreate, CustomGet, CustomUpdate, DeactivatePrepaidCard, DeleteAccount, DeleteAcquiredCard, DeleteClient, DeleteClientDocument, DeleteFixedDepositAccount, DeletePayment, DeleteRecipient, DeleteSelfServiceUser, DisburseLoan, DisburseLoanToLinkedAccount, DownloadAccountStatement, EnableDisableConfiguration, EnableSelfServiceAccess, GenerateAccountStatement, GetAccount, GetAccountDocumentsDetails, GetAccountProductById, GetAccountsOfClient, GetAcquiredCardById, GetAcquiredCardPublicKey, GetAcquiredCards, GetAllAccountProducts, GetBankDetailsFromRoutingCode, GetCardAuthorizationById, GetCardAuthorizations, GetCardById, GetCardImageUrl, GetCardProduct, GetCardSettlementById, GetCardSettlements, GetCards, GetChargesByAccountId, GetChargesByLoanAccountId, GetClient, GetClientAddress, GetClientClassification, GetClients, GetCompletedTransactions, GetConfigurationByName, GetConfigurations, GetCreditAccountCompletedTransactions, GetCreditAccountPendingTransactions, GetCreditAccountTransactionById, GetFixedDepositAccount, GetLoanById, GetLoanPreclosureTemplate, GetLoanSearchTemplate, GetLoanTransactionDetails, GetLoanWriteoffTemplate, GetPayment, GetPayments, GetPendingTransactions, GetPermittedDocumentTypes, GetPrepaidCardById, GetPrepaidCardsByAccountId, GetRecentTransactions, GetRecipient, GetRecipients, GetSearchData, GetStatusOfVerifyClient, GetSubscriber, GetTransactionById, GetTransfer, GetTransfers, GetUserDetail, GraphQL, HoldAmount, ListCardProduct, ListClientDocument, MakeRepayment, OrderPhysicalCard, PayAccountCharge, PreCloseLoan, RenewCard, ReplaceCard, ScheduleAccountClosure, SetClientAddressStatus, SetPIN, SuspendCard, SwitchClientClassification, TerminateCard, UnblockAcquiredCardAddition, UndoChargeToAccount, UpdateAccount, UpdateAccountProduct, UpdateCardFeature, UpdateCardLimit, UpdateCardProduct, UpdateClient, UpdateClientAddress, UpdateClientIdentifier, UpdateFixedDepositAccount, UpdatePayment, UpdateRecipientGQL as UpdateRecipient, UpdateSelfServiceUser, UploadClientIdentifierDocument, VerifyWithActivateClients, WaiveChargeFromAccount, WriteLoanOff };
|