├── .gitignore ├── Plaidster.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── Plaidster.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── Plaidster.xcscheme │ └── PlaidsterOSX.xcscheme ├── Plaidster ├── Error │ ├── PlaidError.swift │ ├── PlaidErrorConvertible.swift │ └── PlaidsterError.swift ├── Helper │ ├── HandlerTypealiases.swift │ ├── Institution.swift │ └── PlaidCategory.swift ├── PlaidAccount.swift ├── PlaidInstitution.swift ├── PlaidSearchInstitution.swift ├── PlaidTransaction.swift ├── Plaidster.swift └── Supporting │ ├── Info.plist │ ├── Lib │ ├── HTTPMethod.swift │ └── String+Encoding.swift │ └── Plaidster.h ├── PlaidsterOSX ├── Info.plist └── PlaidsterOSX.h ├── PlaidsterTests ├── Info.plist └── PlaidsterTests.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/.gitignore -------------------------------------------------------------------------------- /Plaidster.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Plaidster.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Plaidster.xcodeproj/project.xcworkspace/xcshareddata/Plaidster.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster.xcodeproj/project.xcworkspace/xcshareddata/Plaidster.xcscmblueprint -------------------------------------------------------------------------------- /Plaidster.xcodeproj/xcshareddata/xcschemes/Plaidster.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster.xcodeproj/xcshareddata/xcschemes/Plaidster.xcscheme -------------------------------------------------------------------------------- /Plaidster.xcodeproj/xcshareddata/xcschemes/PlaidsterOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster.xcodeproj/xcshareddata/xcschemes/PlaidsterOSX.xcscheme -------------------------------------------------------------------------------- /Plaidster/Error/PlaidError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Error/PlaidError.swift -------------------------------------------------------------------------------- /Plaidster/Error/PlaidErrorConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Error/PlaidErrorConvertible.swift -------------------------------------------------------------------------------- /Plaidster/Error/PlaidsterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Error/PlaidsterError.swift -------------------------------------------------------------------------------- /Plaidster/Helper/HandlerTypealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Helper/HandlerTypealiases.swift -------------------------------------------------------------------------------- /Plaidster/Helper/Institution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Helper/Institution.swift -------------------------------------------------------------------------------- /Plaidster/Helper/PlaidCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Helper/PlaidCategory.swift -------------------------------------------------------------------------------- /Plaidster/PlaidAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/PlaidAccount.swift -------------------------------------------------------------------------------- /Plaidster/PlaidInstitution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/PlaidInstitution.swift -------------------------------------------------------------------------------- /Plaidster/PlaidSearchInstitution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/PlaidSearchInstitution.swift -------------------------------------------------------------------------------- /Plaidster/PlaidTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/PlaidTransaction.swift -------------------------------------------------------------------------------- /Plaidster/Plaidster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Plaidster.swift -------------------------------------------------------------------------------- /Plaidster/Supporting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Supporting/Info.plist -------------------------------------------------------------------------------- /Plaidster/Supporting/Lib/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Supporting/Lib/HTTPMethod.swift -------------------------------------------------------------------------------- /Plaidster/Supporting/Lib/String+Encoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Supporting/Lib/String+Encoding.swift -------------------------------------------------------------------------------- /Plaidster/Supporting/Plaidster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/Plaidster/Supporting/Plaidster.h -------------------------------------------------------------------------------- /PlaidsterOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/PlaidsterOSX/Info.plist -------------------------------------------------------------------------------- /PlaidsterOSX/PlaidsterOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/PlaidsterOSX/PlaidsterOSX.h -------------------------------------------------------------------------------- /PlaidsterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/PlaidsterTests/Info.plist -------------------------------------------------------------------------------- /PlaidsterTests/PlaidsterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/PlaidsterTests/PlaidsterTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balance-io/Plaidster/HEAD/README.md --------------------------------------------------------------------------------