@paydala-payments/models 0.6.33 → 0.6.35

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.
@@ -1,7 +1,7 @@
1
1
  export type CardType = "CREDIT" | "DEBIT" | "ANY";
2
2
  export type CardBrand = "VISA" | "MASTERCARD" | "AMEX" | "DISCOVER" | "ANY";
3
3
  export interface BinValidation {
4
- cardDetails: {
4
+ cardDetails?: {
5
5
  cardBrand: string;
6
6
  cardType: CardType;
7
7
  issuingCountry: string;
package/dist/paydala.d.ts CHANGED
@@ -3,7 +3,9 @@ import { OperatorCredentials } from "./operator_credentials";
3
3
  import { TransactionOperatorDetail } from "./transaction_operator_details";
4
4
  export declare enum IntegrationSource {
5
5
  WebView = "webview",
6
- Iframe = "iframe"
6
+ Iframe = "iframe",
7
+ RNWebView = "rn-webview",
8
+ ExpoWebView = "expo-webview"
7
9
  }
8
10
  export interface Paydala extends PaydalaBasic {
9
11
  /** Callback function when the Paydala session is finished */
package/dist/paydala.js CHANGED
@@ -5,6 +5,8 @@ var IntegrationSource;
5
5
  (function (IntegrationSource) {
6
6
  IntegrationSource["WebView"] = "webview";
7
7
  IntegrationSource["Iframe"] = "iframe";
8
+ IntegrationSource["RNWebView"] = "rn-webview";
9
+ IntegrationSource["ExpoWebView"] = "expo-webview";
8
10
  })(IntegrationSource || (exports.IntegrationSource = IntegrationSource = {}));
9
11
  // interface OnTransactionComplete {
10
12
  // /** List of all operations performed in the Paydala SDK */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paydala-payments/models",
3
- "version": "0.6.33",
3
+ "version": "0.6.35",
4
4
  "description": "Models of the Paydala project",
5
5
  "keywords": [
6
6
  "paydala",