@jimrising/easymerchantsdk-react-native 2.5.0 → 2.5.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.
Files changed (32) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/.yarnrc.yml +1 -0
  3. package/android/build.gradle +8 -0
  4. package/android/config.properties +2 -2
  5. package/ios/Pods/Storyboard/EasyPaySdk.storyboard +9089 -0
  6. package/ios/Pods/UserDefaults/UserStoreSingleton.swift +424 -0
  7. package/ios/Pods/ViewControllers/AdditionalInfoVC.swift +2894 -0
  8. package/ios/Pods/ViewControllers/BaseVC.swift +142 -0
  9. package/ios/Pods/ViewControllers/BillingInfoVC/BillingInfoVC.swift +3686 -0
  10. package/ios/Pods/ViewControllers/BillingInfoVC/Cells/CityListTVC.swift +46 -0
  11. package/ios/Pods/ViewControllers/BillingInfoVC/Cells/CountryListTVC.swift +47 -0
  12. package/ios/Pods/ViewControllers/BillingInfoVC/Cells/StateListTVC.swift +46 -0
  13. package/ios/Pods/ViewControllers/Clean Runner_2025-07-23T14-58-05.txt +13 -0
  14. package/ios/Pods/ViewControllers/CountryListVC.swift +435 -0
  15. package/ios/Pods/ViewControllers/EmailVerificationVC.swift +286 -0
  16. package/ios/Pods/ViewControllers/GrailPayVC.swift +483 -0
  17. package/ios/Pods/ViewControllers/OTPVerificationVC.swift +2193 -0
  18. package/ios/Pods/ViewControllers/PaymentDoneVC.swift +284 -0
  19. package/ios/Pods/ViewControllers/PaymentErrorVC.swift +85 -0
  20. package/ios/Pods/ViewControllers/PaymentInformation/AccountTypeTVC.swift +41 -0
  21. package/ios/Pods/ViewControllers/PaymentInformation/PaymentInfoVC.swift +12875 -0
  22. package/ios/Pods/ViewControllers/PaymentInformation/PaymentInformationCVC.swift +35 -0
  23. package/ios/Pods/ViewControllers/PaymentInformation/RecurringTVC.swift +40 -0
  24. package/ios/Pods/ViewControllers/PaymentInformation/SavedAccountsTVC/SavedAccountTVC.swift +80 -0
  25. package/ios/Pods/ViewControllers/PaymentInformation/SavedAccountsTVC/SavedAccountTVC.xib +163 -0
  26. package/ios/Pods/ViewControllers/PaymentInformation/SavedCardsTVC/SavedCardsTVC.swift +81 -0
  27. package/ios/Pods/ViewControllers/PaymentInformation/SavedCardsTVC/SavedCardsTVC.xib +188 -0
  28. package/ios/Pods/ViewControllers/PaymentStatusWebViewVC.swift +158 -0
  29. package/ios/Pods/ViewControllers/TermAndConditionsVC.swift +63 -0
  30. package/ios/Pods/ViewControllers/ThreeDSecurePaymentDoneVC.swift +1216 -0
  31. package/ios/easymerchantsdk.podspec +1 -1
  32. package/package.json +2 -2
Binary file
package/.yarnrc.yml ADDED
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
@@ -1,3 +1,11 @@
1
+ // Load config.properties for GitHub Packages credentials (GITHUB_USERNAME, GITHUB_PASSWORD)
2
+ def configFile = file("config.properties")
3
+ if (configFile.exists()) {
4
+ def config = new Properties()
5
+ configFile.withInputStream { config.load(it) }
6
+ config.each { key, value -> project.ext.set(key, value) }
7
+ }
8
+
1
9
  buildscript {
2
10
  ext.kotlinVersion = "1.9.10"
3
11
 
@@ -1,5 +1,5 @@
1
1
  # GitHub Packages credentials (only needed if resolving the Android SDK from GitHub Packages)
2
2
  # Set your own values. Do not commit real credentials.
3
- GITHUB_USERNAME=
4
- GITHUB_PASSWORD=
5
3
  GITHUB_URL=https://maven.pkg.github.com/EasyMerchant/em-MobileCheckoutSDK-Android
4
+ GITHUB_USERNAME=devpavany7
5
+ GITHUB_PASSWORD=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