@accounter/modern-poalim-scraper
Version:
Modern scraper for Israeli banks (Hapoalim, Isracard, Max)
3,530 lines • 179 kB
TypeScript
import { MaxOptions, type MaxCredentials } from './scrapers/max.js';
import { AmexCredentials, AmexOptions, CalCredentials, CalOptions, DiscountCredentials, DiscountOptions, HapoalimCredentials, HapoalimOptions, IsracardCredentials, IsracardOptions } from './scrapers/scrapers-index.js';
export declare function init({ headless, userAgent, }?: {
headless?: boolean;
userAgent?: string;
}): Promise<{
hapoalim: (credentials: HapoalimCredentials, options?: HapoalimOptions) => Promise<"Unknown Error" | {
getAccountsData: () => Promise<{
data: import("./index.js").HapoalimAccountData | null;
isValid: boolean | null;
errors?: unknown;
}>;
getILSTransactions: (account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}) => Promise<{
data: import("./index.js").HapoalimILSTransactions | null;
isValid: boolean | null;
errors?: unknown;
}>;
getForeignTransactions: <T extends boolean>(account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}, isBusiness?: T) => Promise<{
data: import("./index.js").HapoalimForeignTransactionsBusiness | import("./index.js").HapoalimForeignTransactionsPersonal | null;
isValid: boolean | null;
errors?: unknown;
}>;
getForeignSwiftTransactions: (account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}) => Promise<{
data: import("./index.js").SwiftTransactions | null;
isValid: boolean | null;
errors?: unknown;
}>;
getForeignSwiftTransaction: (account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}, transferCatenatedId: string, dataOriginCode: number) => Promise<{
data: import("./index.js").SwiftTransaction | null;
isValid: boolean | null;
errors?: unknown;
}>;
getDeposits: (account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}) => Promise<{
data: import("./index.js").HapoalimDeposits | null;
isValid: boolean | null;
errors?: unknown;
}>;
getForeignDeposits: (account: {
bankNumber: number;
branchNumber: number;
accountNumber: number;
}) => Promise<{
data: import("./index.js").HapoalimForeignDeposits | null;
isValid: boolean | null;
errors?: unknown;
}>;
}>;
isracard: (credentials: IsracardCredentials, options?: IsracardOptions) => Promise<{
getMonthDashboard: (RequestedMonthDate: Date) => Promise<{
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid?: never;
errors?: never;
}>;
getDashboards: () => Promise<({
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid?: never;
errors?: never;
})[]>;
getMonthTransactions: (RequestedMonthDate: Date) => Promise<{
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: null;
errors?: never;
}>;
getTransactions: () => Promise<({
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: null;
errors?: never;
})[]>;
}>;
amex: (credentials: AmexCredentials, options?: AmexOptions) => Promise<{
getMonthDashboard: (RequestedMonthDate: Date) => Promise<{
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid?: never;
errors?: never;
}>;
getDashboards: () => Promise<({
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: string;
Message: string;
};
DashboardMonthBean: {
totalDebitShekel: string;
totalDebitDollar: string;
totalDebitEuro: string;
cardType: string;
statementDate: {
billingDateCode: string;
billingDate: string;
totalShekel: string;
totalDollar: string;
totalEuro: string;
cardType: string;
billingDateMore: string;
statementDateCard: null;
}[];
cardsCharges: {
period: string;
billingDate: string;
workingDate: string;
cardNumber: string;
cardIndex: string;
moreNumberDays: string;
cardType: string;
billingDateMore: string;
billingSumSekel: string;
billingSumDollar: string;
billingSumEuro: string;
cardStatus: string;
idType: string;
}[];
extraCards: string;
returnCode: string;
message: string;
returnMessage: string;
displayProperties: string;
tablePageNum: string;
isError: string;
isCaptcha: string;
isButton: string;
clientIpAddress?: string | undefined;
};
} | null;
isValid?: never;
errors?: never;
})[]>;
getMonthTransactions: (RequestedMonthDate: Date) => Promise<{
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: null;
errors?: never;
}>;
getTransactions: () => Promise<({
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: boolean;
errors: import("zod/v4/core").$ZodIssue[] | null;
} | {
data: {
Header: {
Status: "1" | "-2";
Message: string | null;
ErrorPage?: string | undefined;
};
CardsTransactionsListBean: {
[x: string]: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
} | {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[] | {
currentId: string;
displayProperties: null;
holderId: null;
holderName: string;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: string | null;
totalEuro: string | null;
totalNis: string;
bcKey: null;
requestNumber: null;
accountErrorCode: null;
EsbServicesCall: null;
clientIpAddress?: null | undefined;
}[];
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
card0: {
EsbServicesCall: null;
accountErrorCode: null;
bcKey: null;
currentId: "0" | "1" | "2" | "3" | "4" | "5" | null;
displayProperties: null;
holderId: string;
holderName: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
message: null;
monthlyRefundCardIndex: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
stage: null;
tablePageNum: "0";
totalDollar: "0" | null;
totalEuro: "0" | null;
totalNis: string | null;
clientIpAddress?: null | undefined;
}[];
card6Digits: string;
cardIdx: "0" | "0,1,2,3,4,5" | "0,1,2,3,4" | "0,1,2,3" | "0,1,2" | "0,1";
cardNumberList: string[];
cardNumberTail: string;
currentDate: string;
dateList: string[];
displayProperties: string;
endDate: null;
Index0: {
'@AllCards': "AllCards";
CurrentCardTransactions: {
'@cardTransactions': string;
txnAbroad?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: string | null;
currencyId: "NIS" | "USD" | "EUR" | null;
currentPaymentCurrency: "NIS" | "USD" | "EUR" | "LEU" | "SUR" | "DKK" | "TRY" | "GBP" | "CHF" | "HUF" | "AUD" | "INR" | "HKD" | "YUN" | "JPY" | "SGD" | "OMR" | "CZE" | "NOK" | "THB" | "KOR" | "TWD" | "CDL" | "AUR" | "SER" | "PLZ" | "CAD" | "ISK" | "RSD" | "PLN" | null;
dealsInbound: null;
dealSum: null;
dealSumOutbound: string | null;
dealSumType: null;
displayProperties: null;
fullPaymentDate: string | null;
fullPurchaseDate: null;
fullPurchaseDateOutbound: string | null;
fullSupplierNameHeb: null;
fullSupplierNameOutbound: string;
horaatKeva: null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false";
isShowDealsOutbound: "_" | null;
isShowLinkForSupplierDetails: null;
kodMatbeaMekori: null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: null;
paymentDate: string | null;
paymentSum: null;
paymentSumOutbound: string;
paymentSumSign: null;
purchaseDate: null;
purchaseDateOutbound: string | null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: null;
specificDate: null;
stage: null;
supplierId: null;
supplierName: null;
supplierNameOutbound: string;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: null;
voucherNumberRatzOutbound: string;
clientIpAddress?: null | undefined;
}[] | null | undefined;
txnInfo?: null | undefined;
txnIsrael?: {
EsbServicesCall: null;
accountErrorCode: null;
adendum: null;
bcKey: null;
cardIndex: "0" | "1" | "2" | "3" | "4" | "5";
city: null;
currencyId: "ש\"ח" | "דולר" | null;
currentPaymentCurrency: null;
dealsInbound: "yes" | "NO";
dealSum: string | null;
dealSumOutbound: null;
dealSumType: "1" | "T" | "P" | null;
displayProperties: null;
fullPaymentDate: null;
fullPurchaseDate: string | null;
fullPurchaseDateOutbound: null;
fullSupplierNameHeb: string | null;
fullSupplierNameOutbound: null;
horaatKeva: "K" | null;
isButton: "false";
isCaptcha: "false";
isError: "false";
isHoraatKeva: "false" | "true";
isShowDealsOutbound: null;
isShowLinkForSupplierDetails: "yes" | "NO";
kodMatbeaMekori: "ש\"ח" | "דולר" | null;
message: null;
monthlyRefundCardIndex: null;
moreInfo: string | null;
paymentDate: null;
paymentSum: string | null;
paymentSumOutbound: null;
paymentSumSign: "-" | null;
purchaseDate: string | null;
purchaseDateOutbound: null;
requestNumber: null;
returnCode: null;
returnMessage: null;
siteName: null;
solek: "_" | "T" | "K" | "I" | "L" | "V" | null;
specificDate: null;
stage: null;
supplierId: string | null;
supplierName: string | null;
supplierNameOutbound: null;
tablePageNum: "0";
voucherNumber: string | null;
voucherNumberRatz: string;
voucherNumberRatzOutbound: null;
clientIpAddress?: null | undefined;
}[] | null | undefined;
}[];
};
isButton: "false";
isCaptcha: "false";
isCashBack: "false";
isError: "false";
isShowDealsInboundForCharge: "yes" | "NO";
isShowDealsInboundForInfo: "NO";
isThereData: "1" | null;
isTooManyRecords: null;
message: null;
moed: string;
month: "10" | "11" | "12" | "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09";
monthlyRefundCardIndex: null;
payDay: "10" | "15" | "02" | null;
paymentPercent: null;
paymentSum: "000" | "280";
requestNumber: null;
returnCode: null;
returnMessage: null;
selectedCardIndex: "0" | "1" | "2" | "3" | "4" | "5";
selectedCardInfo: string;
selectedDateIndex: "23" | "24";
siteName: string | null;
specificDate: null;
stage: null;
startDate: null;
tablePageNum: "0";
totalChargeDollar: null;
totalChargeEuro: null;
totalChargeNis: string | null;
totalDebit: null;
userId: string;
year: "2010" | "2011" | "2012" | "2013" | "2014" | "2015" | "2016" | "2017" | "2018" | "2019" | "2020" | "2021" | "2022" | "2023" | "2024" | "2025" | "2026";
clientIpAddress?: string | undefined;
};
} | null;
isValid: null;
errors?: never;
})[]>;
}>;
cal: (credentials: CalCredentials, options?: CalOptions) => Promise<{
getMonthTransactions: (last4Digits: string, month: Date) => Promise<{
trnIntId: string;
trnNumaretor: number;
merchantName: string;
trnPurchaseDate: string;
trnAmt: number;
trnCurrencySymbol: string;
trnType: string;
trnTypeCode: string;
debCrdDate: string;
amtBeforeConvAndIndex: number;
debCrdCurrencySymbol: string;
merchantAddress: string;
merchantPhoneNo: string;
branchCodeDesc: string;
transCardPresentInd: boolean;
curPaymentNum: number;
numOfPayments: number;
tokenInd: number;
walletProviderCode: number;
walletProviderDesc: string;
tokenNumberPart4: string;
cashAccountTrnAmt: number;
comments: {
key: string;
value: string;
}[];
chargeExternalToCardComment: string;
transTypeCommentDetails: string[];
refundInd: boolean;
isImmediateCommentInd: boolean;
isImmediateHHKInd: boolean;
isMargarita: boolean;
isSpreadPaymenstAbroad: boolean;
trnExacWay: number;
debitSpreadInd: boolean;
onGoingTransactionsComment: string;
earlyPaymentInd: boolean;
merchantId: string;
crdExtIdNumTypeCode: string;
transSource: string;
isAbroadTransaction: boolean;
}[]>;
getTransactions: () => Promise<{
trnIntId: string;
trnNumaretor: number;
merchantName: string;
trnPurchaseDate: string;
trnAmt: number;
trnCurrencySymbol: string;
trnType: string;
trnTypeCode: string;
debCrdDate: string;
amtBeforeConvAndIndex: number;
debCrdCurrencySymbol: string;
merchantAddress: string;
merchantPhoneNo: string;
branchCodeDesc: string;
transCardPresentInd: boolean;
curPaymentNum: number;
numOfPayments: number;
tokenInd: number;
walletProviderCode: number;
walletProviderDesc: string;
tokenNumberPart4: string;
cashAccountTrnAmt: number;
comments: {
key: string;
value: string;
}[];
chargeExternalToCardComment: string;
transTypeCommentDetails: string[];
refundInd: boolean;
isImmediateCommentInd: boolean;
isImmediateHHKInd: boolean;
isMargarita: boolean;
isSpreadPaymenstAbroad: boolean;
trnExacWay: number;
debitSpreadInd: boolean;
onGoingTransactionsComment: string;
earlyPaymentInd: boolean;
merchantId: string;
crdExtIdNumTypeCode: string;
transSource: string;
isAbroadTransaction: boolean;
}[]>;
}>;
discount: (credentials: DiscountCredentials, options?: DiscountOptions) => Promise<{
getMonthTransactions: (month: Date) => Promise<{
success: boolean;
accountNumber: string;
balance: number;
transactions: {
OperationDate: string;
ValueDate: string;
OperationCode: string;
OperationDescription: string;
OperationDescription2: string;
OperationDescription3: string;
OperationBranch: number;
OperationBank: number;
Channel: string;
ChannelName: string;
InstituteCode: string;
OperationAmount: number;
BalanceAfterOperation: number;
OperationNumber: number;
BranchTreasuryNumber: string;
Urn: string;
OperationDetailsServiceName: string;
CommissionChannelCode: string;
CommissionChannelName: string;
CommissionTypeName: string;
BusinessDayDate: string;
EventName: string;
CategoryCode: number;
CategoryDescCode: number;
CategoryDescription: string;
OperationDescriptionToDisplay: string;
OperationOrder: number;
IsLastSeen: boolean;
CheckNumber?: number | undefined;
}[];
}>;
getTransactions: () => Promise<{
success: boolean;
accountNumber: string;
balance: number;
transactions: {
OperationDate: string;
ValueDate: string;
OperationCode: string;
OperationDescription: string;
OperationDescription2: string;
OperationDescription3: string;
OperationBranch: number;
OperationBank: number;
Channel: string;
ChannelName: string;
InstituteCode: string;
OperationAmount: number;
BalanceAfterOperation: number;
OperationNumber: number;
BranchTreasuryNumber: string;
Urn: string;
OperationDetailsServiceName: string;
CommissionChannelCode: string;
CommissionChannelName: string;
CommissionTypeName: string;
BusinessDayDate: string;
EventName: string;
CategoryCode: number;
CategoryDescCode: number;
CategoryDescription: string;
OperationDescriptionToDisplay: string;
OperationOrder: number;
IsLastSeen: boolean;
CheckNumber?: number | undefined;
}[];
}[]>;
}>;
max: (credentials: MaxCredentials, options?: MaxOptions) => Promise<{
getTransactions: () => Promise<{
accountNumber: string;
txns: {
actualPaymentAmount: number | null;
arn: string | null;
cardIndex: number;
categoryId: number;
comments: string;
discountKeyAmount: null;
discountKeyRecType: null;
isRegisterCh: boolean;
isSpreadingAutorizationAllowed: boolean;
issuerId: number;
merchantData: {
address: string | null;
coordinates: null;
maxPhone: boolean;
merchant: string;
merchantCommercialName: string | null;
merchantNumber: string;
merchantPhone: string;
merchantTaxId: string | null;
};
merchantName: string;
originalAmount: number;
originalCurrency: "ILS";
paymentCurrency: number | null;
planName: string;
planTypeId: number;
promotionAmount: number | null;
promotionClub: string | null;
promotionType: null;
purchaseDate: string;
refIndex: number;
runtimeReference: {
id: string;
type: number;
};
runtimeReferenceId: null;
shortCardNumber: string;
spreadTransactionByCampainInd: boolean;
spreadTransactionByCampainNumber: number | null;
tableType: number;
tag: null;
uid: string;
upSaleForTransactionResult: null;
userIndex: number;
dealData?: {
acq: string | null;
adjustmentAmount: null;
adjustmentType: number;
amount: number | null;
amountIls: number | null;
amountLeft: number | null;
arn: string | null;
authorizationNumber: string;
cardName: string | null;
cardToken: string | null;
commissionVat: number | null;
directExchange: null;
exchangeCommissionAmount: null;
exchangeCommissionMaam: null;
exchangeCommissionType: null;
exchangeDirect: string | null;
exchangeRate: number | null;
indexRateBase: null;
indexRatePmt: null;
interestAmount: number | null;
isAllowedSpreadWithBenefit: boolean;
issuerCurrency: string | null;
issuerExchangeRate: null;
originalTerm: number | null;
percentMaam: number | null;
plan: number | null;
posEntryEmv: number;
processingDate: string | null;
purchaseAmount: null;
purchaseTime: string | null;
refNbr: string | null;
showCancelDebit: boolean;
showSpread: boolean;
showSpreadBenefitButton: boolean;
showSpreadButton: boolean;
showSpreadForLeumi: boolean;
tdmCardToken: string | null;
tdmTransactionType: number | null;
transactionType: number;
txnCode: number;
userName: string;
withdrawalCommissionAmount: null;
} | undefined;
ethocaInd?: boolean | undefined;
fundsTransferComment?: string | null | undefined;
fundsTransferReceiverOrTransfer?: string | null | undefined;
paymentDate?: string | null | undefined;
receiptPDF?: null | undefined;
}[];
}[]>;
}>;
close: () => Promise<void>;
}>;
export * from './zod-schemas/types.js';
export { HapoalimOptions } from './scrapers/hapoalim.js';