├── .github └── workflows │ └── xcodebuild.yml ├── .gitignore ├── .ruby-version ├── Contributing.md ├── Docs ├── getting-started.md └── jazzy-config.yaml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── Podfile ├── Podfile.lock ├── README.md ├── Resources ├── Info.plist └── README │ ├── api.png │ ├── credentials.png │ └── url-scheme.png ├── SampleApp └── Sources │ ├── .ViewController.swift.swp │ ├── AppDelegate.swift │ └── ViewController.swift ├── Sources ├── NSDictionary+SCCAdditions.h ├── NSDictionary+SCCAdditions.m ├── NSError+SCCAPIAdditions.m ├── NSError+SCCAPISerializationAdditions.h ├── NSError+SCCAdditions.m ├── NSURL+SCCAdditions.m ├── Public │ ├── NSError+SCCAPIAdditions.h │ ├── NSError+SCCAdditions.h │ ├── NSURL+SCCAdditions.h │ ├── SCCAPIConnection.h │ ├── SCCAPIRequest+Serialization.h │ ├── SCCAPIRequest.h │ ├── SCCAPIResponse.h │ └── SCCMoney.h ├── SCAPIURLConversion.h ├── SCAPIURLConversion.m ├── SCCAPIConnection.m ├── SCCAPIConnection_Testing.h ├── SCCAPIRequest.m ├── SCCAPIResponse+Serialization.h ├── SCCAPIResponse.m └── SCCMoney.m ├── SquarePointOfSaleSDK.podspec └── Tests ├── NSError+SCCAPIAdditionsTests.swift ├── SCCAPIRequestTests.swift ├── SCCAPIResponseTests.swift └── SCCMoneyTests.swift /.github/workflows/xcodebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/.github/workflows/xcodebuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Contributing.md -------------------------------------------------------------------------------- /Docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Docs/getting-started.md -------------------------------------------------------------------------------- /Docs/jazzy-config.yaml: -------------------------------------------------------------------------------- 1 | readme: "./getting-started.md" -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/README/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Resources/README/api.png -------------------------------------------------------------------------------- /Resources/README/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Resources/README/credentials.png -------------------------------------------------------------------------------- /Resources/README/url-scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Resources/README/url-scheme.png -------------------------------------------------------------------------------- /SampleApp/Sources/.ViewController.swift.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/SampleApp/Sources/.ViewController.swift.swp -------------------------------------------------------------------------------- /SampleApp/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/SampleApp/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/SampleApp/Sources/ViewController.swift -------------------------------------------------------------------------------- /Sources/NSDictionary+SCCAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSDictionary+SCCAdditions.h -------------------------------------------------------------------------------- /Sources/NSDictionary+SCCAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSDictionary+SCCAdditions.m -------------------------------------------------------------------------------- /Sources/NSError+SCCAPIAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSError+SCCAPIAdditions.m -------------------------------------------------------------------------------- /Sources/NSError+SCCAPISerializationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSError+SCCAPISerializationAdditions.h -------------------------------------------------------------------------------- /Sources/NSError+SCCAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSError+SCCAdditions.m -------------------------------------------------------------------------------- /Sources/NSURL+SCCAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/NSURL+SCCAdditions.m -------------------------------------------------------------------------------- /Sources/Public/NSError+SCCAPIAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/NSError+SCCAPIAdditions.h -------------------------------------------------------------------------------- /Sources/Public/NSError+SCCAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/NSError+SCCAdditions.h -------------------------------------------------------------------------------- /Sources/Public/NSURL+SCCAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/NSURL+SCCAdditions.h -------------------------------------------------------------------------------- /Sources/Public/SCCAPIConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/SCCAPIConnection.h -------------------------------------------------------------------------------- /Sources/Public/SCCAPIRequest+Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/SCCAPIRequest+Serialization.h -------------------------------------------------------------------------------- /Sources/Public/SCCAPIRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/SCCAPIRequest.h -------------------------------------------------------------------------------- /Sources/Public/SCCAPIResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/SCCAPIResponse.h -------------------------------------------------------------------------------- /Sources/Public/SCCMoney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/Public/SCCMoney.h -------------------------------------------------------------------------------- /Sources/SCAPIURLConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCAPIURLConversion.h -------------------------------------------------------------------------------- /Sources/SCAPIURLConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCAPIURLConversion.m -------------------------------------------------------------------------------- /Sources/SCCAPIConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCAPIConnection.m -------------------------------------------------------------------------------- /Sources/SCCAPIConnection_Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCAPIConnection_Testing.h -------------------------------------------------------------------------------- /Sources/SCCAPIRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCAPIRequest.m -------------------------------------------------------------------------------- /Sources/SCCAPIResponse+Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCAPIResponse+Serialization.h -------------------------------------------------------------------------------- /Sources/SCCAPIResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCAPIResponse.m -------------------------------------------------------------------------------- /Sources/SCCMoney.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Sources/SCCMoney.m -------------------------------------------------------------------------------- /SquarePointOfSaleSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/SquarePointOfSaleSDK.podspec -------------------------------------------------------------------------------- /Tests/NSError+SCCAPIAdditionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Tests/NSError+SCCAPIAdditionsTests.swift -------------------------------------------------------------------------------- /Tests/SCCAPIRequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Tests/SCCAPIRequestTests.swift -------------------------------------------------------------------------------- /Tests/SCCAPIResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Tests/SCCAPIResponseTests.swift -------------------------------------------------------------------------------- /Tests/SCCMoneyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/SquarePointOfSaleSDK-iOS/HEAD/Tests/SCCMoneyTests.swift --------------------------------------------------------------------------------