File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
5
5
Generated by [ ` auto-changelog ` ] ( https://github.com/CookPete/auto-changelog ) .
6
6
7
+ #### [ 1.16.3] ( https://github.com/rdkcentral/entservices-apis/compare/1.16.2...1.16.3 )
8
+
9
+ - RDKEMW-7499: onAppInstallationStatus Event missing failReason [ ` #508 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/508 )
10
+ - Merge tag '1.16.2' into develop [ ` b1e394c ` ] ( https://github.com/rdkcentral/entservices-apis/commit/b1e394c558d02490cfab7ce24c2848bd4d0b8e55 )
11
+
7
12
#### [ 1.16.2] ( https://github.com/rdkcentral/entservices-apis/compare/1.16.1...1.16.2 )
8
13
14
+ > 19 September 2025
15
+
9
16
- RDKEMW-7966 : The event "shortAudiodescriptorEvent" on the API docs is wrongly spelled [ ` #501 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/501 )
17
+ - 1.16.2 release changelog updates [ ` 6ec87bc ` ] ( https://github.com/rdkcentral/entservices-apis/commit/6ec87bca4eb6d571e18701a5b81b493858a9dd30 )
10
18
- Merge tag '1.16.1' into develop [ ` 65fb823 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/65fb823de9decd4bf362c1795ccd147e4f273af3 )
11
19
12
20
#### [ 1.16.1] ( https://github.com/rdkcentral/entservices-apis/compare/1.16.0...1.16.1 )
Original file line number Diff line number Diff line change @@ -124,22 +124,22 @@ namespace Exchange {
124
124
// @param fileLocator: FileLocator
125
125
virtual Core::hresult Delete (const string &fileLocator) = 0;
126
126
127
- struct Percent {
128
- uint8_t percent ;
127
+ struct ProgressInfo {
128
+ uint8_t progress ;
129
129
};
130
130
131
- // @brief Delete
131
+ // @brief Progress
132
132
// @text progress
133
133
// @param downloadId: Download id
134
134
virtual Core::hresult Progress (
135
135
const string &downloadId,
136
- Percent &percent /* @out */ ) = 0;
136
+ ProgressInfo &progress /* @out */ ) = 0;
137
137
138
138
// @brief GetStorageDetails
139
139
// @text getStorageDetails
140
140
virtual Core::hresult GetStorageDetails (
141
- uint32_t "aKb /* @out */ ,
142
- uint32_t &usedKb /* @out */ ) = 0;
141
+ string "aKb /* @out */ ,
142
+ string &usedKb /* @out */ ) = 0;
143
143
144
144
// @brief RateLimit
145
145
// @text rateLimit
You can’t perform that action at this time.
0 commit comments