Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apis/AppManager/IAppManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ struct RuntimeConfig
std::string logLevels; //json array of strings
bool mapi {false};
std::string fkpsFiles; //json array of strings
std::string ralfPkgPath;

std::string fireboltVersion;
bool enableDebugger{false};
Expand Down
1 change: 1 addition & 0 deletions apis/LifecycleManager/ILifecycleManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ struct RuntimeConfig {
std::string logLevels; //json array of strings
bool mapi;
std::string fkpsFiles; //json array of strings
std::string ralfPkgPath;

std::string fireboltVersion;
bool enableDebugger;
Expand Down
1 change: 1 addition & 0 deletions apis/PackageManager/IAppPackageManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ namespace Exchange {
std::string logLevels; //json array of strings
bool mapi;
std::string fkpsFiles; //json array of strings
std::string ralfPkgPath;

std::string fireboltVersion;
bool enableDebugger;
Expand Down
1 change: 1 addition & 0 deletions apis/RuntimeManager/IRuntimeManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ struct RuntimeConfig {
std::string logLevels; //json array of strings
bool mapi;
std::string fkpsFiles; //json array of strings
std::string ralfPkgPath;

std::string fireboltVersion;
bool enableDebugger;
Expand Down
12 changes: 6 additions & 6 deletions docs/apis/LifecycleManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a id="LifecycleManager_Plugin"></a>
# LifecycleManager Plugin

**Version: [1.0.0](https://github.com/rdkcentral/entservices-apis/tree/main/apis/LifecycleManager/ILifecycleManager.h)**
**Version: [1.0.0](https://github.com/rdkcentral/entservices-apis/tree/main/apis/LifecycleManager/ILifecycleManagerState.h)**

A LifecycleManager plugin for Thunder framework.

Expand Down Expand Up @@ -62,7 +62,7 @@ Event details will be updated soon.
| Name | Type | Description |
| :-------- | :-------- | :-------- |
| params | object | |
| params.appId | string | App identifier for the application. |
| params.appId | string | |
### Results
| Name | Type | Description |
| :-------- | :-------- | :-------- |
Expand Down Expand Up @@ -113,7 +113,7 @@ Event details will be updated soon.
| Name | Type | Description |
| :-------- | :-------- | :-------- |
| params | object | |
| params.appId | string | App identifier for the application. |
| params.appId | string | |
| params.closeReason | string | closed reason for application |
### Results
| Name | Type | Description |
Expand Down Expand Up @@ -166,7 +166,7 @@ Event details will be updated soon.
| Name | Type | Description |
| :-------- | :-------- | :-------- |
| params | object | |
| params.appId | string | App identifier for the application. |
| params.appId | string | |
| params.stateChangedId | integer | state changed identifier |
| params.success | bool | |
### Results
Expand Down Expand Up @@ -234,8 +234,8 @@ Notifies the new state
| Name | Type | Description |
| :-------- | :-------- | :-------- |
| params | object | |
| params.appId | string | App identifier for the application. |
| params.appInstanceId | string | A numerical identifier for a specific instance of the application. |
| params.appId | string | |
| params.appInstanceId | string | |
| params.oldLifecycleState | LifecycleState | The previous state of the application instance before the update. |
| params.newLifecycleState | LifecycleState | The new state to transition the application. |
| params.navigationIntent | string | navigation intent during active state |
Expand Down
Loading
Loading