├── .codecov.yml ├── .eslintrc.yml ├── .github └── workflows │ ├── nightly.yaml │ ├── pr.yaml │ └── reusable-workflow.yaml ├── .gitignore ├── .prettierrc.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SalesforceReact.podspec ├── dist ├── index.d.ts ├── index.js ├── index.js.map ├── react.force.common.d.ts ├── react.force.common.js ├── react.force.common.js.map ├── react.force.log.d.ts ├── react.force.log.js ├── react.force.log.js.map ├── react.force.mobilesync.d.ts ├── react.force.mobilesync.js ├── react.force.mobilesync.js.map ├── react.force.net.d.ts ├── react.force.net.js ├── react.force.net.js.map ├── react.force.oauth.d.ts ├── react.force.oauth.js ├── react.force.oauth.js.map ├── react.force.smartstore.d.ts ├── react.force.smartstore.js ├── react.force.smartstore.js.map ├── react.force.test.d.ts ├── react.force.test.js ├── react.force.test.js.map ├── react.force.util.d.ts ├── react.force.util.js ├── react.force.util.js.map ├── tsconfig.tsbuildinfo └── typings │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── mobilesync.d.ts │ ├── mobilesync.js │ ├── mobilesync.js.map │ ├── oauth.d.ts │ ├── oauth.js │ ├── oauth.js.map │ ├── smartstore.d.ts │ ├── smartstore.js │ └── smartstore.js.map ├── ios └── SalesforceReact │ ├── SFMobileSyncReactBridge.h │ ├── SFMobileSyncReactBridge.m │ ├── SFNetReactBridge.h │ ├── SFNetReactBridge.m │ ├── SFOauthReactBridge.h │ ├── SFOauthReactBridge.m │ ├── SFSDKReactLogger.h │ ├── SFSDKReactLogger.m │ ├── SFSmartStoreReactBridge.h │ ├── SFSmartStoreReactBridge.m │ ├── SalesforceReactSDKManager.h │ └── SalesforceReactSDKManager.m ├── iosTests ├── .gitignore ├── README.md ├── create_test_credentials_from_env.js ├── ios │ ├── Podfile │ ├── PrivacyInfo.xcprivacy │ ├── SalesforceReactTestApp.xcodeproj │ │ └── project.pbxproj │ ├── SalesforceReactTestApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m │ └── SalesforceReactTests │ │ ├── ReactHarnessTests.m │ │ ├── ReactMobileSyncTests.m │ │ ├── ReactNetTests.m │ │ ├── ReactOauthTests.m │ │ ├── ReactSmartStoreTests.m │ │ ├── ReactTestCase.h │ │ └── ReactTestCase.m ├── metro.config.js ├── package.json ├── prepareios.js ├── updatebundle.js └── updatesdk.js ├── package.json ├── setversion.sh ├── src ├── index.ts ├── react.force.common.ts ├── react.force.log.ts ├── react.force.mobilesync.ts ├── react.force.net.ts ├── react.force.oauth.ts ├── react.force.smartstore.ts ├── react.force.test.tsx ├── react.force.util.ts └── typings │ ├── index.ts │ ├── mobilesync.ts │ ├── oauth.ts │ └── smartstore.ts ├── test ├── README.md ├── alltests.js ├── harness.test.js ├── mobilesync.test.js ├── net.test.js ├── oauth.test.js └── smartstore.test.js ├── tsconfig.json └── tsconfig.tsbuildinfo /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.github/workflows/nightly.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/reusable-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.github/workflows/reusable-workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | arrowParens: always 2 | printWidth: 120 3 | trailingComma: "all" 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SalesforceReact.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/SalesforceReact.podspec -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/react.force.common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.common.d.ts -------------------------------------------------------------------------------- /dist/react.force.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.common.js -------------------------------------------------------------------------------- /dist/react.force.common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.common.js.map -------------------------------------------------------------------------------- /dist/react.force.log.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.log.d.ts -------------------------------------------------------------------------------- /dist/react.force.log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.log.js -------------------------------------------------------------------------------- /dist/react.force.log.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.log.js.map -------------------------------------------------------------------------------- /dist/react.force.mobilesync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.mobilesync.d.ts -------------------------------------------------------------------------------- /dist/react.force.mobilesync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.mobilesync.js -------------------------------------------------------------------------------- /dist/react.force.mobilesync.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.mobilesync.js.map -------------------------------------------------------------------------------- /dist/react.force.net.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.net.d.ts -------------------------------------------------------------------------------- /dist/react.force.net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.net.js -------------------------------------------------------------------------------- /dist/react.force.net.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.net.js.map -------------------------------------------------------------------------------- /dist/react.force.oauth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.oauth.d.ts -------------------------------------------------------------------------------- /dist/react.force.oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.oauth.js -------------------------------------------------------------------------------- /dist/react.force.oauth.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.oauth.js.map -------------------------------------------------------------------------------- /dist/react.force.smartstore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.smartstore.d.ts -------------------------------------------------------------------------------- /dist/react.force.smartstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.smartstore.js -------------------------------------------------------------------------------- /dist/react.force.smartstore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.smartstore.js.map -------------------------------------------------------------------------------- /dist/react.force.test.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.test.d.ts -------------------------------------------------------------------------------- /dist/react.force.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.test.js -------------------------------------------------------------------------------- /dist/react.force.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.test.js.map -------------------------------------------------------------------------------- /dist/react.force.util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.util.d.ts -------------------------------------------------------------------------------- /dist/react.force.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.util.js -------------------------------------------------------------------------------- /dist/react.force.util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/react.force.util.js.map -------------------------------------------------------------------------------- /dist/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /dist/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/index.d.ts -------------------------------------------------------------------------------- /dist/typings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/index.js -------------------------------------------------------------------------------- /dist/typings/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/index.js.map -------------------------------------------------------------------------------- /dist/typings/mobilesync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/mobilesync.d.ts -------------------------------------------------------------------------------- /dist/typings/mobilesync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/mobilesync.js -------------------------------------------------------------------------------- /dist/typings/mobilesync.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/mobilesync.js.map -------------------------------------------------------------------------------- /dist/typings/oauth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/oauth.d.ts -------------------------------------------------------------------------------- /dist/typings/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/oauth.js -------------------------------------------------------------------------------- /dist/typings/oauth.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/oauth.js.map -------------------------------------------------------------------------------- /dist/typings/smartstore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/smartstore.d.ts -------------------------------------------------------------------------------- /dist/typings/smartstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/smartstore.js -------------------------------------------------------------------------------- /dist/typings/smartstore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/dist/typings/smartstore.js.map -------------------------------------------------------------------------------- /ios/SalesforceReact/SFMobileSyncReactBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFMobileSyncReactBridge.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SFMobileSyncReactBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFMobileSyncReactBridge.m -------------------------------------------------------------------------------- /ios/SalesforceReact/SFNetReactBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFNetReactBridge.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SFNetReactBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFNetReactBridge.m -------------------------------------------------------------------------------- /ios/SalesforceReact/SFOauthReactBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFOauthReactBridge.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SFOauthReactBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFOauthReactBridge.m -------------------------------------------------------------------------------- /ios/SalesforceReact/SFSDKReactLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFSDKReactLogger.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SFSDKReactLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFSDKReactLogger.m -------------------------------------------------------------------------------- /ios/SalesforceReact/SFSmartStoreReactBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFSmartStoreReactBridge.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SFSmartStoreReactBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SFSmartStoreReactBridge.m -------------------------------------------------------------------------------- /ios/SalesforceReact/SalesforceReactSDKManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SalesforceReactSDKManager.h -------------------------------------------------------------------------------- /ios/SalesforceReact/SalesforceReactSDKManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/ios/SalesforceReact/SalesforceReactSDKManager.m -------------------------------------------------------------------------------- /iosTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/.gitignore -------------------------------------------------------------------------------- /iosTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/README.md -------------------------------------------------------------------------------- /iosTests/create_test_credentials_from_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/create_test_credentials_from_env.js -------------------------------------------------------------------------------- /iosTests/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/Podfile -------------------------------------------------------------------------------- /iosTests/ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTestApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTestApp/AppDelegate.h -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTestApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTestApp/AppDelegate.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTestApp/Info.plist -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTestApp/main.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactHarnessTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactHarnessTests.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactMobileSyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactMobileSyncTests.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactNetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactNetTests.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactOauthTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactOauthTests.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactSmartStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactSmartStoreTests.m -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactTestCase.h -------------------------------------------------------------------------------- /iosTests/ios/SalesforceReactTests/ReactTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/ios/SalesforceReactTests/ReactTestCase.m -------------------------------------------------------------------------------- /iosTests/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/metro.config.js -------------------------------------------------------------------------------- /iosTests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/package.json -------------------------------------------------------------------------------- /iosTests/prepareios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/prepareios.js -------------------------------------------------------------------------------- /iosTests/updatebundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/updatebundle.js -------------------------------------------------------------------------------- /iosTests/updatesdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/iosTests/updatesdk.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /setversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/setversion.sh -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/react.force.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.common.ts -------------------------------------------------------------------------------- /src/react.force.log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.log.ts -------------------------------------------------------------------------------- /src/react.force.mobilesync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.mobilesync.ts -------------------------------------------------------------------------------- /src/react.force.net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.net.ts -------------------------------------------------------------------------------- /src/react.force.oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.oauth.ts -------------------------------------------------------------------------------- /src/react.force.smartstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.smartstore.ts -------------------------------------------------------------------------------- /src/react.force.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.test.tsx -------------------------------------------------------------------------------- /src/react.force.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/react.force.util.ts -------------------------------------------------------------------------------- /src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/typings/index.ts -------------------------------------------------------------------------------- /src/typings/mobilesync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/typings/mobilesync.ts -------------------------------------------------------------------------------- /src/typings/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/typings/oauth.ts -------------------------------------------------------------------------------- /src/typings/smartstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/src/typings/smartstore.ts -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/README.md -------------------------------------------------------------------------------- /test/alltests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/alltests.js -------------------------------------------------------------------------------- /test/harness.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/harness.test.js -------------------------------------------------------------------------------- /test/mobilesync.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/mobilesync.test.js -------------------------------------------------------------------------------- /test/net.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/net.test.js -------------------------------------------------------------------------------- /test/oauth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/oauth.test.js -------------------------------------------------------------------------------- /test/smartstore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/test/smartstore.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-ReactNative/HEAD/tsconfig.tsbuildinfo --------------------------------------------------------------------------------