├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftformat ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── GoTrue.xcscheme ├── Examples ├── Examples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Examples.xcscheme ├── Package.swift ├── README.md └── Shared │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Examples.entitlements │ ├── Info.plist │ └── Sources │ ├── AppView.swift │ ├── AuthWithEmailAndPasswordView.swift │ ├── ExamplesApp.swift │ ├── SessionView.swift │ ├── SignInWithAppleView.swift │ └── _Secrets.swift ├── GoTrue.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── GoTrue │ ├── AuthChangeEvent.swift │ ├── Deprecated.swift │ ├── Endpoints.swift │ ├── Extensions.swift │ ├── GoTrueClient.swift │ ├── GoTrueError.swift │ ├── GoTrueLocalStorage.swift │ ├── Internal │ ├── ConcurrencySupport.swift │ ├── Environment.swift │ ├── Helpers.swift │ ├── SessionManager.swift │ └── Shims.swift │ ├── Types.swift │ └── Version.swift ├── Tests └── GoTrueTests │ ├── GoTrueTests.swift │ ├── JWTTests.swift │ ├── MockHelpers.swift │ └── Resources │ ├── session.json │ ├── signup-response.json │ └── user.json └── scripts └── check-for-breaking-api-changes.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/GoTrue.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/GoTrue.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Examples.xcscheme -------------------------------------------------------------------------------- /Examples/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Package.swift -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Shared/Examples.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Examples.entitlements -------------------------------------------------------------------------------- /Examples/Shared/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Info.plist -------------------------------------------------------------------------------- /Examples/Shared/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/AppView.swift -------------------------------------------------------------------------------- /Examples/Shared/Sources/AuthWithEmailAndPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/AuthWithEmailAndPasswordView.swift -------------------------------------------------------------------------------- /Examples/Shared/Sources/ExamplesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/ExamplesApp.swift -------------------------------------------------------------------------------- /Examples/Shared/Sources/SessionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/SessionView.swift -------------------------------------------------------------------------------- /Examples/Shared/Sources/SignInWithAppleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/SignInWithAppleView.swift -------------------------------------------------------------------------------- /Examples/Shared/Sources/_Secrets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Examples/Shared/Sources/_Secrets.swift -------------------------------------------------------------------------------- /GoTrue.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/GoTrue.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GoTrue.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/GoTrue.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GoTrue.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/GoTrue.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/GoTrue/AuthChangeEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/AuthChangeEvent.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Deprecated.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Endpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Endpoints.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Extensions.swift -------------------------------------------------------------------------------- /Sources/GoTrue/GoTrueClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/GoTrueClient.swift -------------------------------------------------------------------------------- /Sources/GoTrue/GoTrueError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/GoTrueError.swift -------------------------------------------------------------------------------- /Sources/GoTrue/GoTrueLocalStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/GoTrueLocalStorage.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Internal/ConcurrencySupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Internal/ConcurrencySupport.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Internal/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Internal/Environment.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Internal/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Internal/Helpers.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Internal/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Internal/SessionManager.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Internal/Shims.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Internal/Shims.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Sources/GoTrue/Types.swift -------------------------------------------------------------------------------- /Sources/GoTrue/Version.swift: -------------------------------------------------------------------------------- 1 | let version = "1.3.0" 2 | -------------------------------------------------------------------------------- /Tests/GoTrueTests/GoTrueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/GoTrueTests.swift -------------------------------------------------------------------------------- /Tests/GoTrueTests/JWTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/JWTTests.swift -------------------------------------------------------------------------------- /Tests/GoTrueTests/MockHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/MockHelpers.swift -------------------------------------------------------------------------------- /Tests/GoTrueTests/Resources/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/Resources/session.json -------------------------------------------------------------------------------- /Tests/GoTrueTests/Resources/signup-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/Resources/signup-response.json -------------------------------------------------------------------------------- /Tests/GoTrueTests/Resources/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/Tests/GoTrueTests/Resources/user.json -------------------------------------------------------------------------------- /scripts/check-for-breaking-api-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase-community/gotrue-swift/HEAD/scripts/check-for-breaking-api-changes.sh --------------------------------------------------------------------------------