@paydala-payments/models 0.7.71 → 0.7.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/identify_response.d.ts +11 -0
- package/dist/identify_response.js +8 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -1
- package/package.json +1 -1
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.OtpSource = void 0;
|
4
|
+
var OtpSource;
|
5
|
+
(function (OtpSource) {
|
6
|
+
OtpSource["EMAIL"] = "EMAIL";
|
7
|
+
OtpSource["PHONE"] = "PHONE";
|
8
|
+
})(OtpSource || (exports.OtpSource = OtpSource = {}));
|
package/dist/index.d.ts
CHANGED
@@ -46,5 +46,6 @@ import { VerifyDeviceStatus } from "./verify_device_status";
|
|
46
46
|
import { OTPConfirmRequest } from "./otp_confirm_request";
|
47
47
|
import { OTPConfirmResponse } from "./otp_confirm_response";
|
48
48
|
import { CustomTheme } from "./custome_theme";
|
49
|
-
|
50
|
-
export {
|
49
|
+
import { IdentifyResponse, OtpSource } from "./identify_response";
|
50
|
+
export type { Environment, OperatorCredentials, OnPaydalaClose, User, Partner, OperatorSignAndCredentials, CredentialsPayload, Verify, Member, Widget, Source, BinValidation, CardType, CardBrand, Address, KYCInfo, Prefill, QueriesResult, QueriesError, OobCode, Credential, BankSource, BankWidget, Transaction, Institution, AccountList, BaseResponse, Registration, UserLogin, AccountDetail, PaymentDetails, GuestCardLogin, IntegrityCheck, BankTransaction, TransactionMode, TransactionType, TransactionOperatorDetails, TransactionOperatorDetail, TransactionDetail, TransactionHistoryResult, TransactionHistory, Paydala, FirebaseToken, FirebaseError, FirebaseRefreshToken, OperatorList, SocialLoginState, PredefinedAmount, Region, IdentifyResponse, Regions, CardTransactionResponse, BankTransactionResponse, CustomerKYCStatus, VerifyAmount, LastSelectedOperatorSignAndCreds, OTPStatus, VerifyDeviceStatus, OTPConfirmRequest, OTPConfirmResponse, OperatorCustomData, CustomTheme, };
|
51
|
+
export { IntegrationSource, BankProcessor, OtpSource };
|
package/dist/index.js
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.BankProcessor = exports.IntegrationSource = void 0;
|
3
|
+
exports.OtpSource = exports.BankProcessor = exports.IntegrationSource = void 0;
|
4
4
|
const paydala_1 = require("./paydala");
|
5
5
|
Object.defineProperty(exports, "IntegrationSource", { enumerable: true, get: function () { return paydala_1.IntegrationSource; } });
|
6
6
|
Object.defineProperty(exports, "BankProcessor", { enumerable: true, get: function () { return paydala_1.BankProcessor; } });
|
7
|
+
const identify_response_1 = require("./identify_response");
|
8
|
+
Object.defineProperty(exports, "OtpSource", { enumerable: true, get: function () { return identify_response_1.OtpSource; } });
|