├── .gitignore ├── Documentation ├── Resources │ ├── cards.png │ ├── debug_view_hierarchy.png │ ├── hot-actions.png │ └── main.png ├── architecture.md ├── modules.md ├── mvc.md ├── routing.md └── structure.md ├── README.md ├── Source ├── .swiftlint.yml ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── OmegaBank.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── App-Store.xcscheme │ │ ├── Debug.xcscheme │ │ ├── OmegaBankAPI.xcscheme │ │ └── QA.xcscheme ├── OmegaBank.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── OmegaBank │ ├── Resources │ │ ├── Assets.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── App_store_1024_1x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── iPhone_App_60_2x.png │ │ │ │ ├── iPhone_App_60_3x.png │ │ │ │ ├── iPhone_Notifications_20_2x.png │ │ │ │ ├── iPhone_Notifications_20_3x.png │ │ │ │ ├── iPhone_Settings_29_2x.png │ │ │ │ ├── iPhone_Settings_29_3x.png │ │ │ │ ├── iPhone_Spotlight_40_2x.png │ │ │ │ └── iPhone_Spotlight_40_3x.png │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ │ ├── BarButtonIcons │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logout.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logout.pdf │ │ │ │ ├── Contents.json │ │ │ │ ├── MapIcons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Location.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Location.pdf │ │ │ │ │ ├── Minus.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Minus.pdf │ │ │ │ │ ├── Plus.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Plus.pdf │ │ │ │ │ └── maps.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── maps.pdf │ │ │ │ ├── PinCodeIcons │ │ │ │ │ ├── Biometric │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── faceid.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── faceid.pdf │ │ │ │ │ │ └── touchid.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── touchid.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── backspace.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── backspace.pdf │ │ │ │ ├── TabBarIcons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── customers.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── customers.pdf │ │ │ │ │ ├── map.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── map.pdf │ │ │ │ │ └── signin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── savings.pdf │ │ │ │ ├── add.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icons8-плюс.pdf │ │ │ │ ├── arrowDown.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrowDown_2.pdf │ │ │ │ ├── arrowRight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── arrowRight_2.pdf │ │ │ │ └── credit_card.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── credit_card.pdf │ │ │ ├── Images │ │ │ │ ├── Contents.json │ │ │ │ ├── background.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── background.png │ │ │ │ │ ├── background@2x.png │ │ │ │ │ └── background@3x.png │ │ │ │ ├── card.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── card.pdf │ │ │ │ └── defaultUser.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── defaultUser.pdf │ │ │ └── Symbols │ │ │ │ ├── Contents.json │ │ │ │ └── chevron.left.symbolset │ │ │ │ ├── Contents.json │ │ │ │ └── chevron.left.svg │ │ └── ColorAssets.xcassets │ │ │ └── Colors │ │ │ ├── Background │ │ │ ├── Contents.json │ │ │ ├── backgroundPrimaryPressed.colorset │ │ │ │ └── Contents.json │ │ │ ├── defaultBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── scrollViewBackground.colorset │ │ │ │ └── Contents.json │ │ │ └── tableViewSeparator.colorset │ │ │ │ └── Contents.json │ │ │ ├── Bar │ │ │ ├── Contents.json │ │ │ ├── bar1.colorset │ │ │ │ └── Contents.json │ │ │ └── bar2.colorset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Text │ │ │ ├── Contents.json │ │ │ ├── textPrimary.colorset │ │ │ │ └── Contents.json │ │ │ └── textSupplementary.colorset │ │ │ │ └── Contents.json │ │ │ ├── cellBorder.colorset │ │ │ └── Contents.json │ │ │ ├── curve1.colorset │ │ │ └── Contents.json │ │ │ ├── curve2.colorset │ │ │ └── Contents.json │ │ │ ├── ph1.colorset │ │ │ └── Contents.json │ │ │ ├── ph2.colorset │ │ │ └── Contents.json │ │ │ └── ph3.colorset │ │ │ └── Contents.json │ ├── Sources │ │ ├── Application │ │ │ ├── AppDelegate.swift │ │ │ └── AppViewController.swift │ │ ├── Business Logic │ │ │ ├── Helper │ │ │ │ ├── Environment.swift │ │ │ │ ├── Results.swift │ │ │ │ ├── Storage │ │ │ │ │ ├── AccessTokenStorage.swift │ │ │ │ │ ├── BoolStorage.swift │ │ │ │ │ ├── DataStorage.swift │ │ │ │ │ └── KeychainStorage.swift │ │ │ │ ├── Typealias.swift │ │ │ │ └── WorkScheduler.swift │ │ │ ├── Service │ │ │ │ ├── BankPlacesService.swift │ │ │ │ ├── BiometricService.swift │ │ │ │ ├── CardListService.swift │ │ │ │ ├── DepositListService.swift │ │ │ │ ├── LoginService.swift │ │ │ │ └── PartnetListService.swift │ │ │ └── ServiceLayer.swift │ │ └── Presentation │ │ │ ├── Auth │ │ │ ├── PhoneNumber │ │ │ │ └── View Controller │ │ │ │ │ ├── LoginViewController.swift │ │ │ │ │ └── LoginViewController.xib │ │ │ └── PinCode │ │ │ │ ├── Common │ │ │ │ └── Button │ │ │ │ │ ├── PinCodeBaseButton.swift │ │ │ │ │ └── PinCodeDigitButton.swift │ │ │ │ ├── View Contorller │ │ │ │ ├── PinCodeBaseViewController.swift │ │ │ │ ├── PinCodeCreateViewController.swift │ │ │ │ └── PinCodeEntryViewController.swift │ │ │ │ └── View │ │ │ │ ├── PinCodeIndicatorView.swift │ │ │ │ ├── PinCodeIndicatorView.xib │ │ │ │ ├── PinCodeKeyboardView.swift │ │ │ │ ├── PinCodeKeyboardView.xib │ │ │ │ └── PinCodeView.swift │ │ │ ├── Common │ │ │ ├── Appearence │ │ │ │ ├── Color.swift │ │ │ │ └── Font.swift │ │ │ ├── CollectionViewController │ │ │ │ └── Layout │ │ │ │ │ ├── AnimatedCollectionViewLayout.swift │ │ │ │ │ ├── Animators │ │ │ │ │ └── CardAttributesAnimator.swift │ │ │ │ │ └── LayoutAttributesAnimator.swift │ │ │ ├── Helper │ │ │ │ ├── CAGradientLayer.swift │ │ │ │ └── String+Html.swift │ │ │ ├── PageViewControllerFactory.swift │ │ │ ├── Transition │ │ │ │ ├── FadeTransition.swift │ │ │ │ └── ViewControllerTransitionAnimator.swift │ │ │ ├── View Controller │ │ │ │ ├── Error │ │ │ │ │ ├── ErrorItem.swift │ │ │ │ │ ├── ErrorViewController.swift │ │ │ │ │ └── ErrorViewController.xib │ │ │ │ ├── Helper │ │ │ │ │ └── UIViewController+Child.swift │ │ │ │ ├── HorizontalScrollableViewController.swift │ │ │ │ ├── NavigationController.swift │ │ │ │ ├── PageViewController.swift │ │ │ │ ├── PrivacyProtectionViewController.swift │ │ │ │ ├── StackedViewController.swift │ │ │ │ ├── TitledPageViewController.swift │ │ │ │ ├── TitledPageViewController.xib │ │ │ │ ├── VerticalScrollableViewController.swift │ │ │ │ └── ViewController.swift │ │ │ └── View │ │ │ │ ├── Button │ │ │ │ ├── Button.swift │ │ │ │ └── SubmitButton.swift │ │ │ │ ├── Cell │ │ │ │ └── TableViewCell.swift │ │ │ │ ├── Helper │ │ │ │ ├── AlertPresentable.swift │ │ │ │ ├── BarButtonItems.swift │ │ │ │ ├── LayoutGuide.swift │ │ │ │ ├── MKMapView+extension.swift │ │ │ │ ├── NibLoadable.swift │ │ │ │ ├── NibRepresentable.swift │ │ │ │ ├── ScrollViewPager.swift │ │ │ │ ├── UICollectionView+Nib.swift │ │ │ │ ├── UITableView+Nib.swift │ │ │ │ └── ViewCorners.swift │ │ │ │ ├── Image │ │ │ │ └── Helper │ │ │ │ │ └── UIImageView+Download.swift │ │ │ │ └── View │ │ │ │ ├── CurvedView.swift │ │ │ │ ├── ShadowView.swift │ │ │ │ ├── TitledCurvedView.swift │ │ │ │ └── View.swift │ │ │ ├── Launch │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Map │ │ │ ├── Annotations │ │ │ │ ├── MapAnnotation.swift │ │ │ │ └── View │ │ │ │ │ ├── AtmMarkerAnnotationView.swift │ │ │ │ │ ├── BankPointMarkerAnnotationView.swift │ │ │ │ │ ├── ClusterMarkerAnnotationView.swift │ │ │ │ │ └── OfficeMarkerAnnotationView.swift │ │ │ ├── Common │ │ │ │ └── MapButton.swift │ │ │ ├── Helper │ │ │ │ ├── AppSchemeRouter.swift │ │ │ │ └── Schemes │ │ │ │ │ ├── GoogleMapsScheme.swift │ │ │ │ │ ├── MapAppScheme.swift │ │ │ │ │ └── YandexMapsScheme.swift │ │ │ ├── MapContainerViewController.swift │ │ │ ├── MapViewController.swift │ │ │ └── View │ │ │ │ ├── MapSegmentedView.swift │ │ │ │ └── MapView.swift │ │ │ ├── Partner │ │ │ ├── PartnerDetailed │ │ │ │ ├── Model │ │ │ │ │ └── PartnerLimitViewModel.swift │ │ │ │ ├── View │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── PartnerLimitCell.swift │ │ │ │ │ │ └── PartnerLimitCell.xib │ │ │ │ │ ├── PartnerDescriptionView.swift │ │ │ │ │ ├── PartnerDescriptionView.xib │ │ │ │ │ └── PartnerSerapatorView.swift │ │ │ │ └── ViewController │ │ │ │ │ ├── PartnerLimitCollectionViewController.swift │ │ │ │ │ └── PartnterDetailedViewController.swift │ │ │ ├── PartnerList │ │ │ │ ├── View Controller │ │ │ │ │ ├── PartnerListViewController.swift │ │ │ │ │ └── PartnerListViewController.xib │ │ │ │ └── View │ │ │ │ │ └── Cell │ │ │ │ │ ├── PartnerCell.swift │ │ │ │ │ └── PartnerCell.xib │ │ │ └── PartnerListContainer │ │ │ │ └── View Controller │ │ │ │ └── PartnerListContainerViewController.swift │ │ │ └── Savings │ │ │ ├── AddCard │ │ │ ├── Main │ │ │ │ └── View Controller │ │ │ │ │ └── MainAddCardViewController.swift │ │ │ └── Selector │ │ │ │ └── View Controller │ │ │ │ └── CardTypeSelectorViewController.swift │ │ │ ├── AddDeposit │ │ │ ├── Main │ │ │ │ └── View Controller │ │ │ │ │ └── MainAddDepositViewController.swift │ │ │ └── Selector │ │ │ │ ├── View Controller │ │ │ │ └── DepositTypeSelectorViewController.swift │ │ │ │ └── View │ │ │ │ ├── DepositTypeView.swift │ │ │ │ └── DepositTypeView.xib │ │ │ ├── AddProduct │ │ │ ├── Common │ │ │ │ └── View │ │ │ │ │ ├── SubtitleView.swift │ │ │ │ │ └── SubtitleView.xib │ │ │ └── Descriptor │ │ │ │ ├── Model │ │ │ │ └── ProductInfo.swift │ │ │ │ └── View Controller │ │ │ │ └── ProductTypeDescriptorViewController.swift │ │ │ ├── ProductList │ │ │ ├── HotActions │ │ │ │ ├── View Controller │ │ │ │ │ └── HotActionListViewController.swift │ │ │ │ └── View │ │ │ │ │ ├── HotActionView.swift │ │ │ │ │ └── HotActionView.xib │ │ │ ├── Main │ │ │ │ └── View Controller │ │ │ │ │ └── MainProductListContainerViewController.swift │ │ │ └── ProductList │ │ │ │ ├── Model │ │ │ │ ├── Product.swift │ │ │ │ ├── ProductType.swift │ │ │ │ └── UserProduct.swift │ │ │ │ ├── View Controller │ │ │ │ ├── ProductListViewController.swift │ │ │ │ └── SavingsListViewController.swift │ │ │ │ ├── View Model │ │ │ │ └── SavingModel.swift │ │ │ │ └── View │ │ │ │ ├── ProductCell.swift │ │ │ │ ├── ProductCell.xib │ │ │ │ ├── ProductHeader.swift │ │ │ │ ├── ProductHeader.xib │ │ │ │ ├── SavingsHeader.swift │ │ │ │ ├── SeparatorView.swift │ │ │ │ └── SeparatorView.xib │ │ │ └── TransactionHistory │ │ │ ├── Model │ │ │ └── Transaction.swift │ │ │ └── View Controller │ │ │ └── TransactionHistoryViewController.swift │ └── Supporting Files │ │ ├── ExportOptions.plist │ │ ├── Info.plist │ │ ├── OmegaBank.entitlements │ │ ├── en.lproj │ │ └── Localizable.strings │ │ └── ru.lproj │ │ └── Localizable.strings ├── OmegaBankFrameworks │ ├── OmegaBankAPI │ │ ├── Source │ │ │ ├── Business Logic │ │ │ │ └── Service │ │ │ │ │ └── APIService.swift │ │ │ ├── Client.swift │ │ │ ├── Common │ │ │ │ ├── APIError.swift │ │ │ │ ├── APIRequestAdapter.swift │ │ │ │ ├── Codable.swift │ │ │ │ ├── HTTPError.swift │ │ │ │ ├── ResponseValidator.swift │ │ │ │ └── URLRequest+HTTP.swift │ │ │ ├── Endpoint │ │ │ │ ├── Auth │ │ │ │ │ ├── CheckSmsCodeEndpoint.swift │ │ │ │ │ └── SendPhoneEndpoint.swift │ │ │ │ ├── BankPlacesEndpoint.swift │ │ │ │ ├── Base │ │ │ │ │ ├── EmptyEndpoint.swift │ │ │ │ │ ├── Endpoint.swift │ │ │ │ │ └── JsonEndpoint.swift │ │ │ │ ├── PartnersEndpoint.swift │ │ │ │ └── Savings │ │ │ │ │ ├── ApplyCardEndpoint.swift │ │ │ │ │ ├── ApplyDepositEndpoint.swift │ │ │ │ │ ├── CardTypesEndpoint.swift │ │ │ │ │ ├── CardsEndpoint.swift │ │ │ │ │ ├── DepositTypesEndpoint.swift │ │ │ │ │ └── DepositsEndpoint.swift │ │ │ └── Model │ │ │ │ ├── AuthData.swift │ │ │ │ ├── BankPlaces.swift │ │ │ │ ├── Card.swift │ │ │ │ ├── CardInfo.swift │ │ │ │ ├── Deposit.swift │ │ │ │ ├── DepositInfo.swift │ │ │ │ └── Partner.swift │ │ └── Supporting Files │ │ │ ├── Info.plist │ │ │ └── OmegaBankAPI.h │ └── OmegaBankAPITests │ │ ├── Common │ │ └── Asserts.swift │ │ ├── Info.plist │ │ └── Tests │ │ └── Endpoints │ │ ├── Auth │ │ ├── CheckSmsCodeEndpointTest.swift │ │ └── SendPhoneEndpointTest.swift │ │ ├── PartnersEndpointTest.swift │ │ └── Savings │ │ ├── ApplyCardEndpointTest.swift │ │ ├── ApplyDepositEndpointTest.swift │ │ ├── CardTypesEndpointTest.swift │ │ ├── CardsEndpointTest.swift │ │ ├── DepositTypesEndpointTest.swift │ │ └── DepositsEndpointTest.swift ├── OmegaBankTests │ ├── Case │ │ └── ViewControllerTestCase.swift │ ├── Helpers │ │ ├── UIControl+User.swift │ │ ├── UIStackView+Subviews.swift │ │ ├── UIView+Subview.swift │ │ └── UIViewController+UIBarButtonItem.swift │ ├── Mock │ │ ├── Business Logic │ │ │ └── Service │ │ │ │ ├── MockCardListService.swift │ │ │ │ ├── MockClient.swift │ │ │ │ ├── MockDepositListService.swift │ │ │ │ ├── MockLoginService.swift │ │ │ │ └── MockPartnerListService.swift │ │ └── Model │ │ │ ├── PartnerMock.swift │ │ │ └── SavingMock.swift │ ├── Supporting Files │ │ └── Info.plist │ └── Test │ │ ├── Business Logic │ │ └── Service │ │ │ └── AuthServiceTests.swift │ │ └── Presentation │ │ ├── Auth │ │ └── ViewController │ │ │ └── LoginViewControllerTests.swift │ │ ├── Partners │ │ └── View Controller │ │ │ ├── PartnerDetailedViewControllerTests.swift │ │ │ └── PartnerListContainerViewControllerTests.swift │ │ └── Savings │ │ └── View Controller │ │ ├── CardTypeSelectorViewControllerTests.swift │ │ ├── DepositTypeSelectorViewControllerTests.swift │ │ ├── MainAddCardViewControllerTests.swift │ │ ├── MainAddDepositViewControllerTests.swift │ │ ├── MainProductListContainerViewControllerTests.swift │ │ ├── ProductListViewControllerTests.swift │ │ ├── ProductTypeDescriptorViewControllerCardTests.swift │ │ └── ProductTypeDescriptorViewControllerDepositTests.swift ├── OmegaBankUITests │ ├── Helpers │ │ └── Timeout.swift │ ├── Mocks │ │ └── auth │ │ │ └── sms │ │ │ ├── check-code │ │ │ └── smsCode.json │ │ │ └── send-code │ │ │ └── phone.json │ ├── Screens │ │ ├── Base │ │ │ └── BaseScreen.swift │ │ ├── LoginScreen.swift │ │ └── ProductsScreen.swift │ ├── Supporting Files │ │ └── Info.plist │ └── Tests │ │ ├── Base │ │ ├── Mock │ │ │ ├── Helper │ │ │ │ └── CatbirdMockConvertible+Json.swift │ │ │ ├── SendPhoneMock.swift │ │ │ └── SendSmsCodeMock.swift │ │ └── TestBase.swift │ │ └── LoginTests.swift ├── Podfile ├── Podfile.lock ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── Pluginfile │ ├── Scanfile │ ├── ci build commands │ │ └── qa_build.command │ ├── env-example │ └── mail │ │ ├── art.rb │ │ ├── mail_renderer.rb │ │ ├── mail_template.html.erb │ │ └── recipients.txt ├── pod_install.command ├── pod_update.command └── swiftgen.yml └── setup.command /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Resources/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/Resources/cards.png -------------------------------------------------------------------------------- /Documentation/Resources/debug_view_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/Resources/debug_view_hierarchy.png -------------------------------------------------------------------------------- /Documentation/Resources/hot-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/Resources/hot-actions.png -------------------------------------------------------------------------------- /Documentation/Resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/Resources/main.png -------------------------------------------------------------------------------- /Documentation/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/architecture.md -------------------------------------------------------------------------------- /Documentation/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/modules.md -------------------------------------------------------------------------------- /Documentation/mvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/mvc.md -------------------------------------------------------------------------------- /Documentation/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/routing.md -------------------------------------------------------------------------------- /Documentation/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Documentation/structure.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/README.md -------------------------------------------------------------------------------- /Source/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/.swiftlint.yml -------------------------------------------------------------------------------- /Source/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/Dangerfile -------------------------------------------------------------------------------- /Source/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/Gemfile -------------------------------------------------------------------------------- /Source/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/Gemfile.lock -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/App-Store.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/App-Store.xcscheme -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/OmegaBankAPI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/OmegaBankAPI.xcscheme -------------------------------------------------------------------------------- /Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/QA.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcodeproj/xcshareddata/xcschemes/QA.xcscheme -------------------------------------------------------------------------------- /Source/OmegaBank.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/OmegaBank.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/App_store_1024_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/App_store_1024_1x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_App_60_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_App_60_2x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_App_60_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_App_60_3x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Notifications_20_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Notifications_20_2x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Notifications_20_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Notifications_20_3x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Settings_29_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Settings_29_2x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Settings_29_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Settings_29_3x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Spotlight_40_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Spotlight_40_2x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Spotlight_40_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/AppIcon.appiconset/iPhone_Spotlight_40_3x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/logout.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/logout.imageset/logout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/BarButtonIcons/logout.imageset/logout.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Location.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Location.imageset/Location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Location.imageset/Location.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Minus.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Minus.imageset/Minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Minus.imageset/Minus.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Plus.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Plus.imageset/Plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/Plus.imageset/Plus.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/maps.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/maps.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/maps.imageset/maps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/MapIcons/maps.imageset/maps.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/faceid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/faceid.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/faceid.imageset/faceid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/faceid.imageset/faceid.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/touchid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/touchid.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/touchid.imageset/touchid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Biometric/touchid.imageset/touchid.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/backspace.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/backspace.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/backspace.imageset/backspace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/PinCodeIcons/backspace.imageset/backspace.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/customers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/customers.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/customers.imageset/customers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/customers.imageset/customers.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/map.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/map.imageset/map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/map.imageset/map.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/signin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/signin.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/signin.imageset/savings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/TabBarIcons/signin.imageset/savings.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/add.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/add.imageset/icons8-плюс.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/add.imageset/icons8-плюс.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowDown.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowDown.imageset/arrowDown_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowDown.imageset/arrowDown_2.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowRight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowRight.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowRight.imageset/arrowRight_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/arrowRight.imageset/arrowRight_2.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/credit_card.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/credit_card.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Icons/credit_card.imageset/credit_card.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Icons/credit_card.imageset/credit_card.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background@2x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/background.imageset/background@3x.png -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/card.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/card.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/card.imageset/card.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/card.imageset/card.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/defaultUser.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/defaultUser.imageset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Images/defaultUser.imageset/defaultUser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Images/defaultUser.imageset/defaultUser.pdf -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Symbols/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Symbols/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Symbols/chevron.left.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Symbols/chevron.left.symbolset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/Assets.xcassets/Symbols/chevron.left.symbolset/chevron.left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/Assets.xcassets/Symbols/chevron.left.symbolset/chevron.left.svg -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/backgroundPrimaryPressed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/backgroundPrimaryPressed.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/defaultBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/defaultBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/scrollViewBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/scrollViewBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/tableViewSeparator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Background/tableViewSeparator.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/bar1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/bar1.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/bar2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Bar/bar2.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/textPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/textPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/textSupplementary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/Text/textSupplementary.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/cellBorder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/cellBorder.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/curve1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/curve1.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/curve2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/curve2.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph1.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph2.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph3.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Resources/ColorAssets.xcassets/Colors/ph3.colorset/Contents.json -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Application/AppViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Application/AppViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Environment.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Results.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Storage/AccessTokenStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Storage/AccessTokenStorage.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Storage/BoolStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Storage/BoolStorage.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Storage/DataStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Storage/DataStorage.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Storage/KeychainStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Storage/KeychainStorage.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/Typealias.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Helper/WorkScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Helper/WorkScheduler.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/BankPlacesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/BankPlacesService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/BiometricService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/BiometricService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/CardListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/CardListService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/DepositListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/DepositListService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/LoginService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/LoginService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/Service/PartnetListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/Service/PartnetListService.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Business Logic/ServiceLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Business Logic/ServiceLayer.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PhoneNumber/View Controller/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PhoneNumber/View Controller/LoginViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PhoneNumber/View Controller/LoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PhoneNumber/View Controller/LoginViewController.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/Common/Button/PinCodeBaseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/Common/Button/PinCodeBaseButton.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/Common/Button/PinCodeDigitButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/Common/Button/PinCodeDigitButton.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeBaseViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeCreateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeCreateViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeEntryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View Contorller/PinCodeEntryViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeIndicatorView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeIndicatorView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeIndicatorView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeKeyboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeKeyboardView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeKeyboardView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeKeyboardView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Auth/PinCode/View/PinCodeView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Appearence/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Appearence/Color.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Appearence/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Appearence/Font.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/AnimatedCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/AnimatedCollectionViewLayout.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/Animators/CardAttributesAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/Animators/CardAttributesAnimator.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/LayoutAttributesAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/CollectionViewController/Layout/LayoutAttributesAnimator.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Helper/CAGradientLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Helper/CAGradientLayer.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Helper/String+Html.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Helper/String+Html.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/PageViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/PageViewControllerFactory.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Transition/FadeTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Transition/FadeTransition.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/Transition/ViewControllerTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/Transition/ViewControllerTransitionAnimator.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorItem.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/Error/ErrorViewController.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/Helper/UIViewController+Child.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/Helper/UIViewController+Child.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/HorizontalScrollableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/HorizontalScrollableViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/NavigationController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/PageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/PageViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/PrivacyProtectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/PrivacyProtectionViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/StackedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/StackedViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/TitledPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/TitledPageViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/TitledPageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/TitledPageViewController.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/VerticalScrollableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/VerticalScrollableViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View Controller/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View Controller/ViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Button/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Button/Button.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Button/SubmitButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Button/SubmitButton.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Cell/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Cell/TableViewCell.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/AlertPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/AlertPresentable.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/BarButtonItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/BarButtonItems.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/LayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/LayoutGuide.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/MKMapView+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/MKMapView+extension.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/NibLoadable.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/NibRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/NibRepresentable.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/ScrollViewPager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/ScrollViewPager.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/UICollectionView+Nib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/UICollectionView+Nib.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/UITableView+Nib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/UITableView+Nib.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Helper/ViewCorners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Helper/ViewCorners.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/Image/Helper/UIImageView+Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/Image/Helper/UIImageView+Download.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/View/CurvedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/View/CurvedView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/View/ShadowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/View/ShadowView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/View/TitledCurvedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/View/TitledCurvedView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Common/View/View/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Common/View/View/View.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Launch/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Launch/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Annotations/MapAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Annotations/MapAnnotation.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Annotations/View/AtmMarkerAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Annotations/View/AtmMarkerAnnotationView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Annotations/View/BankPointMarkerAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Annotations/View/BankPointMarkerAnnotationView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Annotations/View/ClusterMarkerAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Annotations/View/ClusterMarkerAnnotationView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Annotations/View/OfficeMarkerAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Annotations/View/OfficeMarkerAnnotationView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Common/MapButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Common/MapButton.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Helper/AppSchemeRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Helper/AppSchemeRouter.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/GoogleMapsScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/GoogleMapsScheme.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/MapAppScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/MapAppScheme.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/YandexMapsScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/Helper/Schemes/YandexMapsScheme.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/MapContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/MapContainerViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/MapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/MapViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/View/MapSegmentedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/View/MapSegmentedView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Map/View/MapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Map/View/MapView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/Model/PartnerLimitViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/Model/PartnerLimitViewModel.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/Cell/PartnerLimitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/Cell/PartnerLimitCell.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/Cell/PartnerLimitCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/Cell/PartnerLimitCell.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerDescriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerDescriptionView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerDescriptionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerDescriptionView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerSerapatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/View/PartnerSerapatorView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/ViewController/PartnerLimitCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/ViewController/PartnerLimitCollectionViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/ViewController/PartnterDetailedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerDetailed/ViewController/PartnterDetailedViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View Controller/PartnerListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View Controller/PartnerListViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View Controller/PartnerListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View Controller/PartnerListViewController.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View/Cell/PartnerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View/Cell/PartnerCell.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View/Cell/PartnerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerList/View/Cell/PartnerCell.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Partner/PartnerListContainer/View Controller/PartnerListContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Partner/PartnerListContainer/View Controller/PartnerListContainerViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddCard/Main/View Controller/MainAddCardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddCard/Main/View Controller/MainAddCardViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddCard/Selector/View Controller/CardTypeSelectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddCard/Selector/View Controller/CardTypeSelectorViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Main/View Controller/MainAddDepositViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Main/View Controller/MainAddDepositViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View Controller/DepositTypeSelectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View Controller/DepositTypeSelectorViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View/DepositTypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View/DepositTypeView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View/DepositTypeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddDeposit/Selector/View/DepositTypeView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Common/View/SubtitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Common/View/SubtitleView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Common/View/SubtitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Common/View/SubtitleView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Descriptor/Model/ProductInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Descriptor/Model/ProductInfo.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Descriptor/View Controller/ProductTypeDescriptorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/AddProduct/Descriptor/View Controller/ProductTypeDescriptorViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View Controller/HotActionListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View Controller/HotActionListViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View/HotActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View/HotActionView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View/HotActionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/HotActions/View/HotActionView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/Main/View Controller/MainProductListContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/Main/View Controller/MainProductListContainerViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/Product.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/ProductType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/ProductType.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/UserProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/Model/UserProduct.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Controller/ProductListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Controller/ProductListViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Controller/SavingsListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Controller/SavingsListViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Model/SavingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View Model/SavingModel.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductCell.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductCell.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductHeader.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/ProductHeader.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SavingsHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SavingsHeader.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SeparatorView.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SeparatorView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/ProductList/ProductList/View/SeparatorView.xib -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/TransactionHistory/Model/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/TransactionHistory/Model/Transaction.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Sources/Presentation/Savings/TransactionHistory/View Controller/TransactionHistoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Sources/Presentation/Savings/TransactionHistory/View Controller/TransactionHistoryViewController.swift -------------------------------------------------------------------------------- /Source/OmegaBank/Supporting Files/ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Supporting Files/ExportOptions.plist -------------------------------------------------------------------------------- /Source/OmegaBank/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Source/OmegaBank/Supporting Files/OmegaBank.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Supporting Files/OmegaBank.entitlements -------------------------------------------------------------------------------- /Source/OmegaBank/Supporting Files/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Supporting Files/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/OmegaBank/Supporting Files/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBank/Supporting Files/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Business Logic/Service/APIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Business Logic/Service/APIService.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Client.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/APIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/APIError.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/APIRequestAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/APIRequestAdapter.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/Codable.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/HTTPError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/HTTPError.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/ResponseValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/ResponseValidator.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/URLRequest+HTTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Common/URLRequest+HTTP.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Auth/CheckSmsCodeEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Auth/CheckSmsCodeEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Auth/SendPhoneEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Auth/SendPhoneEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/BankPlacesEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/BankPlacesEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/EmptyEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/EmptyEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/Endpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/JsonEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Base/JsonEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/PartnersEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/PartnersEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/ApplyCardEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/ApplyCardEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/ApplyDepositEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/ApplyDepositEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/CardTypesEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/CardTypesEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/CardsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/CardsEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/DepositTypesEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/DepositTypesEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/DepositsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Endpoint/Savings/DepositsEndpoint.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/AuthData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/AuthData.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/BankPlaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/BankPlaces.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Card.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/CardInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/CardInfo.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Deposit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Deposit.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/DepositInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/DepositInfo.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Partner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Source/Model/Partner.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPI/Supporting Files/OmegaBankAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPI/Supporting Files/OmegaBankAPI.h -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Common/Asserts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Common/Asserts.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Info.plist -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Auth/CheckSmsCodeEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Auth/CheckSmsCodeEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Auth/SendPhoneEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Auth/SendPhoneEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/PartnersEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/PartnersEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/ApplyCardEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/ApplyCardEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/ApplyDepositEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/ApplyDepositEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/CardTypesEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/CardTypesEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/CardsEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/CardsEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/DepositTypesEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/DepositTypesEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/DepositsEndpointTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankFrameworks/OmegaBankAPITests/Tests/Endpoints/Savings/DepositsEndpointTest.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Case/ViewControllerTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Case/ViewControllerTestCase.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Helpers/UIControl+User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Helpers/UIControl+User.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Helpers/UIStackView+Subviews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Helpers/UIStackView+Subviews.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Helpers/UIView+Subview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Helpers/UIView+Subview.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Helpers/UIViewController+UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Helpers/UIViewController+UIBarButtonItem.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Business Logic/Service/MockCardListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Business Logic/Service/MockCardListService.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Business Logic/Service/MockClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Business Logic/Service/MockClient.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Business Logic/Service/MockDepositListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Business Logic/Service/MockDepositListService.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Business Logic/Service/MockLoginService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Business Logic/Service/MockLoginService.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Business Logic/Service/MockPartnerListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Business Logic/Service/MockPartnerListService.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Model/PartnerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Model/PartnerMock.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Mock/Model/SavingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Mock/Model/SavingMock.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Business Logic/Service/AuthServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Business Logic/Service/AuthServiceTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Auth/ViewController/LoginViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Auth/ViewController/LoginViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Partners/View Controller/PartnerDetailedViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Partners/View Controller/PartnerDetailedViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Partners/View Controller/PartnerListContainerViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Partners/View Controller/PartnerListContainerViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/CardTypeSelectorViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/CardTypeSelectorViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/DepositTypeSelectorViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/DepositTypeSelectorViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainAddCardViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainAddCardViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainAddDepositViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainAddDepositViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainProductListContainerViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/MainProductListContainerViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductListViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductListViewControllerTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductTypeDescriptorViewControllerCardTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductTypeDescriptorViewControllerCardTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductTypeDescriptorViewControllerDepositTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankTests/Test/Presentation/Savings/View Controller/ProductTypeDescriptorViewControllerDepositTests.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Helpers/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Helpers/Timeout.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Mocks/auth/sms/check-code/smsCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Mocks/auth/sms/check-code/smsCode.json -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Mocks/auth/sms/send-code/phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Mocks/auth/sms/send-code/phone.json -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Screens/Base/BaseScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Screens/Base/BaseScreen.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Screens/LoginScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Screens/LoginScreen.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Screens/ProductsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Screens/ProductsScreen.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Tests/Base/Mock/Helper/CatbirdMockConvertible+Json.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Tests/Base/Mock/Helper/CatbirdMockConvertible+Json.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Tests/Base/Mock/SendPhoneMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Tests/Base/Mock/SendPhoneMock.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Tests/Base/Mock/SendSmsCodeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Tests/Base/Mock/SendSmsCodeMock.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Tests/Base/TestBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Tests/Base/TestBase.swift -------------------------------------------------------------------------------- /Source/OmegaBankUITests/Tests/LoginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/OmegaBankUITests/Tests/LoginTests.swift -------------------------------------------------------------------------------- /Source/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/Podfile -------------------------------------------------------------------------------- /Source/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/Podfile.lock -------------------------------------------------------------------------------- /Source/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/Appfile -------------------------------------------------------------------------------- /Source/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/Fastfile -------------------------------------------------------------------------------- /Source/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/Pluginfile -------------------------------------------------------------------------------- /Source/fastlane/Scanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/Scanfile -------------------------------------------------------------------------------- /Source/fastlane/ci build commands/qa_build.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/ci build commands/qa_build.command -------------------------------------------------------------------------------- /Source/fastlane/env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/env-example -------------------------------------------------------------------------------- /Source/fastlane/mail/art.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/mail/art.rb -------------------------------------------------------------------------------- /Source/fastlane/mail/mail_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/mail/mail_renderer.rb -------------------------------------------------------------------------------- /Source/fastlane/mail/mail_template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/fastlane/mail/mail_template.html.erb -------------------------------------------------------------------------------- /Source/fastlane/mail/recipients.txt: -------------------------------------------------------------------------------- 1 | qa@redmadrobot.com -------------------------------------------------------------------------------- /Source/pod_install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/pod_install.command -------------------------------------------------------------------------------- /Source/pod_update.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/pod_update.command -------------------------------------------------------------------------------- /Source/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/Source/swiftgen.yml -------------------------------------------------------------------------------- /setup.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedMadRobot/omega-bank-ios/HEAD/setup.command --------------------------------------------------------------------------------