@vantagepay/vantagepay 0.15.0 → 0.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -9
- package/dist/baseApi.d.ts +1 -0
- package/dist/consumers/index.d.ts +2 -2
- package/dist/consumers/types.d.ts +12 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.m.js +1 -1
- package/dist/index.m.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/merchants/types.d.ts +25 -12
- package/dist/payments/types.d.ts +234 -234
- package/package.json +4 -2
- package/dist/gmoney/index.d.ts +0 -48
- package/dist/gmoney/types.d.ts +0 -136
- package/dist/hubtel/index.d.ts +0 -21
- package/dist/hubtel/types.d.ts +0 -35
- package/dist/transflow/index.d.ts +0 -11
- package/dist/transflow/types.d.ts +0 -11
|
@@ -208,9 +208,9 @@ export declare class MerchantBankAccount {
|
|
|
208
208
|
/** The branch code associated with the bank which holds the bank account. */
|
|
209
209
|
routingCode?: string;
|
|
210
210
|
/**
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
* Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the bank account or when editing a Merchant if HasSettlementRules = FALSE.
|
|
212
|
+
* Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
|
|
213
|
+
*/
|
|
214
214
|
isSettlement: boolean;
|
|
215
215
|
/** This property will be set to TRUE if default settlement rules have been created for this bank account in the database. */
|
|
216
216
|
hasSettlementRules: boolean;
|
|
@@ -242,9 +242,9 @@ export declare class MerchantMobileWallet {
|
|
|
242
242
|
currency: Currency;
|
|
243
243
|
accountName?: string;
|
|
244
244
|
/**
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
245
|
+
* Can be set to True when creating a brand new Merchant to indicate that default settlement rules should be created for the mobile wallet or when editing a Merchant if HasSettlementRules = FALSE.
|
|
246
|
+
* Attempting to set this property to FALSE if HasSettlementRules = TRUE has no effect because currently the only way to delete or disable settlement rules is via direct database access.
|
|
247
|
+
*/
|
|
248
248
|
isSettlement: boolean;
|
|
249
249
|
/** This property will be set to TRUE if default settlement rules have been created for this mobile wallet in the database. */
|
|
250
250
|
hasSettlementRules: boolean;
|
|
@@ -368,6 +368,19 @@ export declare class PosPermissions {
|
|
|
368
368
|
canCloseAndAccessBatchReports: boolean;
|
|
369
369
|
canEditDeviceSettings: boolean;
|
|
370
370
|
canExceedMaximumSaleLimits: boolean;
|
|
371
|
+
canProcessCashWithdrawals: boolean;
|
|
372
|
+
canProcessCashDeposit: boolean;
|
|
373
|
+
canUseBalanceEnquiry: boolean;
|
|
374
|
+
canUseDebiCheck: boolean;
|
|
375
|
+
canUseManualCardEntry: boolean;
|
|
376
|
+
canProcessCancellations: boolean;
|
|
377
|
+
canProcessDepositsAndReversals: boolean;
|
|
378
|
+
canUsePreAuthorisation: boolean;
|
|
379
|
+
canUseIncrementalAuthorisation: boolean;
|
|
380
|
+
canOverrideAuthorisation: boolean;
|
|
381
|
+
canCancelAuthorisation: boolean;
|
|
382
|
+
canCompleteAuthorisation: boolean;
|
|
383
|
+
canAccessReports: boolean;
|
|
371
384
|
}
|
|
372
385
|
export declare enum SettlementTime {
|
|
373
386
|
None = "None",
|
|
@@ -388,14 +401,14 @@ export declare class Terminal {
|
|
|
388
401
|
isActive: boolean;
|
|
389
402
|
isLinked: boolean;
|
|
390
403
|
/**
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
404
|
+
* The list of all QR codes associated with the Terminal including QR codes that originated in external systems and QR codes generated in this system (V2QR).
|
|
405
|
+
* V2QR codes are not stored in the database, they are generated on-the-fly every time Merchant details are retrieved, and are added to this collection at that time.
|
|
406
|
+
*/
|
|
394
407
|
qrCodes: TerminalQrCode[];
|
|
395
408
|
/**
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
409
|
+
* A list of QR codes that originated in external systems that are associated with the Terminal.
|
|
410
|
+
* These QR codes are stored in the database when a Merchant is registered with an external Merchant management system and QR codes are supplied by that external system.
|
|
411
|
+
*/
|
|
399
412
|
externalQrCodes: TerminalQrCode[];
|
|
400
413
|
notificationTokens: TerminalNotificationToken[];
|
|
401
414
|
additionalReferences: AdditionalTerminalReference[];
|