├── .evg.yml ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .swift-version ├── Core ├── Services │ ├── StitchCoreAWSService │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── StitchCoreAWSService │ │ │ │ ├── AWSRequest.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Internal │ │ │ │ └── CoreAWSServiceClient.swift │ │ ├── StitchCoreAWSService.podspec │ │ ├── StitchCoreAWSService.xcodeproj │ │ │ ├── MockUtils_Info.plist │ │ │ ├── StitchCoreAWSServiceTests_Info.plist │ │ │ ├── StitchCoreAWSService_Info.plist │ │ │ ├── StitchCoreSDKMocks_Info.plist │ │ │ ├── StitchCoreSDK_Info.plist │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Tests │ │ │ └── StitchCoreAWSServiceTests │ │ │ ├── AWSRequestUnitTests.swift │ │ │ └── CoreAWSServiceClientUnitTests.swift │ ├── StitchCoreFCMService │ │ ├── .gitignore │ │ ├── .swiftlint.yml │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── StitchCoreFCMService │ │ │ │ ├── FCMSendMessageNotification.swift │ │ │ │ ├── FCMSendMessagePriority.swift │ │ │ │ ├── FCMSendMessageRequest.swift │ │ │ │ ├── FCMSendMessageResult.swift │ │ │ │ ├── FCMSendMessageResultFailureDetail.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Internal │ │ │ │ ├── CoreFCMServiceClient.swift │ │ │ │ └── CoreFCMServicePushClient.swift │ │ ├── StitchCoreFCMService.podspec │ │ ├── StitchCoreFCMService.xcodeproj │ │ │ ├── MockUtils_Info.plist │ │ │ ├── StitchCoreFCMServiceTests_Info.plist │ │ │ ├── StitchCoreFCMService_Info.plist │ │ │ ├── StitchCoreSDKMocks_Info.plist │ │ │ ├── StitchCoreSDK_Info.plist │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Tests │ │ │ └── StitchCoreFCMServiceTests │ │ │ │ ├── FCMSendMessageRequestUnitTests.swift │ │ │ │ └── Internal │ │ │ │ ├── CoreFCMServiceClientUnitTests.swift │ │ │ │ └── CoreFCMServicePushClientUnitTests.swift │ │ └── prep_pods.sh │ ├── StitchCoreHTTPService │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── StitchCoreHTTPService │ │ │ │ ├── HTTPCookie.swift │ │ │ │ ├── HTTPMethod.swift │ │ │ │ ├── HTTPRequest.swift │ │ │ │ ├── HTTPResponse.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Internal │ │ │ │ └── CoreHTTPServiceClient.swift │ │ ├── StitchCoreHTTPService.podspec │ │ ├── StitchCoreHTTPService.xcodeproj │ │ │ ├── MockUtils_Info.plist │ │ │ ├── StitchCoreHTTPServiceTests_Info.plist │ │ │ ├── StitchCoreHTTPService_Info.plist │ │ │ ├── StitchCoreSDKMocks_Info.plist │ │ │ ├── StitchCoreSDK_Info.plist │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Tests │ │ │ └── StitchCoreHTTPServiceTests │ │ │ ├── HTTPRequestUnitTests.swift │ │ │ └── Internal │ │ │ └── CoreHTTPServiceClientUnitTests.swift │ ├── StitchCoreLocalMongoDBService │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── StitchCoreLocalMongoDBService │ │ │ │ ├── CoreLocalMongoDBService.swift │ │ │ │ ├── Info.plist │ │ │ │ └── LRUCache.swift │ │ ├── StitchCoreLocalMongoDBService.podspec │ │ ├── StitchCoreLocalMongoDBService.xcodeproj │ │ │ ├── StitchCoreLocalMongoDBServiceTests_Info.plist │ │ │ ├── StitchCoreLocalMongoDBService_Info.plist │ │ │ ├── StitchCoreSDK_Info.plist │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StitchCoreLocalMongoDBService.xcscheme │ │ ├── Tests │ │ │ └── StitchCoreLocalMongoDBServiceTests │ │ │ │ ├── CoreLocalMongoDBServiceTests.swift │ │ │ │ └── LRUCacheUnitTests.swift │ │ ├── download_sdk.sh │ │ └── prep_pods.sh │ ├── StitchCoreRemoteMongoDBService │ │ ├── .gitignore │ │ ├── .swiftlint.yml │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── StitchCoreRemoteMongoDBService │ │ │ │ ├── BaseChangeEvent.swift │ │ │ │ ├── ChangeEvent.swift │ │ │ │ ├── CompactChangeEvent.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Internal │ │ │ │ ├── ChangeEvents.swift │ │ │ │ ├── Closable.swift │ │ │ │ ├── CoreRemoteMongoClient.swift │ │ │ │ ├── CoreRemoteMongoCollection.swift │ │ │ │ ├── CoreRemoteMongoCursor.swift │ │ │ │ ├── CoreRemoteMongoDatabase.swift │ │ │ │ └── CoreRemoteMongoReadOperation.swift │ │ │ │ ├── RemoteCountOptions.swift │ │ │ │ ├── RemoteDeleteResult.swift │ │ │ │ ├── RemoteFindOneAndModifyOptions.swift │ │ │ │ ├── RemoteFindOptions.swift │ │ │ │ ├── RemoteInsertManyResult.swift │ │ │ │ ├── RemoteInsertOneResult.swift │ │ │ │ ├── RemoteUpdateOptions.swift │ │ │ │ ├── RemoteUpdateResult.swift │ │ │ │ ├── Sync │ │ │ │ ├── ChangeEventDelegate.swift │ │ │ │ ├── ConflictHandler.swift │ │ │ │ ├── ErrorListener.swift │ │ │ │ ├── Internal │ │ │ │ │ ├── BlockableDispatchGroup.swift │ │ │ │ │ ├── CoreDocumentSynchronizationConfig.swift │ │ │ │ │ ├── CoreRemoteMongoClientFactory.swift │ │ │ │ │ ├── CoreSync.swift │ │ │ │ │ ├── DataSynchronizer.swift │ │ │ │ │ ├── DataSynchronizerError.swift │ │ │ │ │ ├── DocumentVersionInfo.swift │ │ │ │ │ ├── InstanceChangeStreamDelegate.swift │ │ │ │ │ ├── InstanceSynchronizationConfig.swift │ │ │ │ │ ├── Log.swift │ │ │ │ │ ├── NamespaceChangeStreamDelegate.swift │ │ │ │ │ ├── NamespaceSynchronizationConfig.swift │ │ │ │ │ ├── SyncFrequency.swift │ │ │ │ │ └── ThreadSafeMongoMobile.swift │ │ │ │ └── MongoNamespace.swift │ │ │ │ └── UpdateDescription.swift │ │ ├── StitchCoreRemoteMongoDBService.podspec │ │ ├── StitchCoreRemoteMongoDBService.xcodeproj │ │ │ ├── MockUtils_Info.plist │ │ │ ├── StitchCoreRemoteMongoDBServiceTests_Info.plist │ │ │ ├── StitchCoreRemoteMongoDBService_Info.plist │ │ │ ├── StitchCoreSDKMocks_Info.plist │ │ │ ├── StitchCoreSDK_Info.plist │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Tests │ │ │ └── StitchCoreRemoteMongoDBServiceTests │ │ │ ├── CoreRemoteMongoClientUnitTests.swift │ │ │ ├── CoreRemoteMongoCollectionUnitTests.swift │ │ │ ├── CoreRemoteMongoDatabaseUnitTests.swift │ │ │ └── Sync │ │ │ ├── ChangeEventListenerUnitTests.swift │ │ │ ├── ChangeEventUnitTests.swift │ │ │ ├── CompactChangeEventUnitTests.swift │ │ │ ├── ConflictHandlerUnitTests.swift │ │ │ ├── CoreDocumentSynchronizationConfigTests.swift │ │ │ ├── CoreRemoteMongoClientFactoryUnitTests.swift │ │ │ ├── CoreSyncUnitTests.swift │ │ │ ├── DataSynchronizerUnitTests.swift │ │ │ ├── DocumentVersionInfoUnitTests.swift │ │ │ ├── InstanceSynchronizationConfigTests.swift │ │ │ ├── NamespaceSynchronizationConfigTests.swift │ │ │ ├── UpdateDescriptionUnitTests.swift │ │ │ └── XCMongoMobileTestCase.swift │ └── StitchCoreTwilioService │ │ ├── .gitignore │ │ ├── .swiftlint.yml │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ └── StitchCoreTwilioService │ │ │ ├── CoreTwilioServiceClient.swift │ │ │ └── Info.plist │ │ ├── StitchCoreTwilioService.podspec │ │ ├── StitchCoreTwilioService.xcodeproj │ │ ├── MockUtils_Info.plist │ │ ├── StitchCoreSDKMocks_Info.plist │ │ ├── StitchCoreSDK_Info.plist │ │ ├── StitchCoreTwilioServiceTests_Info.plist │ │ ├── StitchCoreTwilioService_Info.plist │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Tests │ │ └── StitchCoreTwilioServiceTests │ │ │ └── CoreTwilioServiceClientUnitTests.swift │ │ └── prep_pods.sh ├── StitchCoreAdminClient │ ├── .gitignore │ ├── .swiftlint.yml │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── StitchCoreAdminClient │ │ │ ├── Apps │ │ │ └── AppsResources.swift │ │ │ ├── AuthProviders │ │ │ ├── AuthProvidersResources.swift │ │ │ └── ProviderConfig.swift │ │ │ ├── CustomUserData │ │ │ └── CustomerUserDataConfig.swift │ │ │ ├── Functions │ │ │ └── FunctionsResources.swift │ │ │ ├── Resources.swift │ │ │ ├── Services │ │ │ ├── Rules │ │ │ │ └── RulesResources.swift │ │ │ ├── ServiceConfigs.swift │ │ │ └── ServicesResources.swift │ │ │ ├── StitchAdminAuth.swift │ │ │ ├── StitchAdminAuthRoutes.swift │ │ │ ├── StitchAdminClient.swift │ │ │ ├── StitchAdminUser.swift │ │ │ ├── StitchAdminUserProfile.swift │ │ │ ├── UserRegistrations │ │ │ └── UserRegistrationsResources.swift │ │ │ └── Users │ │ │ └── UsersResources.swift │ ├── StitchCoreAdminClient.xcodeproj │ │ ├── StitchCoreAdminClientTests_Info.plist │ │ ├── StitchCoreAdminClient_Info.plist │ │ ├── StitchCoreSDK_Info.plist │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StitchCoreAdminClient.xcscheme │ └── Tests │ │ └── StitchCoreAdminClientTests │ │ └── StitchCoreAdminClientTests.swift ├── StitchCoreSDK │ ├── .gitignore │ ├── .swiftlint.yml │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── StitchCoreSDK │ │ │ ├── Auth │ │ │ │ ├── Internal │ │ │ │ │ ├── AccessTokenRefresher.swift │ │ │ │ │ ├── AuthInfo.swift │ │ │ │ │ ├── AuthStateHolder.swift │ │ │ │ │ ├── CoreStitchAuth+AuthStorage.swift │ │ │ │ │ ├── CoreStitchAuth+LoginAndLink.swift │ │ │ │ │ ├── CoreStitchAuth+OtherAuthActions.swift │ │ │ │ │ ├── CoreStitchAuth+StitchAuthRequestClient.swift │ │ │ │ │ ├── CoreStitchAuth.swift │ │ │ │ │ ├── CoreStitchUser.swift │ │ │ │ │ ├── CoreStitchUserImpl.swift │ │ │ │ │ ├── DeviceField.swift │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── APIAccessToken.swift │ │ │ │ │ │ ├── APIAuthInfoImpl.swift │ │ │ │ │ │ ├── APICoreUserProfile.swift │ │ │ │ │ │ ├── APIStitchUserIdentity.swift │ │ │ │ │ │ ├── StoreAuthInfo.swift │ │ │ │ │ │ ├── StoreCoreUserProfile.swift │ │ │ │ │ │ └── StoreStitchUserIdentity.swift │ │ │ │ │ ├── StitchAuthRequestClient.swift │ │ │ │ │ ├── StitchJWT.swift │ │ │ │ │ └── StitchUserFactory.swift │ │ │ │ ├── ProviderCapabilities.swift │ │ │ │ ├── Providers │ │ │ │ │ ├── Anonymous │ │ │ │ │ │ ├── AnonymousAuthProvider.swift │ │ │ │ │ │ └── AnonymousCredential.swift │ │ │ │ │ ├── Apple │ │ │ │ │ │ ├── AppleAuthProvider.swift │ │ │ │ │ │ └── AppleCredential.swift │ │ │ │ │ ├── Custom │ │ │ │ │ │ ├── CustomAuthProvider.swift │ │ │ │ │ │ └── CustomCredential.swift │ │ │ │ │ ├── Facebook │ │ │ │ │ │ ├── FacebookAuthProvider.swift │ │ │ │ │ │ └── FacebookCredential.swift │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── FunctionAuthProvider.swift │ │ │ │ │ │ └── FunctionCredential.swift │ │ │ │ │ ├── Google │ │ │ │ │ │ ├── GoogleAuthProvider.swift │ │ │ │ │ │ └── GoogleCredential.swift │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── CoreAuthProviderClient.swift │ │ │ │ │ ├── ServerAPIKey │ │ │ │ │ │ ├── ServerAPIKeyAuthProvider.swift │ │ │ │ │ │ └── ServerAPIKeyCredential.swift │ │ │ │ │ ├── UserAPIKey │ │ │ │ │ │ ├── CoreUserAPIKeyAuthProviderClient.swift │ │ │ │ │ │ ├── Models │ │ │ │ │ │ │ └── UserAPIKey.swift │ │ │ │ │ │ ├── UserAPIKeyAuthProvider.swift │ │ │ │ │ │ └── UserAPIKeyCredential.swift │ │ │ │ │ └── UserPassword │ │ │ │ │ │ ├── CoreUserPasswordAuthProviderClient.swift │ │ │ │ │ │ ├── UserPasswordAuthProvider.swift │ │ │ │ │ │ └── UserPasswordCredential.swift │ │ │ │ ├── StitchCredential.swift │ │ │ │ ├── StitchProviderType.swift │ │ │ │ ├── StitchUserIdentity.swift │ │ │ │ └── StitchUserProfile.swift │ │ │ ├── Info.plist │ │ │ ├── Internal │ │ │ │ ├── Common │ │ │ │ │ ├── AuthMonitor.swift │ │ │ │ │ ├── ImplFailureFatalErrors.swift │ │ │ │ │ ├── ReadWriteLock.swift │ │ │ │ │ ├── Storage.swift │ │ │ │ │ └── WeakReference.swift │ │ │ │ ├── CoreStitchAppClient.swift │ │ │ │ └── Net │ │ │ │ │ ├── AppMetadata.swift │ │ │ │ │ ├── ContentType.swift │ │ │ │ │ ├── FoundationHTTPSSEStream.swift │ │ │ │ │ ├── FoundationHTTPTransport.swift │ │ │ │ │ ├── Headers.swift │ │ │ │ │ ├── Method.swift │ │ │ │ │ ├── NetworkMonitor.swift │ │ │ │ │ ├── RawSSE.swift │ │ │ │ │ ├── RawSSEStream.swift │ │ │ │ │ ├── Requests │ │ │ │ │ ├── Request.swift │ │ │ │ │ ├── StitchAuthDocRequest.swift │ │ │ │ │ ├── StitchAuthRequest.swift │ │ │ │ │ ├── StitchDocRequest.swift │ │ │ │ │ └── StitchRequest.swift │ │ │ │ │ ├── StitchAppRoutes.swift │ │ │ │ │ ├── StitchRequestClient.swift │ │ │ │ │ └── Transport.swift │ │ │ ├── Push │ │ │ │ └── Internal │ │ │ │ │ ├── CoreStitchPushClient.swift │ │ │ │ │ ├── CoreStitchPushClientImpl.swift │ │ │ │ │ └── StitchPushRoutes.swift │ │ │ ├── Services │ │ │ │ └── Internal │ │ │ │ │ ├── AuthRebindEvent.swift │ │ │ │ │ ├── CoreStitchServiceClient.swift │ │ │ │ │ ├── CoreStitchServiceClientImpl.swift │ │ │ │ │ └── StitchServiceBinder.swift │ │ │ ├── StitchAppClientConfiguration.swift │ │ │ ├── StitchAppClientInfo.swift │ │ │ ├── StitchClientConfiguration.swift │ │ │ └── StitchError.swift │ │ └── StitchCoreSDKMocks │ │ │ ├── Auth │ │ │ └── Internal │ │ │ │ ├── MockCoreStitchAuth.swift │ │ │ │ └── MockStitchAuthRequestClient.swift │ │ │ ├── Internal │ │ │ ├── MockStitchRequestClient.swift │ │ │ └── MockTransport.swift │ │ │ ├── Push │ │ │ └── Internal │ │ │ │ └── MockCoreStitchPushClient.swift │ │ │ └── Services │ │ │ ├── MockCoreStitchServiceClient.swift │ │ │ └── SpyCoreStitchServiceClient.swift │ ├── StitchCoreSDK.podspec │ ├── StitchCoreSDK.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StitchCoreSDK.xcscheme │ └── Tests │ │ └── StitchCoreSDKTests │ │ ├── Auth │ │ ├── Internal │ │ │ ├── AccessTokenRefresherUnitTests.swift │ │ │ ├── CoreStitchAuthUnitTests.swift │ │ │ └── Models │ │ │ │ └── StoreAuthInfoUnitTests.swift │ │ ├── Providers │ │ │ ├── UserAPIKey │ │ │ │ └── CoreUserAPIKeyAuthProviderClientUnitTests.swift │ │ │ └── UserPass │ │ │ │ └── CoreUserPasswordAuthProviderClientUnitTests.swift │ │ └── StitchUserProfileUnitTests.swift │ │ ├── Internal │ │ └── Net │ │ │ ├── FoundationHTTPEventStreamUnitTests.swift │ │ │ ├── FoundationHTTPTransportIntTests.swift │ │ │ └── StitchRequestClientUnitTests.swift │ │ ├── Push │ │ └── Internal │ │ │ └── CoreStitchPushClientUnitTests.swift │ │ ├── Services │ │ └── Internal │ │ │ └── CoreStitchServiceClientUnitTests.swift │ │ ├── StitchAppClientConfigurationUnitTests.swift │ │ ├── StitchAppClientInfoUnitTests.swift │ │ ├── StitchClientConfigurationUnitTests.swift │ │ └── StitchCoreTests.swift └── StitchCoreTestUtils │ ├── .gitignore │ ├── .swiftlint.yml │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── StitchCoreTestUtils │ │ ├── BaseStitchIntTest.swift │ │ ├── MockStitchUser.swift │ │ └── StitchXCTestCase.swift │ ├── StitchCoreTestUtils.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── Tests │ └── StitchCoreTestUtilsTests │ └── StitchCoreTestUtilsTests.swift ├── Darwin ├── Examples │ ├── StitchLocalMongoDBServiceExample │ │ ├── StitchLocalMongoDBServiceExample.xcodeproj │ │ │ └── project.pbxproj │ │ └── StitchLocalMongoDBServiceExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ToDoItem.swift │ │ │ ├── ToDoItemCell.swift │ │ │ └── ToDoListViewController.swift │ ├── StitchSDKExample │ │ ├── StitchSDKExample.xcodeproj │ │ │ └── project.pbxproj │ │ └── StitchSDKExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ ├── StitchWatchOSExample │ │ ├── StitchWatchOSExample WatchKit App │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── Interface.storyboard │ │ │ └── Info.plist │ │ ├── StitchWatchOSExample WatchKit Extension │ │ │ ├── Assets.xcassets │ │ │ │ ├── Complication.complicationset │ │ │ │ │ ├── Circular.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Extra Large.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Modular.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Utilitarian.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ExtensionDelegate.swift │ │ │ ├── Info.plist │ │ │ ├── InterfaceController.swift │ │ │ ├── NotificationController.swift │ │ │ └── PushNotificationPayload.apns │ │ ├── StitchWatchOSExample.xcodeproj │ │ │ └── project.pbxproj │ │ ├── StitchWatchOSExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── StitchWatchOSExampleTests │ │ │ ├── Info.plist │ │ │ └── StitchWatchOSExampleTests.swift │ │ └── StitchWatchOSExampleUITests │ │ │ ├── Info.plist │ │ │ └── StitchWatchOSExampleUITests.swift │ ├── StressTestApp │ │ ├── StressTestApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── StressTestApp │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── StressTestAppTests │ │ │ ├── Info.plist │ │ │ └── StressTestAppTests.swift │ │ └── StressTestAppUITests │ │ │ ├── Info.plist │ │ │ └── StressTestAppUITests.swift │ └── ToDoSync │ │ ├── ToDoSync.xcodeproj │ │ └── project.pbxproj │ │ └── ToDoSync │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Coroutines.swift │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── TodoItem.swift │ │ ├── TodoList.swift │ │ ├── TodoTableViewCell.swift │ │ └── TodoTableViewController.swift ├── Services │ ├── StitchAWSService │ │ ├── StitchAWSService.podspec │ │ ├── StitchAWSService.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StitchAWSService.xcscheme │ │ ├── StitchAWSService │ │ │ ├── AWSServiceClient.swift │ │ │ ├── Info.plist │ │ │ ├── Internal │ │ │ │ └── AWSServiceClientImpl.swift │ │ │ └── StitchAWSServiceExports.swift │ │ └── StitchAWSServiceTests │ │ │ ├── AWSServiceClientIntTests.swift │ │ │ ├── AWSServiceTestsConstants.h │ │ │ └── Info.plist │ ├── StitchFCMService │ │ ├── StitchFCMService.podspec │ │ ├── StitchFCMService.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StitchFCMService.xcscheme │ │ ├── StitchFCMService │ │ │ ├── FCMServiceClient.swift │ │ │ ├── FCMServicePushClient.swift │ │ │ ├── Info.plist │ │ │ ├── Internal │ │ │ │ ├── FCMServiceClientImpl.swift │ │ │ │ └── FCMServicePushClientImpl.swift │ │ │ └── StitchFCMServiceExports.swift │ │ └── StitchFCMServiceTests │ │ │ ├── FCMServiceClientIntTests.swift │ │ │ ├── FCMServicePushClientIntTests.swift │ │ │ ├── FCMServiceTestsConstants.h │ │ │ └── Info.plist │ ├── StitchHTTPService │ │ ├── StitchHTTPService.podspec │ │ ├── StitchHTTPService.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StitchHTTPService.xcscheme │ │ ├── StitchHTTPService │ │ │ ├── HTTPServiceClient.swift │ │ │ ├── Info.plist │ │ │ ├── Internal │ │ │ │ └── HTTPServiceClientImpl.swift │ │ │ └── StitchHTTPServiceExports.swift │ │ └── StitchHTTPServiceTests │ │ │ ├── HTTPServiceClientIntTests.swift │ │ │ └── Info.plist │ ├── StitchLocalMongoDBService │ │ ├── StitchLocalMongoDBService.podspec │ │ ├── StitchLocalMongoDBService.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── StitchLocalMongoDBService.xcscheme │ │ ├── StitchLocalMongoDBService │ │ │ ├── Info.plist │ │ │ ├── LocalMongoClient.swift │ │ │ └── StitchLocalMongoDBServiceExports.swift │ │ └── StitchLocalMongoDBServiceTests │ │ │ ├── Info.plist │ │ │ └── StitchLocalMongoDBServiceTests.swift │ ├── StitchRemoteMongoDBService │ │ ├── .swiftlint.yml │ │ ├── StitchRemoteMongoDBService.podspec │ │ ├── StitchRemoteMongoDBService.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── StitchRemoteMongoDBService.xcscheme │ │ │ │ └── StitchSyncPerformanceTests.xcscheme │ │ ├── StitchRemoteMongoDBService │ │ │ ├── ChangeStreamDelegates.swift │ │ │ ├── ChangeStreamSession.swift │ │ │ ├── ChangeStreamType.swift │ │ │ ├── Info.plist │ │ │ ├── Internal │ │ │ │ └── InternalChangeStreamDelegate.swift │ │ │ ├── RemoteMongoClient.swift │ │ │ ├── RemoteMongoCollection.swift │ │ │ ├── RemoteMongoCursor.swift │ │ │ ├── RemoteMongoDatabase.swift │ │ │ ├── RemoteMongoReadOperation.swift │ │ │ ├── StitchRemoteMongoDBServiceExports.swift │ │ │ ├── Sync+CRUD.swift │ │ │ └── Sync.swift │ │ ├── StitchRemoteMongoDBServiceTests │ │ │ ├── CallbackJoiner.swift │ │ │ ├── Info.plist │ │ │ ├── RemoteMongoClientIntTests.swift │ │ │ ├── RemoteMongoCollection+SynchronousCRUD.swift │ │ │ ├── StreamJoiner.swift │ │ │ ├── SyncIntTestUtilities.swift │ │ │ ├── SyncIntTests.swift │ │ │ └── SyncTestContext.swift │ │ └── StitchSyncPerformanceTests │ │ │ ├── FoundationInstrumentedHTTPTransport.swift │ │ │ ├── FoundationInstrumentedHTTPTransportIntTests.swift │ │ │ ├── Info.plist │ │ │ ├── LocalPerformanceTestContext.swift │ │ │ ├── ProductionPerformanceTestContext.swift │ │ │ ├── SyncPerformanceIntTestHarness.swift │ │ │ ├── SyncPerformanceIntTests.swift │ │ │ ├── SyncPerformanceTestContext.swift │ │ │ ├── SyncPerformanceTestUtils.swift │ │ │ ├── SyncPerformanceTestsConstants.h │ │ │ └── SyncR2LOnlyPerformanceTestDefinitions.swift │ └── StitchTwilioService │ │ ├── .swiftlint.yml │ │ ├── StitchTwilioService.podspec │ │ ├── StitchTwilioService.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StitchTwilioService.xcscheme │ │ ├── StitchTwilioService │ │ ├── Info.plist │ │ ├── Internal │ │ │ └── TwilioServiceClientImpl.swift │ │ └── TwilioServiceClient.swift │ │ └── StitchTwilioServiceTests │ │ ├── Info.plist │ │ ├── TwilioServiceClientIntTests.swift │ │ └── TwilioServiceClientTestsConstants.h ├── StitchCore │ ├── .swiftlint.yml │ ├── Extensions │ │ └── PromiseKit │ │ │ └── Stitch-PromiseKit │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Stitch-PromiseKit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Stitch-PromiseKit.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── Stitch-PromiseKit │ │ │ ├── Adapters.swift │ │ │ ├── Info.plist │ │ │ ├── StitchAppClient+PMK.swift │ │ │ ├── StitchAuth+PMK.swift │ │ │ ├── StitchUser+PMK.swift │ │ │ ├── Stitch_PromiseKit.h │ │ │ └── UserPasswordAuthProvider+PMK.swift │ │ │ └── Stitch_PromiseKitTests │ │ │ ├── Info.plist │ │ │ └── Stitch_PromiseKitTests.swift │ ├── README.md │ ├── StitchCore.podspec │ ├── StitchCore.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StitchCore.xcscheme │ ├── StitchCore │ │ ├── Core │ │ │ ├── Auth │ │ │ │ ├── Internal │ │ │ │ │ ├── StitchAuthImpl+Delegation.swift │ │ │ │ │ ├── StitchAuthImpl.swift │ │ │ │ │ ├── StitchUserFactoryImpl.swift │ │ │ │ │ └── StitchUserImpl.swift │ │ │ │ ├── Providers │ │ │ │ │ ├── AuthProviderClientFactory.swift │ │ │ │ │ ├── NamedAuthProviderClientFactory.swift │ │ │ │ │ ├── UserAPIKey │ │ │ │ │ │ └── UserAPIKeyAuthProviderClient.swift │ │ │ │ │ └── UserPassword │ │ │ │ │ │ └── UserPasswordAuthProviderClient.swift │ │ │ │ ├── StitchAuth.swift │ │ │ │ ├── StitchAuthDelegate.swift │ │ │ │ └── StitchUser.swift │ │ │ ├── Internal │ │ │ │ ├── Common │ │ │ │ │ └── OperationDispatcher.swift │ │ │ │ ├── ImmutableStitchAppClientConfiguration.swift │ │ │ │ ├── Net │ │ │ │ │ └── DarwinNetworkMonitor.swift │ │ │ │ └── StitchAppClientImpl.swift │ │ │ ├── Push │ │ │ │ ├── Internal │ │ │ │ │ ├── NamedPushClientFactory.swift │ │ │ │ │ ├── StitchPushClient.swift │ │ │ │ │ ├── StitchPushClientImpl.swift │ │ │ │ │ └── StitchPushImpl.swift │ │ │ │ └── StitchPush.swift │ │ │ ├── Stitch.swift │ │ │ ├── StitchAppClient.swift │ │ │ └── StitchResult.swift │ │ ├── Info.plist │ │ ├── Services │ │ │ ├── Internal │ │ │ │ ├── NamedServiceClientFactory.swift │ │ │ │ ├── ServiceClientFactory.swift │ │ │ │ ├── StitchServiceClientImpl.swift │ │ │ │ └── ThrowingServiceClientFactory.swift │ │ │ └── StitchServiceClient.swift │ │ └── StitchCoreExports.swift │ ├── StitchCoreTests │ │ ├── Core │ │ │ ├── Auth │ │ │ │ ├── Providers │ │ │ │ │ └── UserAPIKey │ │ │ │ │ │ └── UserAPIKeyAuthProviderIntTests.swift │ │ │ │ └── StitchAuthDelegateIntegrationTests.swift │ │ │ ├── Internal │ │ │ │ └── Common │ │ │ │ │ └── OperationDispatcherUnitTests.swift │ │ │ ├── StitchAppClientIntegrationAuthTests.swift │ │ │ ├── StitchAppClientIntegrationTests.swift │ │ │ ├── StitchCustomUserDataIntTests.swift │ │ │ ├── StitchTests.swift │ │ │ └── TestUtil │ │ │ │ ├── StitchIntegrationTestCase.swift │ │ │ │ └── TestHarness.swift │ │ ├── Info.plist │ │ └── Services │ │ │ └── ThrowingServiceClientFactoryUnitTests.swift │ ├── package-lock.json │ └── prep_pods.sh ├── StitchDarwinCoreTestUtils │ ├── StitchDarwinCoreTestUtils.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StitchIOSCoreTestUtils.xcscheme │ ├── StitchDarwinCoreTestUtils │ │ ├── BaseStitchIntTestCocoaTouch.swift │ │ └── Info.plist │ └── StitchDarwinCoreTestUtilsTests │ │ ├── Info.plist │ │ └── StitchDarwinCoreTestUtilsTests.swift └── StitchSDK │ ├── StitchSDK.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── StitchSDK.xcscheme │ └── StitchSDK │ ├── Exports.swift │ ├── Info.plist │ └── StitchSDK.h ├── DocGen ├── DocsSources │ ├── Abstracts │ │ ├── Authentication Providers.md │ │ ├── Delegates.md │ │ ├── Errors.md │ │ ├── Getting Started.md │ │ └── Interacting with Stitch.md │ └── Pages │ │ ├── Note on Modules.md │ │ └── Note on Multithreading.md ├── DocsSourcesCore │ ├── Abstracts │ │ ├── Authentication.md │ │ ├── Client Configuration.md │ │ ├── Errors.md │ │ ├── Overview.md │ │ └── Users.md │ └── Pages │ │ └── Warning.md └── Scripts │ └── merge_json.py ├── LICENSE ├── Makefile ├── MockUtils ├── .gitignore ├── Makefile ├── MockUtils.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources │ └── MockUtils │ │ ├── Collection+count.swift │ │ ├── Matcher.swift │ │ ├── MockUtils.swift │ │ └── SpyUtils.swift └── Tests │ └── MockUtilsTests │ └── MockUtilsTests.swift ├── Podfile ├── Podfile.lock ├── README.md ├── Stitch.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── xcschemes │ ├── All Core Tests.xcscheme │ ├── All Darwin Tests.xcscheme │ └── Build All.xcscheme ├── StitchSDK.podspec ├── contrib ├── README.md ├── bump_version.sh ├── docs-theme │ └── fullwidth-analytics │ │ ├── assets │ │ ├── css │ │ │ ├── highlight.css.scss │ │ │ └── jazzy.css.scss │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ └── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ └── templates │ │ ├── analytics.mustache │ │ ├── doc.mustache │ │ ├── footer.mustache │ │ ├── header.mustache │ │ ├── nav.mustache │ │ ├── parameter.mustache │ │ ├── task.mustache │ │ └── tasks.mustache ├── generate_docs.sh ├── lint_pods.sh ├── lint_projects.sh ├── publish_docs.sh ├── publish_pods.sh └── stage_docs.sh ├── etc └── read_ios_runtime.py └── jazzy.json /.evg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/.evg.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.1 2 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreAWSService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/AWSRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/AWSRequest.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/Internal/CoreAWSServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Sources/StitchCoreAWSService/Internal/CoreAWSServiceClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/MockUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/MockUtils_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreAWSServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreAWSServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreAWSService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreAWSService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreSDKMocks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreSDKMocks_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/StitchCoreAWSService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Tests/StitchCoreAWSServiceTests/AWSRequestUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Tests/StitchCoreAWSServiceTests/AWSRequestUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreAWSService/Tests/StitchCoreAWSServiceTests/CoreAWSServiceClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreAWSService/Tests/StitchCoreAWSServiceTests/CoreAWSServiceClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/.swiftlint.yml -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreFCMService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageNotification.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessagePriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessagePriority.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageRequest.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageResult.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageResultFailureDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/FCMSendMessageResultFailureDetail.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Internal/CoreFCMServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Internal/CoreFCMServiceClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Internal/CoreFCMServicePushClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Sources/StitchCoreFCMService/Internal/CoreFCMServicePushClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/MockUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/MockUtils_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreFCMServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreFCMServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreFCMService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreFCMService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreSDKMocks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreSDKMocks_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/StitchCoreFCMService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/FCMSendMessageRequestUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/FCMSendMessageRequestUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/Internal/CoreFCMServiceClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/Internal/CoreFCMServiceClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/Internal/CoreFCMServicePushClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreFCMService/Tests/StitchCoreFCMServiceTests/Internal/CoreFCMServicePushClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreFCMService/prep_pods.sh: -------------------------------------------------------------------------------- 1 | ../../../prep_pods.sh -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreHTTPService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPCookie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPCookie.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPMethod.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPRequest.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/HTTPResponse.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/Internal/CoreHTTPServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Sources/StitchCoreHTTPService/Internal/CoreHTTPServiceClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/MockUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/MockUtils_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreHTTPServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreHTTPServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreHTTPService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreHTTPService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreSDKMocks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreSDKMocks_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/StitchCoreHTTPService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Tests/StitchCoreHTTPServiceTests/HTTPRequestUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Tests/StitchCoreHTTPServiceTests/HTTPRequestUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreHTTPService/Tests/StitchCoreHTTPServiceTests/Internal/CoreHTTPServiceClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreHTTPService/Tests/StitchCoreHTTPServiceTests/Internal/CoreHTTPServiceClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreLocalMongoDBService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/CoreLocalMongoDBService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/CoreLocalMongoDBService.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/LRUCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Sources/StitchCoreLocalMongoDBService/LRUCache.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreLocalMongoDBServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreLocalMongoDBServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreLocalMongoDBService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreLocalMongoDBService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchCoreLocalMongoDBService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/StitchCoreLocalMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchCoreLocalMongoDBService.xcscheme -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Tests/StitchCoreLocalMongoDBServiceTests/CoreLocalMongoDBServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Tests/StitchCoreLocalMongoDBServiceTests/CoreLocalMongoDBServiceTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/Tests/StitchCoreLocalMongoDBServiceTests/LRUCacheUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreLocalMongoDBService/Tests/StitchCoreLocalMongoDBServiceTests/LRUCacheUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/download_sdk.sh: -------------------------------------------------------------------------------- 1 | ../../../download_sdk.sh -------------------------------------------------------------------------------- /Core/Services/StitchCoreLocalMongoDBService/prep_pods.sh: -------------------------------------------------------------------------------- 1 | ../../../prep_pods.sh -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/.swiftlint.yml -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreRemoteMongoDBService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/BaseChangeEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/BaseChangeEvent.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/ChangeEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/ChangeEvent.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/CompactChangeEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/CompactChangeEvent.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/ChangeEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/ChangeEvents.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/Closable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/Closable.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoCollection.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoCursor.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoDatabase.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoReadOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Internal/CoreRemoteMongoReadOperation.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteCountOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteCountOptions.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteDeleteResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteDeleteResult.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteFindOneAndModifyOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteFindOneAndModifyOptions.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteFindOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteFindOptions.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteInsertManyResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteInsertManyResult.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteInsertOneResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteInsertOneResult.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteUpdateOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteUpdateOptions.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteUpdateResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/RemoteUpdateResult.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ChangeEventDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ChangeEventDelegate.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ConflictHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ConflictHandler.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ErrorListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/ErrorListener.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/BlockableDispatchGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/BlockableDispatchGroup.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreDocumentSynchronizationConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreDocumentSynchronizationConfig.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreRemoteMongoClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreRemoteMongoClientFactory.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/CoreSync.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DataSynchronizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DataSynchronizer.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DataSynchronizerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DataSynchronizerError.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DocumentVersionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/DocumentVersionInfo.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/InstanceChangeStreamDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/InstanceChangeStreamDelegate.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/InstanceSynchronizationConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/InstanceSynchronizationConfig.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/Log.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/NamespaceChangeStreamDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/NamespaceChangeStreamDelegate.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/NamespaceSynchronizationConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/NamespaceSynchronizationConfig.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/SyncFrequency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/SyncFrequency.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/ThreadSafeMongoMobile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/Internal/ThreadSafeMongoMobile.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/MongoNamespace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/Sync/MongoNamespace.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/UpdateDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Sources/StitchCoreRemoteMongoDBService/UpdateDescription.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/MockUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/MockUtils_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreRemoteMongoDBServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreRemoteMongoDBServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreRemoteMongoDBService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreRemoteMongoDBService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreSDKMocks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreSDKMocks_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/StitchCoreRemoteMongoDBService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoCollectionUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoCollectionUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoDatabaseUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/CoreRemoteMongoDatabaseUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ChangeEventListenerUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ChangeEventListenerUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ChangeEventUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ChangeEventUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CompactChangeEventUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CompactChangeEventUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ConflictHandlerUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/ConflictHandlerUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreDocumentSynchronizationConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreDocumentSynchronizationConfigTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreRemoteMongoClientFactoryUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreRemoteMongoClientFactoryUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreSyncUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/CoreSyncUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/DataSynchronizerUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/DataSynchronizerUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/DocumentVersionInfoUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/DocumentVersionInfoUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/InstanceSynchronizationConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/InstanceSynchronizationConfigTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/NamespaceSynchronizationConfigTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/NamespaceSynchronizationConfigTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/UpdateDescriptionUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/UpdateDescriptionUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/XCMongoMobileTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreRemoteMongoDBService/Tests/StitchCoreRemoteMongoDBServiceTests/Sync/XCMongoMobileTestCase.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | vendor 6 | dist 7 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/.swiftlint.yml -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/Makefile -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/Package.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreTwilioService 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/Sources/StitchCoreTwilioService/CoreTwilioServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/Sources/StitchCoreTwilioService/CoreTwilioServiceClient.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/Sources/StitchCoreTwilioService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/Sources/StitchCoreTwilioService/Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.podspec -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/MockUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/MockUtils_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreSDKMocks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreSDKMocks_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreTwilioServiceTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreTwilioServiceTests_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreTwilioService_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/StitchCoreTwilioService_Info.plist -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/StitchCoreTwilioService.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/Tests/StitchCoreTwilioServiceTests/CoreTwilioServiceClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/Services/StitchCoreTwilioService/Tests/StitchCoreTwilioServiceTests/CoreTwilioServiceClientUnitTests.swift -------------------------------------------------------------------------------- /Core/Services/StitchCoreTwilioService/prep_pods.sh: -------------------------------------------------------------------------------- 1 | ../../../prep_pods.sh -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/.swiftlint.yml -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Makefile -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Package.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreAdminClient 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Apps/AppsResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Apps/AppsResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/AuthProviders/AuthProvidersResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/AuthProviders/AuthProvidersResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/AuthProviders/ProviderConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/AuthProviders/ProviderConfig.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/CustomUserData/CustomerUserDataConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/CustomUserData/CustomerUserDataConfig.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Functions/FunctionsResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Functions/FunctionsResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Resources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/Rules/RulesResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/Rules/RulesResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/ServiceConfigs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/ServiceConfigs.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/ServicesResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Services/ServicesResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminAuth.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminAuthRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminAuthRoutes.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminUser.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminUserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/StitchAdminUserProfile.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/UserRegistrations/UserRegistrationsResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/UserRegistrations/UserRegistrationsResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Users/UsersResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Sources/StitchCoreAdminClient/Users/UsersResources.swift -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreAdminClientTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreAdminClientTests_Info.plist -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreAdminClient_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreAdminClient_Info.plist -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreSDK_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/StitchCoreSDK_Info.plist -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/xcshareddata/xcschemes/StitchCoreAdminClient.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/StitchCoreAdminClient.xcodeproj/xcshareddata/xcschemes/StitchCoreAdminClient.xcscheme -------------------------------------------------------------------------------- /Core/StitchCoreAdminClient/Tests/StitchCoreAdminClientTests/StitchCoreAdminClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreAdminClient/Tests/StitchCoreAdminClientTests/StitchCoreAdminClientTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | vendor 5 | dist 6 | -------------------------------------------------------------------------------- /Core/StitchCoreSDK/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/.swiftlint.yml -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Makefile -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Package.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/README.md -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AccessTokenRefresher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AccessTokenRefresher.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AuthInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AuthInfo.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AuthStateHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/AuthStateHolder.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+AuthStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+AuthStorage.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+LoginAndLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+LoginAndLink.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+OtherAuthActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+OtherAuthActions.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+StitchAuthRequestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth+StitchAuthRequestClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchAuth.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchUser.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchUserImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/CoreStitchUserImpl.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/DeviceField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/DeviceField.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIAccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIAccessToken.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIAuthInfoImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIAuthInfoImpl.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APICoreUserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APICoreUserProfile.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIStitchUserIdentity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/APIStitchUserIdentity.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreAuthInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreAuthInfo.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreCoreUserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreCoreUserProfile.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreStitchUserIdentity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/Models/StoreStitchUserIdentity.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchAuthRequestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchAuthRequestClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchJWT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchJWT.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchUserFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Internal/StitchUserFactory.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/ProviderCapabilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/ProviderCapabilities.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Anonymous/AnonymousAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Anonymous/AnonymousAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Anonymous/AnonymousCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Anonymous/AnonymousCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Apple/AppleAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Apple/AppleAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Apple/AppleCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Apple/AppleCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Custom/CustomAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Custom/CustomAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Custom/CustomCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Custom/CustomCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Facebook/FacebookAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Facebook/FacebookAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Facebook/FacebookCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Facebook/FacebookCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Function/FunctionAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Function/FunctionAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Function/FunctionCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Function/FunctionCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Google/GoogleAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Google/GoogleAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Google/GoogleCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Google/GoogleCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Internal/CoreAuthProviderClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/Internal/CoreAuthProviderClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/ServerAPIKey/ServerAPIKeyAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/ServerAPIKey/ServerAPIKeyAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/ServerAPIKey/ServerAPIKeyCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/ServerAPIKey/ServerAPIKeyCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/CoreUserAPIKeyAuthProviderClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/CoreUserAPIKeyAuthProviderClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/Models/UserAPIKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/Models/UserAPIKey.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/UserAPIKeyAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/UserAPIKeyAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/UserAPIKeyCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserAPIKey/UserAPIKeyCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/CoreUserPasswordAuthProviderClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/CoreUserPasswordAuthProviderClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/UserPasswordAuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/UserPasswordAuthProvider.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/UserPasswordCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/Providers/UserPassword/UserPasswordCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchCredential.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchProviderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchProviderType.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchUserIdentity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchUserIdentity.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchUserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Auth/StitchUserProfile.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Info.plist -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/AuthMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/AuthMonitor.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/ImplFailureFatalErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/ImplFailureFatalErrors.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/ReadWriteLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/ReadWriteLock.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/Storage.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/WeakReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Common/WeakReference.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/CoreStitchAppClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/CoreStitchAppClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/AppMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/AppMetadata.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/ContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/ContentType.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/FoundationHTTPSSEStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/FoundationHTTPSSEStream.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/FoundationHTTPTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/FoundationHTTPTransport.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Headers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Headers.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Method.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/NetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/NetworkMonitor.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/RawSSE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/RawSSE.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/RawSSEStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/RawSSEStream.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/Request.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchAuthDocRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchAuthDocRequest.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchAuthRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchAuthRequest.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchDocRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchDocRequest.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Requests/StitchRequest.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/StitchAppRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/StitchAppRoutes.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/StitchRequestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/StitchRequestClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Transport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Internal/Net/Transport.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/CoreStitchPushClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/CoreStitchPushClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/CoreStitchPushClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/CoreStitchPushClientImpl.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/StitchPushRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Push/Internal/StitchPushRoutes.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/AuthRebindEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/AuthRebindEvent.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/CoreStitchServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/CoreStitchServiceClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/CoreStitchServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/CoreStitchServiceClientImpl.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/StitchServiceBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/Services/Internal/StitchServiceBinder.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchAppClientConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchAppClientConfiguration.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchAppClientInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchAppClientInfo.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchClientConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchClientConfiguration.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDK/StitchError.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Auth/Internal/MockCoreStitchAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Auth/Internal/MockCoreStitchAuth.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Auth/Internal/MockStitchAuthRequestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Auth/Internal/MockStitchAuthRequestClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Internal/MockStitchRequestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Internal/MockStitchRequestClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Internal/MockTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Internal/MockTransport.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Push/Internal/MockCoreStitchPushClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Push/Internal/MockCoreStitchPushClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Services/MockCoreStitchServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Services/MockCoreStitchServiceClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Services/SpyCoreStitchServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Sources/StitchCoreSDKMocks/Services/SpyCoreStitchServiceClient.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/StitchCoreSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/StitchCoreSDK.podspec -------------------------------------------------------------------------------- /Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/xcshareddata/xcschemes/StitchCoreSDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/StitchCoreSDK.xcodeproj/xcshareddata/xcschemes/StitchCoreSDK.xcscheme -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/AccessTokenRefresherUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/AccessTokenRefresherUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/CoreStitchAuthUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/CoreStitchAuthUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/Models/StoreAuthInfoUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Internal/Models/StoreAuthInfoUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Providers/UserAPIKey/CoreUserAPIKeyAuthProviderClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Providers/UserAPIKey/CoreUserAPIKeyAuthProviderClientUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Providers/UserPass/CoreUserPasswordAuthProviderClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/Providers/UserPass/CoreUserPasswordAuthProviderClientUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/StitchUserProfileUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Auth/StitchUserProfileUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/FoundationHTTPEventStreamUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/FoundationHTTPEventStreamUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/FoundationHTTPTransportIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/FoundationHTTPTransportIntTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/StitchRequestClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Internal/Net/StitchRequestClientUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Push/Internal/CoreStitchPushClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Push/Internal/CoreStitchPushClientUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Services/Internal/CoreStitchServiceClientUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/Services/Internal/CoreStitchServiceClientUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchAppClientConfigurationUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchAppClientConfigurationUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchAppClientInfoUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchAppClientInfoUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchClientConfigurationUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchClientConfigurationUnitTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreSDK/Tests/StitchCoreSDKTests/StitchCoreTests.swift -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/.swiftlint.yml -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Makefile -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Package.swift -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/README.md: -------------------------------------------------------------------------------- 1 | # StitchCoreTestUtils 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/BaseStitchIntTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/BaseStitchIntTest.swift -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/MockStitchUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/MockStitchUser.swift -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/StitchXCTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Sources/StitchCoreTestUtils/StitchXCTestCase.swift -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/StitchCoreTestUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Core/StitchCoreTestUtils/Tests/StitchCoreTestUtilsTests/StitchCoreTestUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Core/StitchCoreTestUtils/Tests/StitchCoreTestUtilsTests/StitchCoreTestUtilsTests.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/AppDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoItem.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoItemCell.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchLocalMongoDBServiceExample/StitchLocalMongoDBServiceExample/ToDoListViewController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/AppDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchSDKExample/StitchSDKExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchSDKExample/StitchSDKExample/ViewController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit App/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/NotificationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/NotificationController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/PushNotificationPayload.apns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample WatchKit Extension/PushNotificationPayload.apns -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/AppDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExample/ViewController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleTests/StitchWatchOSExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleTests/StitchWatchOSExampleTests.swift -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleUITests/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleUITests/StitchWatchOSExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StitchWatchOSExample/StitchWatchOSExampleUITests/StitchWatchOSExampleUITests.swift -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestApp/ViewController.swift -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestAppTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestAppTests/StressTestAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestAppTests/StressTestAppTests.swift -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestAppUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestAppUITests/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/StressTestApp/StressTestAppUITests/StressTestAppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/StressTestApp/StressTestAppUITests/StressTestAppUITests.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/AppDelegate.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Coroutines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Coroutines.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/GoogleService-Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/Info.plist -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/TodoItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/TodoItem.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/TodoList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/TodoList.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/TodoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/TodoTableViewCell.swift -------------------------------------------------------------------------------- /Darwin/Examples/ToDoSync/ToDoSync/TodoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Examples/ToDoSync/ToDoSync/TodoTableViewController.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService.xcodeproj/xcshareddata/xcschemes/StitchAWSService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService.xcodeproj/xcshareddata/xcschemes/StitchAWSService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService/AWSServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService/AWSServiceClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService/Internal/AWSServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService/Internal/AWSServiceClientImpl.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSService/StitchAWSServiceExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSService/StitchAWSServiceExports.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSServiceTests/AWSServiceClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSServiceTests/AWSServiceClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSServiceTests/AWSServiceTestsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSServiceTests/AWSServiceTestsConstants.h -------------------------------------------------------------------------------- /Darwin/Services/StitchAWSService/StitchAWSServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchAWSService/StitchAWSServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService.xcodeproj/xcshareddata/xcschemes/StitchFCMService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService.xcodeproj/xcshareddata/xcschemes/StitchFCMService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/FCMServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/FCMServiceClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/FCMServicePushClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/FCMServicePushClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/Internal/FCMServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/Internal/FCMServiceClientImpl.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/Internal/FCMServicePushClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/Internal/FCMServicePushClientImpl.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMService/StitchFCMServiceExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMService/StitchFCMServiceExports.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServiceClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServiceClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServicePushClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServicePushClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServiceTestsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMServiceTests/FCMServiceTestsConstants.h -------------------------------------------------------------------------------- /Darwin/Services/StitchFCMService/StitchFCMServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchFCMService/StitchFCMServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService.xcodeproj/xcshareddata/xcschemes/StitchHTTPService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService.xcodeproj/xcshareddata/xcschemes/StitchHTTPService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService/HTTPServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService/HTTPServiceClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService/Internal/HTTPServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService/Internal/HTTPServiceClientImpl.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPService/StitchHTTPServiceExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPService/StitchHTTPServiceExports.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPServiceTests/HTTPServiceClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPServiceTests/HTTPServiceClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchHTTPService/StitchHTTPServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchHTTPService/StitchHTTPServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchLocalMongoDBService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchLocalMongoDBService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/LocalMongoClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/LocalMongoClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/StitchLocalMongoDBServiceExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBService/StitchLocalMongoDBServiceExports.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBServiceTests/StitchLocalMongoDBServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchLocalMongoDBService/StitchLocalMongoDBServiceTests/StitchLocalMongoDBServiceTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/.swiftlint.yml -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchRemoteMongoDBService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchRemoteMongoDBService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchSyncPerformanceTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService.xcodeproj/xcshareddata/xcschemes/StitchSyncPerformanceTests.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamDelegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamDelegates.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamSession.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/ChangeStreamType.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Internal/InternalChangeStreamDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Internal/InternalChangeStreamDelegate.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoCollection.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoCursor.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoDatabase.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoReadOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/RemoteMongoReadOperation.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceExports.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Sync+CRUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Sync+CRUD.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBService/Sync.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/CallbackJoiner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/CallbackJoiner.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/RemoteMongoClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/RemoteMongoClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/RemoteMongoCollection+SynchronousCRUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/RemoteMongoCollection+SynchronousCRUD.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/StreamJoiner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/StreamJoiner.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncIntTestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncIntTestUtilities.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncTestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchRemoteMongoDBServiceTests/SyncTestContext.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/FoundationInstrumentedHTTPTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/FoundationInstrumentedHTTPTransport.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/FoundationInstrumentedHTTPTransportIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/FoundationInstrumentedHTTPTransportIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/LocalPerformanceTestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/LocalPerformanceTestContext.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/ProductionPerformanceTestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/ProductionPerformanceTestContext.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceIntTestHarness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceIntTestHarness.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestContext.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestUtils.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncPerformanceTestsConstants.h -------------------------------------------------------------------------------- /Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncR2LOnlyPerformanceTestDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchRemoteMongoDBService/StitchSyncPerformanceTests/SyncR2LOnlyPerformanceTestDefinitions.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/.swiftlint.yml -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService.podspec -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService.xcodeproj/xcshareddata/xcschemes/StitchTwilioService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService.xcodeproj/xcshareddata/xcschemes/StitchTwilioService.xcscheme -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService/Internal/TwilioServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService/Internal/TwilioServiceClientImpl.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioService/TwilioServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioService/TwilioServiceClient.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/Info.plist -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/TwilioServiceClientIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/TwilioServiceClientIntTests.swift -------------------------------------------------------------------------------- /Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/TwilioServiceClientTestsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/Services/StitchTwilioService/StitchTwilioServiceTests/TwilioServiceClientTestsConstants.h -------------------------------------------------------------------------------- /Darwin/StitchCore/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/.swiftlint.yml -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Podfile -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Podfile.lock -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Adapters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Adapters.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchAppClient+PMK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchAppClient+PMK.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchAuth+PMK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchAuth+PMK.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchUser+PMK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/StitchUser+PMK.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Stitch_PromiseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/Stitch_PromiseKit.h -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/UserPasswordAuthProvider+PMK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch-PromiseKit/UserPasswordAuthProvider+PMK.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch_PromiseKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch_PromiseKitTests/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch_PromiseKitTests/Stitch_PromiseKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/Extensions/PromiseKit/Stitch-PromiseKit/Stitch_PromiseKitTests/Stitch_PromiseKitTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/README.md -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore.podspec -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore.xcodeproj/xcshareddata/xcschemes/StitchCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore.xcodeproj/xcshareddata/xcschemes/StitchCore.xcscheme -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchAuthImpl+Delegation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchAuthImpl+Delegation.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchAuthImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchAuthImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchUserFactoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchUserFactoryImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchUserImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Internal/StitchUserImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Providers/AuthProviderClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Providers/AuthProviderClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Providers/NamedAuthProviderClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Providers/NamedAuthProviderClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Providers/UserAPIKey/UserAPIKeyAuthProviderClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Providers/UserAPIKey/UserAPIKeyAuthProviderClient.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/Providers/UserPassword/UserPasswordAuthProviderClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/Providers/UserPassword/UserPasswordAuthProviderClient.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/StitchAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/StitchAuth.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/StitchAuthDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/StitchAuthDelegate.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Auth/StitchUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Auth/StitchUser.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Internal/Common/OperationDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Internal/Common/OperationDispatcher.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Internal/ImmutableStitchAppClientConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Internal/ImmutableStitchAppClientConfiguration.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Internal/Net/DarwinNetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Internal/Net/DarwinNetworkMonitor.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Internal/StitchAppClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Internal/StitchAppClientImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Push/Internal/NamedPushClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Push/Internal/NamedPushClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushClient.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushClientImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Push/Internal/StitchPushImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Push/StitchPush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Push/StitchPush.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/Stitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/Stitch.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/StitchAppClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/StitchAppClient.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Core/StitchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Core/StitchResult.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Services/Internal/NamedServiceClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Services/Internal/NamedServiceClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Services/Internal/ServiceClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Services/Internal/ServiceClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Services/Internal/StitchServiceClientImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Services/Internal/StitchServiceClientImpl.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Services/Internal/ThrowingServiceClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Services/Internal/ThrowingServiceClientFactory.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/Services/StitchServiceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/Services/StitchServiceClient.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCore/StitchCoreExports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCore/StitchCoreExports.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/Auth/Providers/UserAPIKey/UserAPIKeyAuthProviderIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/Auth/Providers/UserAPIKey/UserAPIKeyAuthProviderIntTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/Auth/StitchAuthDelegateIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/Auth/StitchAuthDelegateIntegrationTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/Internal/Common/OperationDispatcherUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/Internal/Common/OperationDispatcherUnitTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/StitchAppClientIntegrationAuthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/StitchAppClientIntegrationAuthTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/StitchAppClientIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/StitchAppClientIntegrationTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/StitchCustomUserDataIntTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/StitchCustomUserDataIntTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/StitchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/StitchTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/TestUtil/StitchIntegrationTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/TestUtil/StitchIntegrationTestCase.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Core/TestUtil/TestHarness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Core/TestUtil/TestHarness.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchCore/StitchCoreTests/Services/ThrowingServiceClientFactoryUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchCore/StitchCoreTests/Services/ThrowingServiceClientFactoryUnitTests.swift -------------------------------------------------------------------------------- /Darwin/StitchCore/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /Darwin/StitchCore/prep_pods.sh: -------------------------------------------------------------------------------- 1 | ../../prep_pods.sh -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils.xcodeproj/xcshareddata/xcschemes/StitchIOSCoreTestUtils.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils.xcodeproj/xcshareddata/xcschemes/StitchIOSCoreTestUtils.xcscheme -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils/BaseStitchIntTestCocoaTouch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils/BaseStitchIntTestCocoaTouch.swift -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtils/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtilsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtilsTests/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtilsTests/StitchDarwinCoreTestUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchDarwinCoreTestUtils/StitchDarwinCoreTestUtilsTests/StitchDarwinCoreTestUtilsTests.swift -------------------------------------------------------------------------------- /Darwin/StitchSDK/StitchSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchSDK/StitchSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Darwin/StitchSDK/StitchSDK.xcodeproj/xcshareddata/xcschemes/StitchSDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchSDK/StitchSDK.xcodeproj/xcshareddata/xcschemes/StitchSDK.xcscheme -------------------------------------------------------------------------------- /Darwin/StitchSDK/StitchSDK/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchSDK/StitchSDK/Exports.swift -------------------------------------------------------------------------------- /Darwin/StitchSDK/StitchSDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchSDK/StitchSDK/Info.plist -------------------------------------------------------------------------------- /Darwin/StitchSDK/StitchSDK/StitchSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Darwin/StitchSDK/StitchSDK/StitchSDK.h -------------------------------------------------------------------------------- /DocGen/DocsSources/Abstracts/Authentication Providers.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSources/Abstracts/Delegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/DocsSources/Abstracts/Delegates.md -------------------------------------------------------------------------------- /DocGen/DocsSources/Abstracts/Errors.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSources/Abstracts/Getting Started.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSources/Abstracts/Interacting with Stitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/DocsSources/Abstracts/Interacting with Stitch.md -------------------------------------------------------------------------------- /DocGen/DocsSources/Pages/Note on Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/DocsSources/Pages/Note on Modules.md -------------------------------------------------------------------------------- /DocGen/DocsSources/Pages/Note on Multithreading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/DocsSources/Pages/Note on Multithreading.md -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Abstracts/Authentication.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Abstracts/Client Configuration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Abstracts/Errors.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Abstracts/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Abstracts/Users.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DocGen/DocsSourcesCore/Pages/Warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/DocsSourcesCore/Pages/Warning.md -------------------------------------------------------------------------------- /DocGen/Scripts/merge_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/DocGen/Scripts/merge_json.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /MockUtils/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /MockUtils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Makefile -------------------------------------------------------------------------------- /MockUtils/MockUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/MockUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MockUtils/MockUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/MockUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MockUtils/MockUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/MockUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MockUtils/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Package.swift -------------------------------------------------------------------------------- /MockUtils/README.md: -------------------------------------------------------------------------------- 1 | # MockUtils 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /MockUtils/Sources/MockUtils/Collection+count.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Sources/MockUtils/Collection+count.swift -------------------------------------------------------------------------------- /MockUtils/Sources/MockUtils/Matcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Sources/MockUtils/Matcher.swift -------------------------------------------------------------------------------- /MockUtils/Sources/MockUtils/MockUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Sources/MockUtils/MockUtils.swift -------------------------------------------------------------------------------- /MockUtils/Sources/MockUtils/SpyUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Sources/MockUtils/SpyUtils.swift -------------------------------------------------------------------------------- /MockUtils/Tests/MockUtilsTests/MockUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/MockUtils/Tests/MockUtilsTests/MockUtilsTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Stitch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Stitch.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Stitch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Stitch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Stitch.xcworkspace/xcshareddata/xcschemes/All Core Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Stitch.xcworkspace/xcshareddata/xcschemes/All Core Tests.xcscheme -------------------------------------------------------------------------------- /Stitch.xcworkspace/xcshareddata/xcschemes/All Darwin Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Stitch.xcworkspace/xcshareddata/xcschemes/All Darwin Tests.xcscheme -------------------------------------------------------------------------------- /Stitch.xcworkspace/xcshareddata/xcschemes/Build All.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/Stitch.xcworkspace/xcshareddata/xcschemes/Build All.xcscheme -------------------------------------------------------------------------------- /StitchSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/StitchSDK.podspec -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/bump_version.sh -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/css/highlight.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/css/highlight.css.scss -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/img/carat.png -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/img/dash.png -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/img/gh.png -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/img/spinner.gif -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/js/jazzy.js -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/js/jazzy.search.js -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/js/jquery.min.js -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/js/lunr.min.js -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/assets/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/assets/js/typeahead.jquery.js -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/analytics.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/analytics.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/doc.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/footer.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/header.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/nav.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/parameter.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/task.mustache -------------------------------------------------------------------------------- /contrib/docs-theme/fullwidth-analytics/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/docs-theme/fullwidth-analytics/templates/tasks.mustache -------------------------------------------------------------------------------- /contrib/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/generate_docs.sh -------------------------------------------------------------------------------- /contrib/lint_pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/lint_pods.sh -------------------------------------------------------------------------------- /contrib/lint_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/lint_projects.sh -------------------------------------------------------------------------------- /contrib/publish_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/publish_docs.sh -------------------------------------------------------------------------------- /contrib/publish_pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/publish_pods.sh -------------------------------------------------------------------------------- /contrib/stage_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/contrib/stage_docs.sh -------------------------------------------------------------------------------- /etc/read_ios_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/etc/read_ios_runtime.py -------------------------------------------------------------------------------- /jazzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/stitch-ios-sdk/HEAD/jazzy.json --------------------------------------------------------------------------------