diff --git a/SmartcarAuth.podspec b/SmartcarAuth.podspec index 6e66f67..986c8d5 100755 --- a/SmartcarAuth.podspec +++ b/SmartcarAuth.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SmartcarAuth' - s.version = '6.0.1' + s.version = '6.0.2' s.summary = 'Smartcar Authentication SDK for iOS written in Swift 5.' s.description = <<-DESC diff --git a/SmartcarAuth/SCUrlBuilder.swift b/SmartcarAuth/SCUrlBuilder.swift index 16958f3..f03f2e1 100644 --- a/SmartcarAuth/SCUrlBuilder.swift +++ b/SmartcarAuth/SCUrlBuilder.swift @@ -52,7 +52,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. self.queryItems.append(contentsOf: [ URLQueryItem(name: "client_id", value: clientId), URLQueryItem(name: "response_type", value: "code"), - URLQueryItem(name: "mode", value: connectMode) + URLQueryItem(name: "mode", value: connectMode), + URLQueryItem(name: "sdk_platform", value: "iOS") ]) if let redirectUri = redirectUri.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) { diff --git a/SmartcarAuthTests/SCUrlBuilderTests.swift b/SmartcarAuthTests/SCUrlBuilderTests.swift index 23e6b0a..e6ee6f9 100644 --- a/SmartcarAuthTests/SCUrlBuilderTests.swift +++ b/SmartcarAuthTests/SCUrlBuilderTests.swift @@ -31,7 +31,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderBaseUrl() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" let baseUrl = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope).build() @@ -39,7 +39,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderBaseUrlTestMode() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=test&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=test&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" self.testMode = true let baseUrl = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope, testMode: testMode).build() @@ -48,7 +48,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderBaseUrlModeTest() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=test&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=test&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" self.connectMode = SCMode.test let baseUrl = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope, mode: connectMode).build() @@ -57,7 +57,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderBaseUrlModeSimulated() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" self.connectMode = SCMode.simulated let baseUrl = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope, mode: connectMode).build() @@ -66,7 +66,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderBaseUrlTestModeAndMode() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer" self.connectMode = SCMode.simulated self.testMode = true @@ -76,7 +76,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetState() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setState(state: state) @@ -86,7 +86,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetForcePromptTrue() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&approval_prompt=force" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&approval_prompt=force" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setForcePrompt(forcePrompt: true) @@ -96,7 +96,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetForcePromptFalse() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&approval_prompt=auto" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&approval_prompt=auto" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setForcePrompt(forcePrompt: false) @@ -106,7 +106,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetMakeBypass() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&make=TESLA" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&make=TESLA" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setMakeBypass(make: make) @@ -116,7 +116,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetSingleSelectTrue() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=true" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=true" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setSingleSelect(singleSelect: true) @@ -126,7 +126,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetSingleSelectFalse() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=false" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=false" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setSingleSelect(singleSelect: false) @@ -136,7 +136,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetSingleSelectVin() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=true&single_select_vin=12345678901234567" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&single_select=true&single_select_vin=12345678901234567" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setSingleSelect(singleSelect: true) @@ -147,7 +147,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetFlags() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&flags=country:DE%20flag:suboption" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&flags=country:DE%20flag:suboption" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setFlags(flags: flags) @@ -157,7 +157,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetUser() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=live&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope) .setUser(user: user) @@ -167,7 +167,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetAllSupportedParameters() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state + "&approval_prompt=force&make=TESLA&single_select=true&single_select_vin=12345678901234567&flags=country:DE%20flag:suboption&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state + "&approval_prompt=force&make=TESLA&single_select=true&single_select_vin=12345678901234567&flags=country:DE%20flag:suboption&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" self.connectMode = SCMode.simulated let urlWithState = SCUrlBuilder(clientId: clientId, redirectUri: redirectUri, scope: scope, mode: connectMode) @@ -184,7 +184,7 @@ class SCUrlBuilderTests: XCTestCase { } func testSCUrlBuilderSetAllParametersWithTestMode() { - let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state + "&approval_prompt=force&make=TESLA&single_select=true&single_select_vin=12345678901234567&flags=country:DE%20flag:suboption&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" + let expectedUrl = "https://connect.smartcar.com/oauth/authorize?client_id=" + clientId + "&response_type=code&mode=simulated&sdk_platform=iOS&redirect_uri=" + redirectUri + "&scope=read_vehicle_info%20read_odometer&state=" + state + "&approval_prompt=force&make=TESLA&single_select=true&single_select_vin=12345678901234567&flags=country:DE%20flag:suboption&user=a60d61bb-3f7b-49bd-b7ec-bf1d87db0e47" self.testMode = true self.connectMode = SCMode.simulated diff --git a/docs/Classes.html b/docs/Classes.html index 1e33c3a..1c4c0d3 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/AuthorizationError.html b/docs/Classes/AuthorizationError.html index 567b37a..f9f0495 100644 --- a/docs/Classes/AuthorizationError.html +++ b/docs/Classes/AuthorizationError.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/AuthorizationError/ErrorType.html b/docs/Classes/AuthorizationError/ErrorType.html index f5191bf..38c6190 100644 --- a/docs/Classes/AuthorizationError/ErrorType.html +++ b/docs/Classes/AuthorizationError/ErrorType.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/OauthCapture.html b/docs/Classes/OauthCapture.html index 320a4e4..018f7db 100644 --- a/docs/Classes/OauthCapture.html +++ b/docs/Classes/OauthCapture.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/SCUrlBuilder.html b/docs/Classes/SCUrlBuilder.html index 0b8a86e..b227e7a 100644 --- a/docs/Classes/SCUrlBuilder.html +++ b/docs/Classes/SCUrlBuilder.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/SmartcarAuth.html b/docs/Classes/SmartcarAuth.html index db74ebf..aad592b 100644 --- a/docs/Classes/SmartcarAuth.html +++ b/docs/Classes/SmartcarAuth.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Classes/VehicleInfo.html b/docs/Classes/VehicleInfo.html index d7f430b..608f417 100644 --- a/docs/Classes/VehicleInfo.html +++ b/docs/Classes/VehicleInfo.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Enums.html b/docs/Enums.html index b46f99c..d3f2fde 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Enums/SCMode.html b/docs/Enums/SCMode.html index 6eb8fb0..c945936 100644 --- a/docs/Enums/SCMode.html +++ b/docs/Enums/SCMode.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/Functions.html b/docs/Functions.html index 4255a1a..5b070dd 100644 --- a/docs/Functions.html +++ b/docs/Functions.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes.html index 1e33c3a..1c4c0d3 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError.html index 567b37a..f9f0495 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError/ErrorType.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError/ErrorType.html index f5191bf..38c6190 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError/ErrorType.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/AuthorizationError/ErrorType.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/OauthCapture.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/OauthCapture.html index 320a4e4..018f7db 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/OauthCapture.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/OauthCapture.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SCUrlBuilder.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SCUrlBuilder.html index 0b8a86e..b227e7a 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SCUrlBuilder.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SCUrlBuilder.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SmartcarAuth.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SmartcarAuth.html index db74ebf..aad592b 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SmartcarAuth.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/SmartcarAuth.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/VehicleInfo.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/VehicleInfo.html index d7f430b..608f417 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/VehicleInfo.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Classes/VehicleInfo.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums.html index b46f99c..d3f2fde 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums/SCMode.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums/SCMode.html index 6eb8fb0..c945936 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums/SCMode.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Enums/SCMode.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Functions.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Functions.html index 4255a1a..5b070dd 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Functions.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/Functions.html @@ -17,7 +17,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/index.html b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/index.html index 5145a10..e7b4953 100644 --- a/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/SmartcarAuth.docset/Contents/Resources/Documents/index.html @@ -16,7 +16,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)

diff --git a/docs/docsets/SmartcarAuth.tgz b/docs/docsets/SmartcarAuth.tgz index b2669ad..eea3dff 100644 Binary files a/docs/docsets/SmartcarAuth.tgz and b/docs/docsets/SmartcarAuth.tgz differ diff --git a/docs/index.html b/docs/index.html index 5145a10..e7b4953 100644 --- a/docs/index.html +++ b/docs/index.html @@ -16,7 +16,7 @@
-

SmartcarAuth 6.0.0 Docs (68% documented)

+

SmartcarAuth 6.0.2 Docs (68% documented)