@mbanq/core-sdk-js 0.32.0 → 0.34.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 +680 -7
- package/dist/commands/index.d.ts +680 -7
- package/dist/commands/index.js +2 -2
- package/dist/commands/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -14739,14 +14739,17 @@ declare const ResponseSchema: z.ZodObject<{
|
|
|
14739
14739
|
id: z.ZodNumber;
|
|
14740
14740
|
clientId: z.ZodNumber;
|
|
14741
14741
|
resourceId: z.ZodNumber;
|
|
14742
|
+
officeId: z.ZodNumber;
|
|
14742
14743
|
}, "strip", z.ZodTypeAny, {
|
|
14743
14744
|
id: number;
|
|
14744
14745
|
clientId: number;
|
|
14745
14746
|
resourceId: number;
|
|
14747
|
+
officeId: number;
|
|
14746
14748
|
}, {
|
|
14747
14749
|
id: number;
|
|
14748
14750
|
clientId: number;
|
|
14749
14751
|
resourceId: number;
|
|
14752
|
+
officeId: number;
|
|
14750
14753
|
}>;
|
|
14751
14754
|
declare const AcquiredCardsListSchema: z.ZodArray<z.ZodObject<{
|
|
14752
14755
|
id: z.ZodNumber;
|
|
@@ -14861,6 +14864,7 @@ declare const AddAcquiredCardRequestSchema: z.ZodObject<{
|
|
|
14861
14864
|
cardData: string;
|
|
14862
14865
|
}>;
|
|
14863
14866
|
type AddAcquiredCardRequest = z.infer<typeof AddAcquiredCardRequestSchema>;
|
|
14867
|
+
type AddAcquiredCardResponse = z.infer<typeof ResponseSchema>;
|
|
14864
14868
|
declare const BlockAcquiredCardRequestSchema: z.ZodObject<{
|
|
14865
14869
|
reason: z.ZodString;
|
|
14866
14870
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14879,6 +14883,20 @@ declare const UnblockAcquiredCardRequestSchema: z.ZodObject<{
|
|
|
14879
14883
|
type UnblockAcquiredCardRequest = z.infer<typeof UnblockAcquiredCardRequestSchema>;
|
|
14880
14884
|
type DeleteAcquiredCardRequest = z.infer<typeof AcquiredCardsRequestSchema>;
|
|
14881
14885
|
type DeleteAcquiredCardResponse = z.infer<typeof ResponseSchema>;
|
|
14886
|
+
declare const AcquiredCardPublicKeySchema: z.ZodObject<{
|
|
14887
|
+
keyID: z.ZodString;
|
|
14888
|
+
key: z.ZodString;
|
|
14889
|
+
expiration: z.ZodString;
|
|
14890
|
+
}, "strip", z.ZodTypeAny, {
|
|
14891
|
+
keyID: string;
|
|
14892
|
+
key: string;
|
|
14893
|
+
expiration: string;
|
|
14894
|
+
}, {
|
|
14895
|
+
keyID: string;
|
|
14896
|
+
key: string;
|
|
14897
|
+
expiration: string;
|
|
14898
|
+
}>;
|
|
14899
|
+
type AcquiredCardPublicKeyResponse = z.infer<typeof AcquiredCardPublicKeySchema>;
|
|
14882
14900
|
|
|
14883
14901
|
declare const AddChargeToAccountRequestSchema: z.ZodObject<{
|
|
14884
14902
|
chargeId: z.ZodNumber;
|
|
@@ -22577,12 +22595,7 @@ declare const GetAcquiredCardById: (params: AcquiredCardRequest) => Command<Acqu
|
|
|
22577
22595
|
declare const AddAcquiredCard: (clientId: number, params: AddAcquiredCardRequest) => Command<{
|
|
22578
22596
|
clientId: number;
|
|
22579
22597
|
params: AddAcquiredCardRequest;
|
|
22580
|
-
},
|
|
22581
|
-
id: number;
|
|
22582
|
-
officeId: number;
|
|
22583
|
-
clientId: number;
|
|
22584
|
-
resourceId: number;
|
|
22585
|
-
}>;
|
|
22598
|
+
}, AddAcquiredCardResponse>;
|
|
22586
22599
|
/**
|
|
22587
22600
|
* Blocks the addition of acquired cards from external sources for a client
|
|
22588
22601
|
*
|
|
@@ -22634,6 +22647,666 @@ declare const UnblockAcquiredCardAddition: (clientId: number, params: UnblockAcq
|
|
|
22634
22647
|
* ```
|
|
22635
22648
|
*/
|
|
22636
22649
|
declare const DeleteAcquiredCard: (params: DeleteAcquiredCardRequest) => Command<DeleteAcquiredCardRequest, DeleteAcquiredCardResponse>;
|
|
22650
|
+
/**
|
|
22651
|
+
* Gets the public key for acquired card encryption
|
|
22652
|
+
*
|
|
22653
|
+
* Retrieves the public key used for encrypting acquired card data. This key is typically
|
|
22654
|
+
* used to encrypt sensitive card information before adding it to the system, ensuring
|
|
22655
|
+
* secure data transmission and storage.
|
|
22656
|
+
*
|
|
22657
|
+
* @returns Command object that executes the API request and returns the public key
|
|
22658
|
+
*
|
|
22659
|
+
* @example
|
|
22660
|
+
* ```typescript
|
|
22661
|
+
* const command = GetAcquiredCardPublicKey();
|
|
22662
|
+
* const publicKey = await client.request(command);
|
|
22663
|
+
* ```
|
|
22664
|
+
*/
|
|
22665
|
+
declare const GetAcquiredCardPublicKey: () => Command<undefined, AcquiredCardPublicKeyResponse>;
|
|
22666
|
+
|
|
22667
|
+
declare const CreditAccountTransactionSchema: z$1.ZodObject<{
|
|
22668
|
+
id: z$1.ZodNumber;
|
|
22669
|
+
transactionType: z$1.ZodObject<{
|
|
22670
|
+
id: z$1.ZodNumber;
|
|
22671
|
+
code: z$1.ZodString;
|
|
22672
|
+
value: z$1.ZodString;
|
|
22673
|
+
deposit: z$1.ZodBoolean;
|
|
22674
|
+
withdrawal: z$1.ZodBoolean;
|
|
22675
|
+
interestPosting: z$1.ZodBoolean;
|
|
22676
|
+
feeDeduction: z$1.ZodBoolean;
|
|
22677
|
+
writtenoff: z$1.ZodBoolean;
|
|
22678
|
+
overdraftFee: z$1.ZodBoolean;
|
|
22679
|
+
escheat: z$1.ZodBoolean;
|
|
22680
|
+
interestReceivableAccrued: z$1.ZodBoolean;
|
|
22681
|
+
isDebit: z$1.ZodBoolean;
|
|
22682
|
+
chargeBack: z$1.ZodBoolean;
|
|
22683
|
+
isFeeReversal: z$1.ZodBoolean;
|
|
22684
|
+
refund: z$1.ZodBoolean;
|
|
22685
|
+
isDisputeDenied: z$1.ZodBoolean;
|
|
22686
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22687
|
+
value: string;
|
|
22688
|
+
code: string;
|
|
22689
|
+
id: number;
|
|
22690
|
+
escheat: boolean;
|
|
22691
|
+
deposit: boolean;
|
|
22692
|
+
withdrawal: boolean;
|
|
22693
|
+
interestPosting: boolean;
|
|
22694
|
+
feeDeduction: boolean;
|
|
22695
|
+
writtenoff: boolean;
|
|
22696
|
+
overdraftFee: boolean;
|
|
22697
|
+
isDebit: boolean;
|
|
22698
|
+
chargeBack: boolean;
|
|
22699
|
+
isFeeReversal: boolean;
|
|
22700
|
+
refund: boolean;
|
|
22701
|
+
interestReceivableAccrued: boolean;
|
|
22702
|
+
isDisputeDenied: boolean;
|
|
22703
|
+
}, {
|
|
22704
|
+
value: string;
|
|
22705
|
+
code: string;
|
|
22706
|
+
id: number;
|
|
22707
|
+
escheat: boolean;
|
|
22708
|
+
deposit: boolean;
|
|
22709
|
+
withdrawal: boolean;
|
|
22710
|
+
interestPosting: boolean;
|
|
22711
|
+
feeDeduction: boolean;
|
|
22712
|
+
writtenoff: boolean;
|
|
22713
|
+
overdraftFee: boolean;
|
|
22714
|
+
isDebit: boolean;
|
|
22715
|
+
chargeBack: boolean;
|
|
22716
|
+
isFeeReversal: boolean;
|
|
22717
|
+
refund: boolean;
|
|
22718
|
+
interestReceivableAccrued: boolean;
|
|
22719
|
+
isDisputeDenied: boolean;
|
|
22720
|
+
}>;
|
|
22721
|
+
accountId: z$1.ZodNumber;
|
|
22722
|
+
accountNo: z$1.ZodString;
|
|
22723
|
+
date: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
22724
|
+
currency: z$1.ZodObject<{
|
|
22725
|
+
code: z$1.ZodString;
|
|
22726
|
+
name: z$1.ZodString;
|
|
22727
|
+
decimalPlaces: z$1.ZodNumber;
|
|
22728
|
+
inMultiplesOf: z$1.ZodNumber;
|
|
22729
|
+
displaySymbol: z$1.ZodString;
|
|
22730
|
+
nameCode: z$1.ZodString;
|
|
22731
|
+
displayLabel: z$1.ZodString;
|
|
22732
|
+
currencyCodeInDigit: z$1.ZodNumber;
|
|
22733
|
+
isBaseCurrency: z$1.ZodBoolean;
|
|
22734
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22735
|
+
code: string;
|
|
22736
|
+
name: string;
|
|
22737
|
+
decimalPlaces: number;
|
|
22738
|
+
displaySymbol: string;
|
|
22739
|
+
nameCode: string;
|
|
22740
|
+
currencyCodeInDigit: number;
|
|
22741
|
+
isBaseCurrency: boolean;
|
|
22742
|
+
inMultiplesOf: number;
|
|
22743
|
+
displayLabel: string;
|
|
22744
|
+
}, {
|
|
22745
|
+
code: string;
|
|
22746
|
+
name: string;
|
|
22747
|
+
decimalPlaces: number;
|
|
22748
|
+
displaySymbol: string;
|
|
22749
|
+
nameCode: string;
|
|
22750
|
+
currencyCodeInDigit: number;
|
|
22751
|
+
isBaseCurrency: boolean;
|
|
22752
|
+
inMultiplesOf: number;
|
|
22753
|
+
displayLabel: string;
|
|
22754
|
+
}>;
|
|
22755
|
+
paymentDetailData: z$1.ZodObject<{
|
|
22756
|
+
id: z$1.ZodNumber;
|
|
22757
|
+
paymentType: z$1.ZodObject<{
|
|
22758
|
+
id: z$1.ZodNumber;
|
|
22759
|
+
name: z$1.ZodString;
|
|
22760
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22761
|
+
name: string;
|
|
22762
|
+
id: number;
|
|
22763
|
+
}, {
|
|
22764
|
+
name: string;
|
|
22765
|
+
id: number;
|
|
22766
|
+
}>;
|
|
22767
|
+
reference: z$1.ZodString;
|
|
22768
|
+
cardAuthorizationData: z$1.ZodObject<{
|
|
22769
|
+
id: z$1.ZodNumber;
|
|
22770
|
+
internalId: z$1.ZodString;
|
|
22771
|
+
externalAuthId: z$1.ZodString;
|
|
22772
|
+
externalOriginalAuthId: z$1.ZodString;
|
|
22773
|
+
externalCardId: z$1.ZodString;
|
|
22774
|
+
authType: z$1.ZodString;
|
|
22775
|
+
gatewayToken: z$1.ZodString;
|
|
22776
|
+
transactionType: z$1.ZodString;
|
|
22777
|
+
account: z$1.ZodAny;
|
|
22778
|
+
currency: z$1.ZodString;
|
|
22779
|
+
amount: z$1.ZodNumber;
|
|
22780
|
+
amountDetails: z$1.ZodAny;
|
|
22781
|
+
isEcommerce: z$1.ZodBoolean;
|
|
22782
|
+
returnBalance: z$1.ZodBoolean;
|
|
22783
|
+
transaction: z$1.ZodAny;
|
|
22784
|
+
merchant: z$1.ZodAny;
|
|
22785
|
+
network: z$1.ZodString;
|
|
22786
|
+
expiryDate: z$1.ZodAny;
|
|
22787
|
+
executionCode: z$1.ZodString;
|
|
22788
|
+
executionMessage: z$1.ZodString;
|
|
22789
|
+
isDFEDenied: z$1.ZodBoolean;
|
|
22790
|
+
status: z$1.ZodString;
|
|
22791
|
+
createdAt: z$1.ZodString;
|
|
22792
|
+
releasedAt: z$1.ZodString;
|
|
22793
|
+
card: z$1.ZodAny;
|
|
22794
|
+
clearedAmount: z$1.ZodNumber;
|
|
22795
|
+
international: z$1.ZodBoolean;
|
|
22796
|
+
flag: z$1.ZodString;
|
|
22797
|
+
incremental: z$1.ZodBoolean;
|
|
22798
|
+
avsData: z$1.ZodAny;
|
|
22799
|
+
pinCapability: z$1.ZodString;
|
|
22800
|
+
riskScore: z$1.ZodString;
|
|
22801
|
+
emv: z$1.ZodAny;
|
|
22802
|
+
isInPersonTapTransaction: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
22803
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22804
|
+
status: string;
|
|
22805
|
+
id: number;
|
|
22806
|
+
currency: string;
|
|
22807
|
+
amount: number;
|
|
22808
|
+
createdAt: string;
|
|
22809
|
+
transactionType: string;
|
|
22810
|
+
network: string;
|
|
22811
|
+
internalId: string;
|
|
22812
|
+
externalAuthId: string;
|
|
22813
|
+
externalOriginalAuthId: string;
|
|
22814
|
+
authType: string;
|
|
22815
|
+
returnBalance: boolean;
|
|
22816
|
+
executionCode: string;
|
|
22817
|
+
executionMessage: string;
|
|
22818
|
+
clearedAmount: number;
|
|
22819
|
+
international: boolean;
|
|
22820
|
+
incremental: boolean;
|
|
22821
|
+
flag: string;
|
|
22822
|
+
externalCardId: string;
|
|
22823
|
+
gatewayToken: string;
|
|
22824
|
+
isEcommerce: boolean;
|
|
22825
|
+
releasedAt: string;
|
|
22826
|
+
pinCapability: string;
|
|
22827
|
+
riskScore: string;
|
|
22828
|
+
isDFEDenied: boolean;
|
|
22829
|
+
merchant?: any;
|
|
22830
|
+
expiryDate?: any;
|
|
22831
|
+
transaction?: any;
|
|
22832
|
+
avsData?: any;
|
|
22833
|
+
emv?: any;
|
|
22834
|
+
account?: any;
|
|
22835
|
+
amountDetails?: any;
|
|
22836
|
+
card?: any;
|
|
22837
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
22838
|
+
}, {
|
|
22839
|
+
status: string;
|
|
22840
|
+
id: number;
|
|
22841
|
+
currency: string;
|
|
22842
|
+
amount: number;
|
|
22843
|
+
createdAt: string;
|
|
22844
|
+
transactionType: string;
|
|
22845
|
+
network: string;
|
|
22846
|
+
internalId: string;
|
|
22847
|
+
externalAuthId: string;
|
|
22848
|
+
externalOriginalAuthId: string;
|
|
22849
|
+
authType: string;
|
|
22850
|
+
returnBalance: boolean;
|
|
22851
|
+
executionCode: string;
|
|
22852
|
+
executionMessage: string;
|
|
22853
|
+
clearedAmount: number;
|
|
22854
|
+
international: boolean;
|
|
22855
|
+
incremental: boolean;
|
|
22856
|
+
flag: string;
|
|
22857
|
+
externalCardId: string;
|
|
22858
|
+
gatewayToken: string;
|
|
22859
|
+
isEcommerce: boolean;
|
|
22860
|
+
releasedAt: string;
|
|
22861
|
+
pinCapability: string;
|
|
22862
|
+
riskScore: string;
|
|
22863
|
+
isDFEDenied: boolean;
|
|
22864
|
+
merchant?: any;
|
|
22865
|
+
expiryDate?: any;
|
|
22866
|
+
transaction?: any;
|
|
22867
|
+
avsData?: any;
|
|
22868
|
+
emv?: any;
|
|
22869
|
+
account?: any;
|
|
22870
|
+
amountDetails?: any;
|
|
22871
|
+
card?: any;
|
|
22872
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
22873
|
+
}>;
|
|
22874
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22875
|
+
id: number;
|
|
22876
|
+
paymentType: {
|
|
22877
|
+
name: string;
|
|
22878
|
+
id: number;
|
|
22879
|
+
};
|
|
22880
|
+
reference: string;
|
|
22881
|
+
cardAuthorizationData: {
|
|
22882
|
+
status: string;
|
|
22883
|
+
id: number;
|
|
22884
|
+
currency: string;
|
|
22885
|
+
amount: number;
|
|
22886
|
+
createdAt: string;
|
|
22887
|
+
transactionType: string;
|
|
22888
|
+
network: string;
|
|
22889
|
+
internalId: string;
|
|
22890
|
+
externalAuthId: string;
|
|
22891
|
+
externalOriginalAuthId: string;
|
|
22892
|
+
authType: string;
|
|
22893
|
+
returnBalance: boolean;
|
|
22894
|
+
executionCode: string;
|
|
22895
|
+
executionMessage: string;
|
|
22896
|
+
clearedAmount: number;
|
|
22897
|
+
international: boolean;
|
|
22898
|
+
incremental: boolean;
|
|
22899
|
+
flag: string;
|
|
22900
|
+
externalCardId: string;
|
|
22901
|
+
gatewayToken: string;
|
|
22902
|
+
isEcommerce: boolean;
|
|
22903
|
+
releasedAt: string;
|
|
22904
|
+
pinCapability: string;
|
|
22905
|
+
riskScore: string;
|
|
22906
|
+
isDFEDenied: boolean;
|
|
22907
|
+
merchant?: any;
|
|
22908
|
+
expiryDate?: any;
|
|
22909
|
+
transaction?: any;
|
|
22910
|
+
avsData?: any;
|
|
22911
|
+
emv?: any;
|
|
22912
|
+
account?: any;
|
|
22913
|
+
amountDetails?: any;
|
|
22914
|
+
card?: any;
|
|
22915
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
22916
|
+
};
|
|
22917
|
+
}, {
|
|
22918
|
+
id: number;
|
|
22919
|
+
paymentType: {
|
|
22920
|
+
name: string;
|
|
22921
|
+
id: number;
|
|
22922
|
+
};
|
|
22923
|
+
reference: string;
|
|
22924
|
+
cardAuthorizationData: {
|
|
22925
|
+
status: string;
|
|
22926
|
+
id: number;
|
|
22927
|
+
currency: string;
|
|
22928
|
+
amount: number;
|
|
22929
|
+
createdAt: string;
|
|
22930
|
+
transactionType: string;
|
|
22931
|
+
network: string;
|
|
22932
|
+
internalId: string;
|
|
22933
|
+
externalAuthId: string;
|
|
22934
|
+
externalOriginalAuthId: string;
|
|
22935
|
+
authType: string;
|
|
22936
|
+
returnBalance: boolean;
|
|
22937
|
+
executionCode: string;
|
|
22938
|
+
executionMessage: string;
|
|
22939
|
+
clearedAmount: number;
|
|
22940
|
+
international: boolean;
|
|
22941
|
+
incremental: boolean;
|
|
22942
|
+
flag: string;
|
|
22943
|
+
externalCardId: string;
|
|
22944
|
+
gatewayToken: string;
|
|
22945
|
+
isEcommerce: boolean;
|
|
22946
|
+
releasedAt: string;
|
|
22947
|
+
pinCapability: string;
|
|
22948
|
+
riskScore: string;
|
|
22949
|
+
isDFEDenied: boolean;
|
|
22950
|
+
merchant?: any;
|
|
22951
|
+
expiryDate?: any;
|
|
22952
|
+
transaction?: any;
|
|
22953
|
+
avsData?: any;
|
|
22954
|
+
emv?: any;
|
|
22955
|
+
account?: any;
|
|
22956
|
+
amountDetails?: any;
|
|
22957
|
+
card?: any;
|
|
22958
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
22959
|
+
};
|
|
22960
|
+
}>;
|
|
22961
|
+
amount: z$1.ZodNumber;
|
|
22962
|
+
outstandingChargeAmount: z$1.ZodNumber;
|
|
22963
|
+
runningBalance: z$1.ZodNumber;
|
|
22964
|
+
reversed: z$1.ZodBoolean;
|
|
22965
|
+
interestedPostedAsOn: z$1.ZodBoolean;
|
|
22966
|
+
submittedByUsername: z$1.ZodString;
|
|
22967
|
+
submittedOnDate: z$1.ZodObject<{
|
|
22968
|
+
date: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
22969
|
+
time: z$1.ZodObject<{
|
|
22970
|
+
hour: z$1.ZodNumber;
|
|
22971
|
+
minute: z$1.ZodNumber;
|
|
22972
|
+
second: z$1.ZodNumber;
|
|
22973
|
+
nano: z$1.ZodNumber;
|
|
22974
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22975
|
+
hour: number;
|
|
22976
|
+
minute: number;
|
|
22977
|
+
second: number;
|
|
22978
|
+
nano: number;
|
|
22979
|
+
}, {
|
|
22980
|
+
hour: number;
|
|
22981
|
+
minute: number;
|
|
22982
|
+
second: number;
|
|
22983
|
+
nano: number;
|
|
22984
|
+
}>;
|
|
22985
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
22986
|
+
date: [number, number, number];
|
|
22987
|
+
time: {
|
|
22988
|
+
hour: number;
|
|
22989
|
+
minute: number;
|
|
22990
|
+
second: number;
|
|
22991
|
+
nano: number;
|
|
22992
|
+
};
|
|
22993
|
+
}, {
|
|
22994
|
+
date: [number, number, number];
|
|
22995
|
+
time: {
|
|
22996
|
+
hour: number;
|
|
22997
|
+
minute: number;
|
|
22998
|
+
second: number;
|
|
22999
|
+
nano: number;
|
|
23000
|
+
};
|
|
23001
|
+
}>;
|
|
23002
|
+
bookingDate: z$1.ZodTuple<[z$1.ZodNumber, z$1.ZodNumber, z$1.ZodNumber], null>;
|
|
23003
|
+
subTransactionType: z$1.ZodObject<{
|
|
23004
|
+
id: z$1.ZodNumber;
|
|
23005
|
+
code: z$1.ZodString;
|
|
23006
|
+
value: z$1.ZodString;
|
|
23007
|
+
deposit: z$1.ZodBoolean;
|
|
23008
|
+
withdrawal: z$1.ZodBoolean;
|
|
23009
|
+
interestPosting: z$1.ZodBoolean;
|
|
23010
|
+
feeDeduction: z$1.ZodBoolean;
|
|
23011
|
+
writtenoff: z$1.ZodBoolean;
|
|
23012
|
+
overdraftFee: z$1.ZodBoolean;
|
|
23013
|
+
escheat: z$1.ZodBoolean;
|
|
23014
|
+
interestReceivableAccrued: z$1.ZodBoolean;
|
|
23015
|
+
isDebit: z$1.ZodBoolean;
|
|
23016
|
+
chargeBack: z$1.ZodBoolean;
|
|
23017
|
+
isFeeReversal: z$1.ZodBoolean;
|
|
23018
|
+
refund: z$1.ZodBoolean;
|
|
23019
|
+
isDisputeDenied: z$1.ZodBoolean;
|
|
23020
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23021
|
+
value: string;
|
|
23022
|
+
code: string;
|
|
23023
|
+
id: number;
|
|
23024
|
+
escheat: boolean;
|
|
23025
|
+
deposit: boolean;
|
|
23026
|
+
withdrawal: boolean;
|
|
23027
|
+
interestPosting: boolean;
|
|
23028
|
+
feeDeduction: boolean;
|
|
23029
|
+
writtenoff: boolean;
|
|
23030
|
+
overdraftFee: boolean;
|
|
23031
|
+
isDebit: boolean;
|
|
23032
|
+
chargeBack: boolean;
|
|
23033
|
+
isFeeReversal: boolean;
|
|
23034
|
+
refund: boolean;
|
|
23035
|
+
interestReceivableAccrued: boolean;
|
|
23036
|
+
isDisputeDenied: boolean;
|
|
23037
|
+
}, {
|
|
23038
|
+
value: string;
|
|
23039
|
+
code: string;
|
|
23040
|
+
id: number;
|
|
23041
|
+
escheat: boolean;
|
|
23042
|
+
deposit: boolean;
|
|
23043
|
+
withdrawal: boolean;
|
|
23044
|
+
interestPosting: boolean;
|
|
23045
|
+
feeDeduction: boolean;
|
|
23046
|
+
writtenoff: boolean;
|
|
23047
|
+
overdraftFee: boolean;
|
|
23048
|
+
isDebit: boolean;
|
|
23049
|
+
chargeBack: boolean;
|
|
23050
|
+
isFeeReversal: boolean;
|
|
23051
|
+
refund: boolean;
|
|
23052
|
+
interestReceivableAccrued: boolean;
|
|
23053
|
+
isDisputeDenied: boolean;
|
|
23054
|
+
}>;
|
|
23055
|
+
disputable: z$1.ZodString;
|
|
23056
|
+
status: z$1.ZodString;
|
|
23057
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
23058
|
+
status: string;
|
|
23059
|
+
date: [number, number, number];
|
|
23060
|
+
id: number;
|
|
23061
|
+
accountNo: string;
|
|
23062
|
+
currency: {
|
|
23063
|
+
code: string;
|
|
23064
|
+
name: string;
|
|
23065
|
+
decimalPlaces: number;
|
|
23066
|
+
displaySymbol: string;
|
|
23067
|
+
nameCode: string;
|
|
23068
|
+
currencyCodeInDigit: number;
|
|
23069
|
+
isBaseCurrency: boolean;
|
|
23070
|
+
inMultiplesOf: number;
|
|
23071
|
+
displayLabel: string;
|
|
23072
|
+
};
|
|
23073
|
+
amount: number;
|
|
23074
|
+
accountId: number;
|
|
23075
|
+
submittedOnDate: {
|
|
23076
|
+
date: [number, number, number];
|
|
23077
|
+
time: {
|
|
23078
|
+
hour: number;
|
|
23079
|
+
minute: number;
|
|
23080
|
+
second: number;
|
|
23081
|
+
nano: number;
|
|
23082
|
+
};
|
|
23083
|
+
};
|
|
23084
|
+
submittedByUsername: string;
|
|
23085
|
+
transactionType: {
|
|
23086
|
+
value: string;
|
|
23087
|
+
code: string;
|
|
23088
|
+
id: number;
|
|
23089
|
+
escheat: boolean;
|
|
23090
|
+
deposit: boolean;
|
|
23091
|
+
withdrawal: boolean;
|
|
23092
|
+
interestPosting: boolean;
|
|
23093
|
+
feeDeduction: boolean;
|
|
23094
|
+
writtenoff: boolean;
|
|
23095
|
+
overdraftFee: boolean;
|
|
23096
|
+
isDebit: boolean;
|
|
23097
|
+
chargeBack: boolean;
|
|
23098
|
+
isFeeReversal: boolean;
|
|
23099
|
+
refund: boolean;
|
|
23100
|
+
interestReceivableAccrued: boolean;
|
|
23101
|
+
isDisputeDenied: boolean;
|
|
23102
|
+
};
|
|
23103
|
+
paymentDetailData: {
|
|
23104
|
+
id: number;
|
|
23105
|
+
paymentType: {
|
|
23106
|
+
name: string;
|
|
23107
|
+
id: number;
|
|
23108
|
+
};
|
|
23109
|
+
reference: string;
|
|
23110
|
+
cardAuthorizationData: {
|
|
23111
|
+
status: string;
|
|
23112
|
+
id: number;
|
|
23113
|
+
currency: string;
|
|
23114
|
+
amount: number;
|
|
23115
|
+
createdAt: string;
|
|
23116
|
+
transactionType: string;
|
|
23117
|
+
network: string;
|
|
23118
|
+
internalId: string;
|
|
23119
|
+
externalAuthId: string;
|
|
23120
|
+
externalOriginalAuthId: string;
|
|
23121
|
+
authType: string;
|
|
23122
|
+
returnBalance: boolean;
|
|
23123
|
+
executionCode: string;
|
|
23124
|
+
executionMessage: string;
|
|
23125
|
+
clearedAmount: number;
|
|
23126
|
+
international: boolean;
|
|
23127
|
+
incremental: boolean;
|
|
23128
|
+
flag: string;
|
|
23129
|
+
externalCardId: string;
|
|
23130
|
+
gatewayToken: string;
|
|
23131
|
+
isEcommerce: boolean;
|
|
23132
|
+
releasedAt: string;
|
|
23133
|
+
pinCapability: string;
|
|
23134
|
+
riskScore: string;
|
|
23135
|
+
isDFEDenied: boolean;
|
|
23136
|
+
merchant?: any;
|
|
23137
|
+
expiryDate?: any;
|
|
23138
|
+
transaction?: any;
|
|
23139
|
+
avsData?: any;
|
|
23140
|
+
emv?: any;
|
|
23141
|
+
account?: any;
|
|
23142
|
+
amountDetails?: any;
|
|
23143
|
+
card?: any;
|
|
23144
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23145
|
+
};
|
|
23146
|
+
};
|
|
23147
|
+
runningBalance: number;
|
|
23148
|
+
reversed: boolean;
|
|
23149
|
+
interestedPostedAsOn: boolean;
|
|
23150
|
+
bookingDate: [number, number, number];
|
|
23151
|
+
subTransactionType: {
|
|
23152
|
+
value: string;
|
|
23153
|
+
code: string;
|
|
23154
|
+
id: number;
|
|
23155
|
+
escheat: boolean;
|
|
23156
|
+
deposit: boolean;
|
|
23157
|
+
withdrawal: boolean;
|
|
23158
|
+
interestPosting: boolean;
|
|
23159
|
+
feeDeduction: boolean;
|
|
23160
|
+
writtenoff: boolean;
|
|
23161
|
+
overdraftFee: boolean;
|
|
23162
|
+
isDebit: boolean;
|
|
23163
|
+
chargeBack: boolean;
|
|
23164
|
+
isFeeReversal: boolean;
|
|
23165
|
+
refund: boolean;
|
|
23166
|
+
interestReceivableAccrued: boolean;
|
|
23167
|
+
isDisputeDenied: boolean;
|
|
23168
|
+
};
|
|
23169
|
+
outstandingChargeAmount: number;
|
|
23170
|
+
disputable: string;
|
|
23171
|
+
}, {
|
|
23172
|
+
status: string;
|
|
23173
|
+
date: [number, number, number];
|
|
23174
|
+
id: number;
|
|
23175
|
+
accountNo: string;
|
|
23176
|
+
currency: {
|
|
23177
|
+
code: string;
|
|
23178
|
+
name: string;
|
|
23179
|
+
decimalPlaces: number;
|
|
23180
|
+
displaySymbol: string;
|
|
23181
|
+
nameCode: string;
|
|
23182
|
+
currencyCodeInDigit: number;
|
|
23183
|
+
isBaseCurrency: boolean;
|
|
23184
|
+
inMultiplesOf: number;
|
|
23185
|
+
displayLabel: string;
|
|
23186
|
+
};
|
|
23187
|
+
amount: number;
|
|
23188
|
+
accountId: number;
|
|
23189
|
+
submittedOnDate: {
|
|
23190
|
+
date: [number, number, number];
|
|
23191
|
+
time: {
|
|
23192
|
+
hour: number;
|
|
23193
|
+
minute: number;
|
|
23194
|
+
second: number;
|
|
23195
|
+
nano: number;
|
|
23196
|
+
};
|
|
23197
|
+
};
|
|
23198
|
+
submittedByUsername: string;
|
|
23199
|
+
transactionType: {
|
|
23200
|
+
value: string;
|
|
23201
|
+
code: string;
|
|
23202
|
+
id: number;
|
|
23203
|
+
escheat: boolean;
|
|
23204
|
+
deposit: boolean;
|
|
23205
|
+
withdrawal: boolean;
|
|
23206
|
+
interestPosting: boolean;
|
|
23207
|
+
feeDeduction: boolean;
|
|
23208
|
+
writtenoff: boolean;
|
|
23209
|
+
overdraftFee: boolean;
|
|
23210
|
+
isDebit: boolean;
|
|
23211
|
+
chargeBack: boolean;
|
|
23212
|
+
isFeeReversal: boolean;
|
|
23213
|
+
refund: boolean;
|
|
23214
|
+
interestReceivableAccrued: boolean;
|
|
23215
|
+
isDisputeDenied: boolean;
|
|
23216
|
+
};
|
|
23217
|
+
paymentDetailData: {
|
|
23218
|
+
id: number;
|
|
23219
|
+
paymentType: {
|
|
23220
|
+
name: string;
|
|
23221
|
+
id: number;
|
|
23222
|
+
};
|
|
23223
|
+
reference: string;
|
|
23224
|
+
cardAuthorizationData: {
|
|
23225
|
+
status: string;
|
|
23226
|
+
id: number;
|
|
23227
|
+
currency: string;
|
|
23228
|
+
amount: number;
|
|
23229
|
+
createdAt: string;
|
|
23230
|
+
transactionType: string;
|
|
23231
|
+
network: string;
|
|
23232
|
+
internalId: string;
|
|
23233
|
+
externalAuthId: string;
|
|
23234
|
+
externalOriginalAuthId: string;
|
|
23235
|
+
authType: string;
|
|
23236
|
+
returnBalance: boolean;
|
|
23237
|
+
executionCode: string;
|
|
23238
|
+
executionMessage: string;
|
|
23239
|
+
clearedAmount: number;
|
|
23240
|
+
international: boolean;
|
|
23241
|
+
incremental: boolean;
|
|
23242
|
+
flag: string;
|
|
23243
|
+
externalCardId: string;
|
|
23244
|
+
gatewayToken: string;
|
|
23245
|
+
isEcommerce: boolean;
|
|
23246
|
+
releasedAt: string;
|
|
23247
|
+
pinCapability: string;
|
|
23248
|
+
riskScore: string;
|
|
23249
|
+
isDFEDenied: boolean;
|
|
23250
|
+
merchant?: any;
|
|
23251
|
+
expiryDate?: any;
|
|
23252
|
+
transaction?: any;
|
|
23253
|
+
avsData?: any;
|
|
23254
|
+
emv?: any;
|
|
23255
|
+
account?: any;
|
|
23256
|
+
amountDetails?: any;
|
|
23257
|
+
card?: any;
|
|
23258
|
+
isInPersonTapTransaction?: boolean | undefined;
|
|
23259
|
+
};
|
|
23260
|
+
};
|
|
23261
|
+
runningBalance: number;
|
|
23262
|
+
reversed: boolean;
|
|
23263
|
+
interestedPostedAsOn: boolean;
|
|
23264
|
+
bookingDate: [number, number, number];
|
|
23265
|
+
subTransactionType: {
|
|
23266
|
+
value: string;
|
|
23267
|
+
code: string;
|
|
23268
|
+
id: number;
|
|
23269
|
+
escheat: boolean;
|
|
23270
|
+
deposit: boolean;
|
|
23271
|
+
withdrawal: boolean;
|
|
23272
|
+
interestPosting: boolean;
|
|
23273
|
+
feeDeduction: boolean;
|
|
23274
|
+
writtenoff: boolean;
|
|
23275
|
+
overdraftFee: boolean;
|
|
23276
|
+
isDebit: boolean;
|
|
23277
|
+
chargeBack: boolean;
|
|
23278
|
+
isFeeReversal: boolean;
|
|
23279
|
+
refund: boolean;
|
|
23280
|
+
interestReceivableAccrued: boolean;
|
|
23281
|
+
isDisputeDenied: boolean;
|
|
23282
|
+
};
|
|
23283
|
+
outstandingChargeAmount: number;
|
|
23284
|
+
disputable: string;
|
|
23285
|
+
}>;
|
|
23286
|
+
type CreditAccountTransaction = z$1.infer<typeof CreditAccountTransactionSchema>;
|
|
23287
|
+
|
|
23288
|
+
/**
|
|
23289
|
+
* Get credit account transaction by ID
|
|
23290
|
+
*
|
|
23291
|
+
* Retrieves detailed information for a specific transaction within a credit account
|
|
23292
|
+
* using the credit account ID and transaction ID. This endpoint allows you to fetch
|
|
23293
|
+
* comprehensive transaction details including transaction type, amount, currency,
|
|
23294
|
+
* payment details, status, and balance information.
|
|
23295
|
+
*
|
|
23296
|
+
* @param creditAccountId - The unique identifier of the credit account
|
|
23297
|
+
* @param transactionId - The unique identifier of the transaction to retrieve
|
|
23298
|
+
* @returns Command object that executes the API request and returns transaction details
|
|
23299
|
+
*
|
|
23300
|
+
* @example
|
|
23301
|
+
* ```typescript
|
|
23302
|
+
* const command = GetCreditAccountTransactionById(13985, 12345);
|
|
23303
|
+
* const transaction = await client.request(command);
|
|
23304
|
+
* ```
|
|
23305
|
+
*/
|
|
23306
|
+
declare const GetCreditAccountTransactionById: (creditAccountId: number, transactionId: number) => Command<{
|
|
23307
|
+
creditAccountId: number;
|
|
23308
|
+
transactionId: number;
|
|
23309
|
+
}, CreditAccountTransaction>;
|
|
22637
23310
|
|
|
22638
23311
|
/**
|
|
22639
23312
|
* Retrieves detailed information about a specific subscriber.
|
|
@@ -23374,4 +24047,4 @@ declare const PayAccountCharge: (accountId: number, chargeId: number, params: Pa
|
|
|
23374
24047
|
params: PayAccountChargeRequest;
|
|
23375
24048
|
}, PayAccountChargeResponse>;
|
|
23376
24049
|
|
|
23377
|
-
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, 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 };
|
|
24050
|
+
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, 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 };
|