Skip to content

Commit 146ccbf

Browse files
Merge pull request #86 from apivideo/sort-params-in-analytics
Add sort parameters in analytics routes
2 parents 8771ef3 + 4ae03f2 commit 146ccbf

File tree

8 files changed

+82
-23
lines changed

8 files changed

+82
-23
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3637a70fc3b7f045b2927373115f2132767e3ea4ee8f19f7ffd324bb9f8eb7bf
1+
b89163ac996bc8f2bcaf0a054a6a9c28de9b0cf52e16fbcb17055f42852e2a57

ApiVideoClient.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Pod::Spec.new do |s|
55
s.tvos.deployment_target = '10.0'
66
# Add back when CocoaPods/CocoaPods#11558 is released
77
#s.watchos.deployment_target = '3.0'
8-
s.version = '1.3.0'
9-
s.source = { :git => 'https://github.com/apivideo/api.video-swift-client', :tag => 'v1.3.0' }
8+
s.version = '1.3.1'
9+
s.source = { :git => 'https://github.com/apivideo/api.video-swift-client', :tag => 'v1.3.1' }
1010
s.authors = { 'Ecosystem Team' => 'ecosystem@api.video' }
1111
s.license = { :type => 'MIT' }
1212
s.homepage = 'https://docs.api.video'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to this project will be documented in this file.
33

4+
## [1.3.1] - 2024-09-05
5+
- Add sort parameters in analytics endpoints
6+
47
## [1.3.0] - 2024-07-29
58
- Add new analytics methods
69
- Add livestream complete() method

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ api.video's Swift API client for iOS, macOS and tvOS streamlines the coding proc
5555
Specify it in your `Cartfile`:
5656

5757
```
58-
github "apivideo/api.video-swift-client" ~> 1.3.0
58+
github "apivideo/api.video-swift-client" ~> 1.3.1
5959
```
6060

6161
Run `carthage update`
6262

6363
#### CocoaPods
6464

65-
Add `pod 'ApiVideoClient', '1.3.0'` in your `Podfile`
65+
Add `pod 'ApiVideoClient', '1.3.1'` in your `Podfile`
6666

6767
Run `pod install`
6868

Sources/APIs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Foundation
88
public class ApiVideoClient {
99
public static var apiKey: String? = nil
1010
public static var basePath = "https://ws.api.video"
11-
internal static var customHeaders:[String: String] = ["AV-Origin-Client": "swift:1.3.0"]
11+
internal static var customHeaders:[String: String] = ["AV-Origin-Client": "swift:1.3.1"]
1212
private static var chunkSize: Int = 50 * 1024 * 1024
1313
internal static var requestBuilderFactory: RequestBuilderFactory = AlamofireRequestBuilderFactory()
1414
internal static var credential = ApiVideoCredential()

Sources/APIs/AnalyticsAPI.swift

Lines changed: 58 additions & 10 deletions
Large diffs are not rendered by default.

docs/AnalyticsAPI.md

Lines changed: 14 additions & 6 deletions
Large diffs are not rendered by default.

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ targets:
77
sources: [Sources]
88
info:
99
path: ./Info.plist
10-
version: 1.3.0
10+
version: 1.3.1
1111
settings:
1212
APPLICATION_EXTENSION_API_ONLY: true
1313
scheme: {}

0 commit comments

Comments
 (0)