提交 1042f045 编写于 作者: G Gloria

replaced folders (excluding application-dev and device-dev) (en) with those in master

Signed-off-by: wusongqing<wusongqing@huawei.com>
上级 abac74be
...@@ -146,7 +146,7 @@ The following table describes the subsystems of OpenHarmony. For details about t ...@@ -146,7 +146,7 @@ The following table describes the subsystems of OpenHarmony. For details about t
## Supported Development Boards ## Supported Development Boards
Currently, the OpenHarmony community supports 17 types of development boards, which are listed in [Development Boards Supported](device-dev/dev-board-on-the-master.md). The following table describes three of them, which are the first three integrated into the OpenHarmony master. You can visit http://ci.openharmony.cn/dailys/dailybuilds to obtain daily builds. Currently, the OpenHarmony community supports 22 types of development boards, which are listed in [Development Boards Supported](device-dev/dev-board-on-the-master.md). The following table describes three of them, which are the first three integrated into the OpenHarmony master. You can visit http://ci.openharmony.cn/dailys/dailybuilds to obtain daily builds.
| System Type| Board Model| Chip Model| <div style="width:200pt">Function Description and Use Case</div> | Application Scenario| Code Repository | | System Type| Board Model| Chip Model| <div style="width:200pt">Function Description and Use Case</div> | Application Scenario| Code Repository |
| -------- | -------- | -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- | -------- | -------- |
...@@ -156,11 +156,9 @@ Currently, the OpenHarmony community supports 17 types of development boards, wh ...@@ -156,11 +156,9 @@ Currently, the OpenHarmony community supports 17 types of development boards, wh
## Getting Started ## Getting Started
- [Getting Started for Device Development](device-dev/quick-start/quickstart-ide-lite-overview.md) - [Getting Started for Device Development](device-dev/quick-start/quickstart-overview.md)
- [Getting Started for Application Development](application-dev/quick-start/start-overview.md) - [Getting Started for Application Development](application-dev/quick-start/start-overview.md)
## Code Repository Addresses ## Code Repository Addresses
OpenHarmony project: [https://gitee.com/openharmony](https://gitee.com/openharmony) OpenHarmony project: [https://gitee.com/openharmony](https://gitee.com/openharmony)
...@@ -173,6 +171,8 @@ OpenHarmony archived projects: [https://gitee.com/openharmony-retired](https://g ...@@ -173,6 +171,8 @@ OpenHarmony archived projects: [https://gitee.com/openharmony-retired](https://g
## OpenHarmony Documentation ## OpenHarmony Documentation
[Official website](https://www.openharmony.cn/)
[Chinese version](https://gitee.com/openharmony/docs/tree/master/zh-cn) [Chinese version](https://gitee.com/openharmony/docs/tree/master/zh-cn)
[English version](https://gitee.com/openharmony/docs/tree/master/en) [English version](https://gitee.com/openharmony/docs/tree/master/en)
...@@ -197,7 +197,7 @@ For details about how to contribute, see [How to contribute](contribute/how-to-c ...@@ -197,7 +197,7 @@ For details about how to contribute, see [How to contribute](contribute/how-to-c
OpenHarmony complies with Apache License Version 2.0. For details, see the LICENSE in each repository. OpenHarmony complies with Apache License Version 2.0. For details, see the LICENSE in each repository.
OpenHarmony uses third-party open-source software and licenses. For details, see [Third-Party Open-Source Software](https://gitee.com/openharmony/docs/blob/master/en/contribute/third-party-open-source-software-and-license-notice.md). OpenHarmony uses third-party open-source software and licenses. For details, see [Open Source Software and License Notice](https://gitee.com/openharmony/docs/blob/master/en/contribute/open-source-software-and-license-notice.md).
## Contact Info ## Contact Info
......
...@@ -170,9 +170,9 @@ function render(container, dataSource) { ...@@ -170,9 +170,9 @@ function render(container, dataSource) {
#### Rule 2.3 The use of braces must comply with the following conventions: #### Rule 2.3 The use of braces must comply with the following conventions:
1. If the value in the braces is empty, the value can be abbreviated as `{}` without a newline. 1. If the value in the braces is empty, the value can be abbreviated as `{}` without a line feed.
2. The left braces do not contain a line feed, and the left braces are followed by a line feed. 2. Do not use a line feed before the left brace, and use one after it.
3. Line feeds before the right brace. If there is `else` or `catch` after the brace, line feeds are not required. In other cases, line feeds are required. 3. Use a line feed before the right brace, and use one after it as long as it is not followed by `else` or `catch`.
#### Rule 2.4 Implementations of conditional and loop statements must be enclosed in braces, even if there is only one statement. #### Rule 2.4 Implementations of conditional and loop statements must be enclosed in braces, even if there is only one statement.
......
# OpenHarmony Security Test Guide
With reference to industry standards and best practices, this document provides specifications for security tests of the OpenHarmony project.
## Security Test Content
- Review the code of each module according to [OpenHarmony C&C++ Secure Coding Guide](OpenHarmony-c-cpp-secure-coding-guide.md) and fix all issues found in the review.
- Use the OpenHarmony gated check-in to scan your code and clear all alarms.
- Use the compilation option scanning tool to scan your binary file and ensure that the settings of all the compilation options comply with the [OpenHarmony Compilation Specifications].
- For the module that receives and processes user-mode parameters, develop gray-box and white-box fuzz testing suites according to the [Fuzz Testing Guide](https://gitee.com/openharmony/test_developertest/tree/master/libs/fuzzlib) and complete the tests.
- Use mainstream vulnerability scanning tools to scan open-source components. Ensure that all the detected vulnerabilities have been fixed according to the vulnerability management process of the community.
- Perform consistency check of the released versions, and check that the [released version images](../release-notes/Readme.md) provide the SAH-256 checksum.
- Complete the security design self-check for each module according to [OpenHarmony Security Design Specifications](OpenHarmony-security-design-guide.md). Ensure that all design issues found in the self-check have been fixed.
- Use mainstream viruses scanning software to scan software packages. Ensure that all virus detected have been removed or confirmed as false alarms.
- Search for ".cer" and ".pem" or keyword such as "PRIVATE KEY" to find the certificate key, and check that the certificate key is within the validity period and the encryption algorithm meets [encryption algorithm requirements](OpenHarmony-security-design-guide.md#3-encryption). Ensure that all certificate key issues have been resolved.
- Perform black-box fuzz testing on exposed user-mode APIs, including system service APIs, kernel driver APIs, socket APIs, and more.
>**NOTE**
>
>The preceding requirements apply to all new and inherited features.
## Security Test Completion Requirements
The mandatory security test performed before version release is complete only when:
- All the security tests mentioned in [Security Test Content](#security-test-content) are complete.
- All security issues have been closed.
## Security Test Report Template
- The security test report must contain the security test results in [Security Test Content](#security-test-content) and pending security issues.
- The version security test report is released with the entire test report of the version, instead of being released and archived separately.
...@@ -25,6 +25,9 @@ Develop, review, and test code following the OpenHarmony coding standards. Make ...@@ -25,6 +25,9 @@ Develop, review, and test code following the OpenHarmony coding standards. Make
### Introducing Open-source Software ### Introducing Open-source Software
For details, see [Introducing Open-Source Software](introducing-open-source-software.md). For details, see [Introducing Open-Source Software](introducing-open-source-software.md).
### Test Guide
[OpenHarmony Secure Test Guide](OpenHarmony-security-test-guide.md)
## Contribution Workflow ## Contribution Workflow
...@@ -33,6 +36,9 @@ For details, see [Contribution Process](contribution-process.md). ...@@ -33,6 +36,9 @@ For details, see [Contribution Process](contribution-process.md).
## Security Issue Disclosure ## Security Issue Disclosure
- [OpenHarmony Security Vulnerability Governance](https://gitee.com/openharmony/security/blob/master/en/security-process/README.md) - [OpenHarmony Security Vulnerability Governance](https://gitee.com/openharmony/security/blob/master/en/security-process/README.md)
- [OpenHarmony Security and Disclosure Statement](https://gitee.com/openharmony/security/blob/master/en/security-process/security-disclosure.md) - [OpenHarmony Security and Disclosure Statement](https://gitee.com/openharmony/security/blob/master/en/security-process/security-disclosure.md)
<!--no_check-->
...@@ -7,7 +7,7 @@ This document describes how code contributors, committers, and PMC members in th ...@@ -7,7 +7,7 @@ This document describes how code contributors, committers, and PMC members in th
3. Copyright and license header 3. Copyright and license header
## Scope ## Scope
This document applies only to the OpenHarmony community. It is not applicable to the scenario where the OpenHarmony project is used by individuals or enterprises to develop their products or the scenario where third-party open-source software is introduced. For details, see [Introducing Third-Party Open-Source Software](introducing-third-party-open-source-software.md). This document applies only to the OpenHarmony community. It is not applicable to the scenario where the OpenHarmony project is used by individuals or enterprises to develop their products or the scenario where third-party open-source software is introduced.
## Improvements and Revisions ## Improvements and Revisions
1. This document is drafted and maintained by the OpenHarmony PMC. What you are reading now is the latest version of this document. 1. This document is drafted and maintained by the OpenHarmony PMC. What you are reading now is the latest version of this document.
......
# Third-Party Open-Source Software and License Notice # Open Source Software and License Notice
The following table lists the licenses of the third-party open source software used by OpenHarmony. The following table lists the licenses of the third-party open source software used by OpenHarmony.
......
# API Reference Template # API Reference Template
## General Writing Instructions ## General Writing Instructions
> **NOTE** > **NOTE**
> >
> Delete all writing instructions after you finish the writing. > Delete all writing instructions after you finish the writing.
...@@ -8,19 +9,19 @@ ...@@ -8,19 +9,19 @@
| | Item | Writing Instruction | | | Item | Writing Instruction |
| ---- | --------------------------------- | ------------------------------------------------------------ | | ---- | --------------------------------- | ------------------------------------------------------------ |
| 1 | Customer-oriented mindset | **Stand in the shoes of developers and provide the use cases, parameter selection principles, recommendations/tips, sample code, and anything else that a developer will need to develop the API.**| | 1 | Customer-oriented mindset | **Stand in the shoes of developers and provide the use cases, parameter selection principles, recommendations/tips, sample code, and anything else that a developer will need to develop the API.**|
| 2 | Upload path | Upload markdown files to `docs/en/application-dev/reference/apis`.<br>Upload images to `docs/en/application-dev/reference/apis/figures`. In addition, reference the image path in the markdown file as follows: `![](figures/exampleImage.jpg)`, `![](figures/exampleImage.png)`, or `![](figures/exampleImage.gif)`.| | 2 | Upload path | Upload markdown files to **docs/en/application-dev/reference/apis**.<br>Upload images to **docs/en/application-dev/reference/apis/figures**. In addition, reference the image path in the markdown file as follows: **![](figures/exampleImage.jpg)**, **![](figures/exampleImage.png)**, or **![](figures/exampleImage.gif)**.|
| 3 | File name | Provide one JS API reference document for each d.ts file. Name the file in the format of `js-apis-exampleModule.md`, where `exampleModule` is a variable and must be the same as the actual module name.<br>Examples:<br>For @ohos.multimedia.audio in the Multimedia subsystem, the JS API file name is `js-apis-audio.md`.<br>For @ohos.telephony.sms in the Telephony subsystem, the JS API file name is `js-apis-sms.md`.| | 3 | File name | Provide one JS API reference document for each d.ts file. Name the file in the format of **js-apis-exampleModule.md**, where **exampleModule** is a variable and must be the same as the actual module name.<br>Examples:<br>For @ohos.multimedia.audio in the Multimedia subsystem, the JS API file name is **js-apis-audio.md**.<br>For @ohos.telephony.sms in the Telephony subsystem, the JS API file name is **js-apis-sms.md**.|
| 4 | Directory update | After uploading an API reference document, update the `Readme-EN.md` file in `docs/en/application-dev/reference/apis`.| | 4 | Directory update | After uploading an API reference document, update the **Readme-EN.md** file in **docs/en/application-dev/reference/apis**.<br>The directories are automatically arranged in alphabetical order.|
| 5 | Document structure | - Module description<br>- Initial version description<br>- Modules to Import/Usage description<br>- API description (attributes, methods, enums, and custom types)<br> The order in which APIs are described in the document must be consistent with that in which they appear in the code. If some APIs have a logical sequence, pay attention to their sequence in the API reference document.| | 5 | Document structure | - Module description<br>- Initial version description<br>- Modules to Import/Usage description<br>- API description (attributes, constants, methods, enums, and custom types)<br> The order in which APIs are described in the document must be consistent with that in which they appear in the code. If some APIs have a logical sequence, pay attention to their sequence in the API reference document. |
| 6 | Initial version description | 1. Use the greater-than sign (`>`) followed by a space to indent the description about the initial version of the module. Unless otherwise marked, all APIs in the module have the same initial version.<br>2. When introducing an API to an existing module, use the `<sup>` tag to mark its earliest version. The format is `<sup>versionNumber+</sup>`, for example, `<sup>7+</sup>`.<br>If an attribute is added to an existing module, suffix the `<sup>` tag to the new attribute name, for example, `newAttribute<sup>7+</sup>`.<br>If a method is added to an existing module, suffix the `<sup>` tag to the method name, for example, `sim.getSimIccId<sup>7+</sup>`. The same rule applies to new interfaces, classes, and enums. | | 6 | Initial version description | 1. Use the greater-than sign (**>**) followed by a space to indent the description about the initial version of the module. Unless otherwise marked, all APIs in the module have the same initial version.<br>2. When introducing an API to an existing module, use the **<sup>** tag to mark its earliest version. The format is **<sup>versionNumber+</sup>**, for example, **<sup>7+</sup>**.<br>If an attribute is added to an existing module, suffix the **<sup>** tag to the new attribute name, for example, **newAttribute<sup>7+</sup>**.<br>If a method is added to an existing module, suffix the **<sup>** tag to the method name, for example, **sim.getSimIccId<sup>7+</sup>**. The same rule applies to new interfaces, classes, and enums. |
| 7 | Deprecated API description | Do not delete the deprecated content from the document. Instead, suffix `deprecated` as a superscript to the content, and use the greater-than sign (`>`) to introduce the substitute API plus a link to the API description.<br>Example: abandonmentMethod<sup>(deprecated)</sup><br>> This API is no longer maintained since API version 7. You are advised to use [newMethod]\(#newmethod) instead.| | 7 | Deprecated API description | Do not delete the deprecated content from the document. Instead, suffix **deprecated** as a superscript to the content, and use the greater-than sign (**>**) to introduce the initial version and deprecated version.<br>Example: abandonmentMethod<sup>(deprecated)</sup><br>> This API is supported since API version 4 and deprecated since API version 7. You are advised to use [newMethod]\(#newmethod) instead.|
| 8 | Permission description | Provide the same permission description as that defined in the code for each method, enum, and attribute.<br>1. If a specific permission required for using the API can be requested only by system applications, provide the description in the following format:<br>**Required permissions**: ohos.permission.examplePermission (available only to system applications)<br>2. If a specific permission required for using the API can be requested by all applications, provide the description in the following format:<br>**Required permissions**: ohos.permission.examplePermission<br>3. If multiple permissions are required for using the API, provide the permissions with `and` or `or` in the following format:<br>**Required permissions**: ohos.permission.examplePermissionA and ohos.permission.examplePermissionB<br>**Required permissions**: ohos.permission.examplePermissionA or ohos.permission.examplePermissionB| | 8 | Permission description | Provide the same permission description as that defined in the code for each method, enum, and attribute.<br>1. If a specific permission required for using the API can be requested only by system applications, provide the description in the following format:<br>**Required permissions**: ohos.permission.examplePermission (available only to system applications)<br>2. If a specific permission required for using the API can be requested by all applications, provide the description in the following format:<br>**Required permissions**: ohos.permission.examplePermission<br>3. If multiple permissions are required for using the API, provide the permissions with **and** or **or** in the following format:<br>**Required permissions**: ohos.permission.examplePermissionA and ohos.permission.examplePermissionB<br>**Required permissions**: ohos.permission.examplePermissionA or ohos.permission.examplePermissionB |
| 9 | @syscap | 1. Provide a description for every API in the following format, wherein *A.B* indicates a specific system capability.<br>**System capability**: SystemCapability.*A.B*<br>2. There are two cases for adding system capability information to a table (of attributes, enums, constants, or variables).<br>1) If all the items in a table require the same system capability, add the following information to the front of the table:<br>**System capability**: SystemCapability.*A.B*<br>2) If the items in a table require different system capabilities, list the system capability for each item in the table. | | 9 | @syscap | 1. Provide a description for every API in the following format, wherein *A.B* indicates a specific system capability.<br>**System capability**: SystemCapability.*A.B*<br>2. There are two cases for adding system capability information to a table (of attributes, enums, constants, or variables).<br>1) If all the items in a table require the same system capability, add the following information to the front of the table:<br>**System capability**: SystemCapability.*A.B*<br>2) If the items in a table require different system capabilities, list the system capability for each item in the table. |
| 10 | @system api | 1. If all APIs of the module are system APIs, add the following sentence to the next line of the initial version description:<br>The APIs provided by this module are system APIs.<br>2. If an API is a system API that can be used only by original equipment manufacturers (OEMs), add the following sentence to the API description:<br>**System API**: This is a system API.| | 10 | @system api | 1. If all APIs of the module are system APIs, add the following sentence to the next line of the initial version description:<br>The APIs provided by this module are system APIs.<br>2. If an API is a system API that can be used only by original equipment manufacturers (OEMs), add the following sentence to the API description:<br>**System API**: This is a system API.|
| 11 | @FAModelOnly<br>@StageModelOnly | 1. If a module is implemented only for a specific ability model, add the following sentence to the next line of the initial version description:<br>The APIs of this module can be used only in the FA model.<br>Or<br>The APIs of this module can be used only in the stage model.<br>2. If an API is implemented only for a specific ability model, add the following sentence to the API description:<br>**Model restriction**: This API can be used only in the FA model.<br/>Or<br/>**Model restriction**: This API can be used only in the stage model.| | 11 | @FAModelOnly<br>@StageModelOnly | 1. If a module is implemented only for a specific ability model, add the following sentence to the next line of the initial version description:<br>The APIs of this module can be used only in the FA model.<br>Or<br>The APIs of this module can be used only in the stage model.<br>2. If an API is implemented only for a specific ability model, add the following sentence to the API description:<br>**Model restriction**: This API can be used only in the FA model.<br/>Or<br/>**Model restriction**: This API can be used only in the stage model.|
| 12 | Asynchronous methods (callback and promise)| Use the following sentences for callback methods.<br>Method introduction: *Describe the method.* This API uses an asynchronous callback to return the result.<br>Parameter description:<br>**callback\<boolean>**: Callback used to return the result. The value `true` indicates *something*, and `false` indicates the opposite.<br>**callback\<Object>**: Callback used to return *something*. Example: Callback used to return the `AudioCapturer` object. <br>**AsyncCallback\<void>**: Callback used to return the result. If the operation (or a specific operation description) is successful, `err` is `undefined`; otherwise, `err` is an `Error` object.<br>**AsyncCallback\<Object x>**: Callback used to return the result. If the operation (or a specific operation description) is successful, `err` is `undefined`, and `data` is the *x* object obtained; otherwise, `err` is an `Error` object.<br>Use the following sentences for promise methods.<br>Method introduction: *Describe the method.* This API uses a promise to return the result.<br>Parameter description:<br>**Promise\<boolean>**: Promise used to return the result. The value `true` indicates *something*, and `false` indicates the opposite.<br>**Promise\<Object>**: Promise used to return *something*. Example: Promise used to return the `AudioCapturer` object. <br>**Promise\<void>**: Promise that returns no value.| | 12 | Asynchronous methods (callback and promise)| Use the following sentences for callback methods.<br>Method introduction: *Describe the method.* This API uses an asynchronous callback to return the result.<br>Parameter description:<br>**callback\<boolean>**: Callback used to return the result. The value **true** indicates *something*, and **false** indicates the opposite.<br>**callback\<Object>**: Callback used to return *something*. Example: Callback used to return the **AudioCapturer** object. <br>**AsyncCallback\<void>**: Callback used to return the result. If the operation (or a specific operation description) is successful, **err** is **undefined**; otherwise, **err** is an error object.<br>**AsyncCallback\<Object x>**: Callback used to return the result. If the operation (or a specific operation description) is successful, **err** is **undefined** and **data** is the *x* object obtained; otherwise, **err** is an error object.<br>Use the following sentences for promise methods.<br>Method introduction: *Describe the method.* This API uses a promise to return the result.<br>Parameter description:<br>**Promise\<boolean>**: Promise used to return the result. The value **true** indicates *something*, and **false** indicates the opposite.<br>**Promise\<Object>**: Promise used to return *something*. Example: Promise used to return the **AudioCapturer** object. <br>**Promise\<void>**: Promise that returns no value. |
| 13 | Sample code programming language | Use code blocks to provide sample code and mark the programming language.<br>Use `js` as the mark if both JS and eTS can be used, and use `ts` if only eTS can be used.| | 13 | Sample code programming language | Use code blocks to provide sample code and mark the programming language.<br>Use **js** as the mark if both JS and eTS can be used, and use **ts** if only eTS can be used.|
| 14 | Link | Link format: [Link text]\(Link content)<br>Cross-folder link format: [markdown file name]\(\.\./../xxx/xxx.md). One `./` indicates one upper-level folder.<br>Intra-topic link format: [Interface A<sup>7+</sup>]\(#xxxa7). The text in the intra-topic link must be the same as the title to be linked. In the link, all letters must be in lowercase, and no special character (except the hyphen) or tag is included.| | 14 | Link | Link format: [Link text]\(Link content)<br>Cross-folder link format: [markdown file name]\(\.\./../xxx/xxx.md). One **../** indicates one upper-level folder.<br>Intra-topic link format: [Interface A<sup>7+</sup>]\(#xxxa7). The text in the intra-topic link must be the same as the title to be linked. In the link, all letters must be in lowercase, and no special character (except the hyphen) or tag is included.|
The following describes the instructions for writing a specific API reference document. The following describes the instructions for writing a specific API reference document.
...@@ -30,9 +31,9 @@ The following describes the instructions for writing a specific API reference do ...@@ -30,9 +31,9 @@ The following describes the instructions for writing a specific API reference do
> *Writing Instructions* > *Writing Instructions*
> >
> 1. **Document title**: Use phrases that summarize the module functionalities. Examples: `Ability` and `SIM Card Management` > 1. **Document title**: Use phrases that summarize the module functionalities. Examples: **Ability** and **SIM Card Management**
> 2. **Heading levels**: Use the document title as the level-1 heading, which is prefixed with `#` followed by a space. Use the attributes, functions, classes, interfaces, enums, and types under the namespace as level-2 headings, which are prefixed with `##` followed by a space. Use the attributes and functions under classes as level-3 headings, which are prefixed with `###` followed by a space. > 2. **Heading levels**: Use the document title as the level-1 heading, which is prefixed with **#** followed by a space. Use the attributes, functions, classes, interfaces, enums, and types under the namespace as level-2 headings, which are prefixed with **##** followed by a space. Use the attributes and functions under classes as level-3 headings, which are prefixed with **###** followed by a space.
> 3. **Initial version description**: Use the greater-than symbol (`>`) to indent the description about the initial version of the module. Use a line break after **NOTE**. <br>Place the version description after the module description. A module has only one initial version. <br>Use the following sentence: "The initial APIs of this module are supported since API version *x*. Newly added APIs will be marked with a superscript to indicate their earliest API version." Change ***x*** to the actual version number. > 3. **Initial version description**: Use the greater-than symbol (**>**) to indent the description about the initial version of the module. Use a line break after **NOTE**. <br>Place the version description after the module description. A module has only one initial version. <br>Use the following sentence: "The initial APIs of this module are supported since API version *x*. Newly added APIs will be marked with a superscript to indicate their earliest API version." Change ***x*** to the actual version number.
Describe the module from its functionalities, use cases, and recommendations in this section. Describe the module from its functionalities, use cases, and recommendations in this section.
...@@ -53,10 +54,12 @@ The APIs provided by distributed data management can be used to save data to the ...@@ -53,10 +54,12 @@ The APIs provided by distributed data management can be used to save data to the
**Example 4**: description of the linear container ArrayList module **Example 4**: description of the linear container ArrayList module
`ArrayList` is a linear data structure that is implemented based on arrays. `ArrayList` can dynamically adjust the capacity based on project requirements. It increases the capacity by 50% each time. **ArrayList** is a linear data structure that is implemented based on arrays. **ArrayList** can dynamically adjust the capacity based on project requirements. It increases the capacity by 50% each time.
Similar to `ArrayList`, `Vector` is also implemented based on arrays and can dynamically adjust the capacity. It increases the capability by 100% each time. Similar to **ArrayList**, **Vector** is also implemented based on arrays and can dynamically adjust the capacity. It increases the capability by 100% each time.
When compared with `LinkedList`, `ArrayList` is more efficient in random access but less efficient in the addition or removal operation, because its addition or removal operation affects the position of other elements in the container. When compared with **LinkedList**, **ArrayList** is more efficient in random access but less efficient in the addition or removal operation, because its addition or removal operation affects the position of other elements in the container.
You are advised to use `ArrayList` when elements in a container need to be frequently read. You are advised to use **ArrayList** when elements in a container need to be frequently read.
> **NOTE** > **NOTE**
> >
...@@ -69,7 +72,7 @@ You are advised to use `ArrayList` when elements in a container need to be frequ ...@@ -69,7 +72,7 @@ You are advised to use `ArrayList` when elements in a container need to be frequ
> 1. Write the modules to import based on the actual conditions. Provide the **import** statement in the form of a code block. > 1. Write the modules to import based on the actual conditions. Provide the **import** statement in the form of a code block.
> >
> 2. If no module needs to be imported, change "Modules to Import" to "Usage" and provide a usage description. <br>Example of **Usage**:<br> > 2. If no module needs to be imported, change "Modules to Import" to "Usage" and provide a usage description. <br>Example of **Usage**:<br>
> Before using the `AbilityContext`, obtain the `Context` object through \[getContext()]\(*API-reference*.md)\. > Before using the **AbilityContext**, obtain the **Context** object through \[getContext()]\(*API-reference*.md)\.
> >
> ```js > ```js
> import ability_featureAbility from '@ohos.ability.featureAbility'; > import ability_featureAbility from '@ohos.ability.featureAbility';
...@@ -99,11 +102,26 @@ import call from '@ohos.telephony.call'; ...@@ -99,11 +102,26 @@ import call from '@ohos.telephony.call';
| pluggedType | [BatteryPluggedType]\(#batterypluggedtype) | Yes | No | Charger type of the current device. | | pluggedType | [BatteryPluggedType]\(#batterypluggedtype) | Yes | No | Charger type of the current device. |
| isBatteryPresent | boolean | Yes | No | Whether the battery is supported or present.| | isBatteryPresent | boolean | Yes | No | Whether the battery is supported or present.|
## Constants
> *Writing Instructions*
>
> 1. This section is optional. Delete it if there is no constant. It corresponds to **const** in the .d.ts file.
>
> 2. If a constant is of a custom type, create a link to the corresponding interface or enum.
**System capability**: SystemCapability.*A.B* (This part is mandatory.)
| Name | Type | Description |
| ---------------- | ----------------------------------------- | ------------------------------------------ |
| uid | number | User identifier (UID) of a process. |
| pid | number | Process ID (PID) of a process. |
## Methods ## Methods
> *Writing Instructions* > *Writing Instructions*
> >
> 1. This section is optional. Delete it if there is no method. If there are multiple methods, describe them in separate level-2 headings, prefixed with `##` followed by a space. > 1. This section is optional. Delete it if there is no method. If there are multiple methods, describe them in separate level-2 headings, prefixed with **##** followed by a space.
> >
> 2. Use the actual method name, in the format of ClassName.methodName, as the level-2 heading. For a subscription method, add the subscription event to the method name. > 2. Use the actual method name, in the format of ClassName.methodName, as the level-2 heading. For a subscription method, add the subscription event to the method name.
> >
...@@ -120,7 +138,7 @@ import call from '@ohos.telephony.call'; ...@@ -120,7 +138,7 @@ import call from '@ohos.telephony.call';
> >
> 6. **Line feed in a table**: Use \<br> for line feed. > 6. **Line feed in a table**: Use \<br> for line feed.
Provide the method name in the following format: (`static` if it is a static method) methodName (parameterName1: parameterType1, parameterName2: parameterType2, ...): returnValueType Provide the method name in the following format: (**static** if it is a static method) methodName (parameterName1: parameterType1, parameterName2: parameterType2, ...): returnValueType
Describe the method. For details, see the fourth and fifth points in "Writing Instructions" above. Describe the method. For details, see the fourth and fifth points in "Writing Instructions" above.
...@@ -179,13 +197,13 @@ For details about the error codes, see [moduleName Error Codes]\(link to the err ...@@ -179,13 +197,13 @@ For details about the error codes, see [moduleName Error Codes]\(link to the err
> 1. The basic requirements are the same as those provided in [Methods](#methods). The following describes only the differences. > 1. The basic requirements are the same as those provided in [Methods](#methods). The following describes only the differences.
> >
> 2. Use the actual method name, in the format of ClassName.methodName plus the subscription event, as the level-2 heading. > 2. Use the actual method name, in the format of ClassName.methodName plus the subscription event, as the level-2 heading.
> Examples: `sim.on(?exampleEvent?)` and `on('play' | 'pause' | 'stop' | 'reset')` > Examples: **sim.on(?exampleEvent?)** and **on('play' | 'pause' | 'stop' | 'reset')**
> >
> 3. **Method calling mode**: The description must be the same as that in the .d.ts file and include the parameter type, event name, parameter name, and return value type. > 3. **Method calling mode**: The description must be the same as that in the .d.ts file and include the parameter type, event name, parameter name, and return value type.
> Example: `on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void` > Example: **on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void**
> Note: The angle bracket (<>) may be identified as a label and not displayed. To ensure normal display, you can either add a backslash (\\) (in the format of "\\<>") or use escape characters \&lt; and \&gt;. > Note: The angle bracket (<>) may be identified as a label and not displayed. To ensure normal display, you can either add a backslash (\\) (in the format of "\\<>") or use escape characters \&lt; and \&gt;.
Provide the method name in the following format: (`static` if it is a static method) methodName (parameterName1: parameterType1, parameterName2: parameterType2, ...): returnValueType Provide the method name in the following format: (**static** if it is a static method) methodName (parameterName1: parameterType1, parameterName2: parameterType2, ...): returnValueType
Describe the method. For details, see the fourth and fifth points in "Writing Instructions" under [Methods](#methods). Describe the method. For details, see the fourth and fifth points in "Writing Instructions" under [Methods](#methods).
...@@ -201,7 +219,7 @@ Describe the method. For details, see the fourth and fifth points in "Writing In ...@@ -201,7 +219,7 @@ Describe the method. For details, see the fourth and fifth points in "Writing In
| Name | Type | Mandatory| Description | | Name | Type | Mandatory| Description |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ | | -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| type | string | Yes | Describe the event and when or how it will be triggered. If a method involves multiple events, describe them separately.<br>**Example 1 (single event):**<br>Type of the event. The `'play'` event is triggered when the `play()` API is called and audio playback starts.<br>**Example 2 (multiple events)**:<br>Type of the event. The following events are supported:<br/>- 'play': triggered when the play() API is called and audio playback starts.<br/>- 'dataLoad': triggered when the audio data is loaded, that is, when the `src` attribute is configured.<br/>- 'finish': triggered when the audio playback is finished. | | type | string | Yes | Describe the event and when or how it will be triggered. If a method involves multiple events, describe them separately.<br>**Example 1 (single event):**<br>Type of the event. The **'play'** event is triggered when the **play()** API is called and audio playback starts.<br>Example 2 (multiple events):<br>Type of the event. The following events are supported:<br/>- **'play'**: triggered when the **play()** API is called and audio playback starts.<br>- **'dataLoad'**: triggered when the audio data is loaded, that is, when the **src** attribute is configured.<br>- **'finish'**: triggered when the audio playback is finished. |
| callback | Callback\<[CustomType](#customtype)> | No | Describe the parameter. The instructions are the same as those provided under [Methods](#methods). | | callback | Callback\<[CustomType](#customtype)> | No | Describe the parameter. The instructions are the same as those provided under [Methods](#methods). |
**Return value** (This part is optional. Delete it if there is no return value.) **Return value** (This part is optional. Delete it if there is no return value.)
...@@ -231,7 +249,7 @@ Describe the method. For details, see the fourth and fifth points in "Writing In ...@@ -231,7 +249,7 @@ Describe the method. For details, see the fourth and fifth points in "Writing In
> *Writing Instructions* > *Writing Instructions*
> >
> 1. This section is optional. Delete it if there is no class or interface. If there are multiple classes or interfaces, describe them in multiple level-2 headings, prefixed with `##` followed by a space. > 1. This section is optional. Delete it if there is no class or interface. If there are multiple classes or interfaces, describe them in multiple level-2 headings, prefixed with **##** followed by a space.
> >
> 2. Use the actual class or interface name as the level-2 heading. > 2. Use the actual class or interface name as the level-2 heading.
> >
...@@ -259,9 +277,9 @@ Describe the class or interface. If there are usage restrictions, describe them ...@@ -259,9 +277,9 @@ Describe the class or interface. If there are usage restrictions, describe them
> *Writing Instructions* > *Writing Instructions*
> >
> 1. This section is optional. Delete it if there is no enum. If there are multiple enums, describe them in separate level-2 headings, prefixed with `##` followed by a space. > 1. This section is optional. Delete it if there is no enum. If there are multiple enums, describe them in separate level-2 headings, prefixed with **##** followed by a space.
> >
> 2. Use the actual enum name as the level-2 heading, for example, `BatteryHealthState`. > 2. Use the actual enum name as the level-2 heading, for example, **BatteryHealthState**.
Provide a brief description of the enum type. Example: Enumerates the charger types. Provide a brief description of the enum type. Example: Enumerates the charger types.
...@@ -273,17 +291,43 @@ Provide a brief description of the enum type. Example: Enumerates the charger ty ...@@ -273,17 +291,43 @@ Provide a brief description of the enum type. Example: Enumerates the charger ty
## CustomType ## CustomType
> *Writing Instructions*
>
> This section is optional. Delete it if there is no custom type. It corresponds to **Interface** in the .d.ts file.
The following is an example of the custom type of a key-value pair. The following is an example of the custom type of a key-value pair.
**System capability**: SystemCapability.*A.B* (This part is mandatory.) **System capability**: SystemCapability.*A.B* (This part is mandatory.)
| Name | Type | Readable| Writable| Description | | Name | Type | Mandatory | Description |
| ------------ | ------------------- | ---- | ---- | ------------------------------------------------------------ | | ------------ | ------------------- | ---- | ------------------------------------------------------------ |
| parameterUrl | string | Yes | Yes | Media output URI. Supported:<br>1. Relative path whose protocol type is `internal`. Example: <br/>Temporary directory: internal://cache/test.mp4<br>2. Absolute path. Example:<br/>file:///data/data/ohos.xxx.xxx/files/test.mp4| | parameterUrl | string | Yes | Media output URI. Supported:<br>1. Relative path whose protocol type is **internal**. Example: <br/>Temporary directory: internal://cache/test.mp4<br>2. Absolute path. Example:<br/> file:///data/data/ohos.xxx.xxx/files/test.mp4|
| parameterOne | [CustomEnum](#enums) | Yes | Yes | Describe the attributes. The requirements are similar to those for the parameter description. | | parameterOne | [CustomEnum](#enums)| No | Describe the attributes. The requirements are similar to those for the parameter description. |
## Type
> *Writing Instructions*
>
> 1. This section is optional. Delete it if there is no type. It corresponds to **type** in the .d.ts file.
>
> 2. By default, use **Type** as the heading of the first column. If all the values are specific strings, change the heading of the first column to **Value**.
>
> 3. If a type is of a custom type, create a link to the corresponding interface or enum.
Provide a brief description of the union type. Example: Enumerates the value types.
**System capability**: SystemCapability.*A.B* (This part is mandatory.)
| Type | Description |
| -----------| ---------------------------- |
| number | The value is a number. |
| string | The value is a string. |
## Change History ## Change History
| Change Description| Date| | Change Description | Date |
| -------- | ---- | | ----------------------------------------------------------------------- | ------------ |
| 1. Provided the general writing instructions in a table.<br>2. Added the description about how to reference an image in "Upload path".<br>3. Added the "Document structure" item to describe the sequence of nodes in the API reference document.<br>4. Added the description for multiple permissions in "Permission description".<br>5. Added the description of @FAModelOnly and @StageModelOnly in the API reference document.<br>6. Added the description of asynchronous methods (callback and promise).<br>7. Added the standards and specifications for the sample code programming language.<br>8. Added the standard format for links used in the API reference document.<br>9. Added examples for "Module description".<br>10. Added the description of on and off subscription methods.<br>11. Updated the description of @syscap.<br>12. Updated the description of @systemapi. Now only the sentence "This is a system API." is used. <br>13. Deleted the MR version description.|2022-06-24| | 1. Provided the general writing instructions in a table.<br>2. Added the description about how to reference an image in "Upload path".<br>3. Added the "Document structure" item to describe the sequence of nodes in the API reference document.<br>4. Added the description for multiple permissions in "Permission description".<br>5. Added the description of @FAModelOnly and @StageModelOnly in the API reference document.<br>6. Added the description of asynchronous methods (callback and promise).<br>7. Added the standards and specifications for the sample code programming language.<br>8. Added the standard format for links used in the API reference document.<br>9. Added examples for "Module description".<br>10. Added the description of on and off subscription methods.<br>11. Updated the description of @syscap.<br>12. Updated the description of @systemapi. Now only the sentence "This is a system API." is used. <br>13. Deleted the MR version description. | 2022/6/24 |
| Added the error code description. | 2022/10/11 |
| 1. Added the template for **constant** and **type**.<br> 2. Modified the table of the custom type **interface** by deleting the **Readable** and **Writable** columns and adding the **Mandatory** column, for consistency with the content of the .d.ts file.<br> 3. Added the deprecated description for APIs with both the initial version and deprecated version. |2022/11/22 |
<!--no_check--> <!--no_check-->
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Background ## Background
* API type: [Public API | Test API | HDI] * API type: [Public API | System API | Test API | HDI]
* API requirement source: * API requirement source:
* API usage scenario: * API usage scenario:
* Belonging subsystem: * Belonging subsystem:
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
## Introduction ## Introduction
To help the OpenHarmony ecosystem develop and evolve in a healthy and orderly way, this Charter defines the governance process and lifecycle (creation, change, deprecation, and deletion) of OpenHarmony APIs. It also specifies basic design requirements of OpenHarmony APIs. To help the OpenHarmony ecosystem develop and evolve in a healthy and orderly way, this Charter defines the governance process and lifecycle (create, change, deprecate, and delete) of OpenHarmony APIs. It also specifies basic design requirements of OpenHarmony APIs.
This Charter is formulated by the API SIG and approved by the PMC for release. Any revision to this Charter will be released only after being reviewed by the API SIG and approved by the PMC. This Charter is formulated by the [API SIG](https://www.openharmony.cn/SIG/api/) and approved by the [PMC](https://www.openharmony.cn/community/pmc/) for release. Any revision to this Charter will be released only after being reviewed by the API SIG and approved by the PMC.
## Overview ## Overview
...@@ -12,23 +12,23 @@ This Charter is formulated by the API SIG and approved by the PMC for release. A ...@@ -12,23 +12,23 @@ This Charter is formulated by the API SIG and approved by the PMC for release. A
The OpenHarmony software stack contains multiple roles. Naturally, OpenHarmony APIs have multiple types. The OpenHarmony software stack contains multiple roles. Naturally, OpenHarmony APIs have multiple types.
<img src="figures/API-Category.png" width="800" /> ![](figures/API-Category.png)
Different types of APIs have different compatibility requirements, as described in the table below. Different types of APIs have different compatibility requirements, as described in the table below.
| Type | Prepared By | Used By | Compatibility Requirement | Guarding Method | | Type| Prepared By| Used By| Compatibility Requirement| Guarding Method|
|--- |--- |--- |--- |--- | |---|---|---|---|---|
| Public API | System and framework | All application developers | Five API versions | X test suite (XTS) | | Public API | System and framework| All application developers| 5 API versions| X test suite (XTS)|
| Test API | Test framework | All application developers | Three API versions | To be built | | Test API | Test framework | All application developers| 3 API versions| To be built|
| System API | System and framework |System application developers |Not guaranteed | To be built | | System API | System and framework|System application developers|Not guaranteed| To be built|
| HDI | HDF | System services | Four API versions | XTS | | HDI | HDF| System services| 4 API versions| X test suite (XTS)|
| Driver API | HDF | Driver developers | Not guaranteed | None | | Driver API | HDF | Driver developers| Not guaranteed| None|
| Inner API | System parts | System parts | Not guaranteed | None | | Inner API | System parts| System parts| Not guaranteed| None|
The APIs are described as follows: The APIs are described as follows:
* Public API: APIs provided for all application developers. * Public API: APIs provided for all application developers.
* Test API: APIs provided for developers to test their applications. * Test API: APIs used for testing. They can be used only in the test phase.
* System API: APIs provided for privileged system applications. Common applications cannot use these APIs. * System API: APIs provided for privileged system applications. Common applications cannot use these APIs.
* HDI: APIs that describe hardware capabilities. * HDI: APIs that describe hardware capabilities.
* Driver API: APIs provided for driver developers. * Driver API: APIs provided for driver developers.
...@@ -41,6 +41,7 @@ OpenHarmony aims to build a next-generation Operating System (OS) for the Intern ...@@ -41,6 +41,7 @@ OpenHarmony aims to build a next-generation Operating System (OS) for the Intern
* C/C++ * C/C++
* JavaScript * JavaScript
* TypeScript * TypeScript
* ArkTS
The content described in this Charter is irrelevant to the programming language in use. Regardless of the programming language, APIs must comply with this Charter while meeting the programming language requirements. The content described in this Charter is irrelevant to the programming language in use. Regardless of the programming language, APIs must comply with this Charter while meeting the programming language requirements.
...@@ -48,25 +49,25 @@ The content described in this Charter is irrelevant to the programming language ...@@ -48,25 +49,25 @@ The content described in this Charter is irrelevant to the programming language
### Roles and Responsibilities ### Roles and Responsibilities
| Role | Responsibilities in API Governance | |**Role**|**Responsibilities in API Governance**|
| --- | --- | | - | - |
| Contributor | Commit API code and design documents. | |Contributor|Commit API code and design documents.|
| Committer | Review the code and submit a pre-review comment on an API commit. | |Committer|Review the code and submit a pre-review comment on an API commit.|
| Domain SIG | Comment on the commits of new API code, so the passed commits can be merged. <br/>Submit a pre-review comment on updated API code. | |Domain SIG| Comment on the commits of new API code, so the passed commits can be merged.<br>Provide pre-review comments on updated API code.|
| API SIG | Comment on updated API code. | |API SIG|Comment on updated API code.|
| PMC | Release API version plans. Review amendments of this Charter, revise the terms, and publish this Charter. | |PMC|Release API version plans. Review amendments of this Charter, revise the terms, and publish this Charter.|
### API Review Process ### API Review Process
The API review process is as follows: The API review process is as follows:
<img src="figures/API-Workflow.png" width="800" /> ![](figures/API-Workflow.png)
The main process is as follows: The main process is as follows:
1. Initiate API review and commit code (contributor). If any APIs are added or modified, the contributor must additionally submit an API review application to specify the API requirement source, usage scenario, permission design, and privacy protection design. For details, see "API Review Application Composites" below. To avoid rework, the contributor can send an email to submit the API design document to the committer, domain SIG, and API SIG for pre-review before the formal API review application and code commit. 1. Initiate API review and commit code (contributor). If any APIs are added or modified, the contributor must additionally submit an API review application to specify the API requirement source, usage scenario, permission design, and privacy protection design. For details, see "API Review Application Composites" below. To avoid rework, the contributor can send an email to submit the API design document to the committer, domain SIG, and API SIG for pre-review before the formal API review application and code commit.
1. Review code (committer). After the code review is approved, the committer should submit the APIs to the domain SIG. If the API code involves multiple domains, they should be submitted to the committers of the corresponding domains. The next review step can be performed only after all committers review and approve the code. 1. Review code (committer). After the code review is approved, the committer should submit the APIs to the domain SIG. If the API code involves multiple domains, they should be submitted to the committers of the corresponding domains. The next review step can be performed only after all committers review and approve the code.
1. Review APIs (domain SIG). The code of new APIs can be merged only after being reviewed and approved by the domain SIG. If there are changes to existing APIs, the domain SIG should submit them to the API SIG. If the new APIs involve multiple domains, they should be submitted to the SIGs of the corresponding domains. The code can be merged after being reviewed and approved by one of the domain SIGs. If the changed APIs involve multiple domains, they should be submitted to the SIGs of the corresponding domains. The next review step can be performed only after all domain SIGs approve the APIs. 1. Review APIs (domain SIG). The code of new APIs can be merged only after being reviewed and approved by the domain SIG. If there are changes to existing APIs, the domain SIG should submit them to the API SIG. If the new APIs involve multiple domains, they should be submitted to the SIGs of the corresponding domains. The code can be merged after being reviewed and approved by one of the domain SIGs. If the changed APIs involve multiple domains, they should be submitted to the SIGs of the corresponding domains. The next review step can be performed only after all domain SIGs approve the APIs.
1. Review API changes (API SIG). The code of changed APIs can be merged only after being reviewed and approved by the API SIG. 1. Review API changes (owner: API SIG): The code of changed APIs can be merged only after being reviewed and approved by the API SIG.
1. The review is complete. 1. The review is complete.
### API Review Application Composites ### API Review Application Composites
...@@ -87,75 +88,11 @@ For changed APIs, except the preceding operations, you must: ...@@ -87,75 +88,11 @@ For changed APIs, except the preceding operations, you must:
2. (Mandatory) Describe the change impact, substitute APIs, and corresponding application adaptation solution. 2. (Mandatory) Describe the change impact, substitute APIs, and corresponding application adaptation solution.
3. (Mandatory) Update the ChangeLog file. Update the API-diff file (Mandatory if JS or native API changes are involved.) 3. (Mandatory) Update the ChangeLog file. Update the API-diff file (Mandatory if JS or native API changes are involved.)
## API Design Requirements ## API Lifecycle and Compatibility Requirements
OpenHarmony APIs will evolve in the form of API versions. Each version goes through the release period shown in the following figure,
### Consistency
1. Concept: Scenario-based service models must be abstracted to form coherent, consistent, and self-consistent OpenHarmony user program models and service concepts. which also demonstrates the compatibility requirements for the APIs in different periods.
1. Term: Service terms must be nouns. Multiple nouns with similar semantic meanings are not allowed to represent the same service object. Similarly, to avoid confusion, it is not allowed to use the same noun or linguistically close nouns for different service objects.
1. Operation: Every operation action must be expressed using a unique verb.
1. Parameter sequence: The location and sequence of the same parameter or parameter sequence in multiple APIs must be the same.
1. Mechanism and algorithm: The communication mechanism, calling mode, authentication mechanism, and encryption algorithm must be consistent.
1. API reference, demo, and template style: The layout and usage must be consistent.
### Ease to Use
Design APIs from the perspective of their users rather than providers.
1. Readability: API naming and features must be easy to understand.
1. Ease of use: Provide easy-to-use APIs by reducing unnecessary coupling between APIs, avoiding dependencies on the calling sequence of multiple unrelated APIs, and avoiding calling multiple methods from different packages, modules, or classes at the same time when using a single feature.
1. Avoiding misleading: Provide capabilities complying with user expectations to avoid misuse.
1. Provide required API reference documents.
### Naming
1. Be able to express the capabilities clearly. Use full descriptive words.
1. Avoid misleading. Misleading names are more harmful than ill-stated ones.
1. Use words with clear meaning. Do not use words with common meanings, such as info, data, and object.
1. The larger the scope is, the more precise the naming should be.
1. Eliminate or minimize the use of abbreviations. Common terms in the industry must comply with industry conventions and can be abbreviated.
1. Bundle name/Module name/Namespace prefix convention:
1. JS API module name: @ohos.\*.
2. Native API namespace: namespace OHOS.\*.
3. If external open-source code is referenced, retain the original bundle name, module name, or namespace, or replace the bundle name according to the preceding rules.
1. The bundle name, module name, and namespace must contain 2 to 4 segments. One word is recommended for each segment, and a maximum of two words are allowed.
1. The class name, method name, function name, member variable, and variable name cannot exceed four words.
### Permission Control
1. Completeness: All behaviors across application sandboxes must be limited by permission control.
1. Optimal granularity: One permission protects only one type of object. Developers only need to apply for one permission to access an interface.
1. Clearness: The protected object, permission scope, and sensitivity level must be clearly specified in the permission definition.
1. Minimum scope: A permission is assigned only to applications that have service requirements to minimize permission scope.
### Privacy Protection
1. The response returned from API calling should contain only necessary information.
1. Mobile phone users' personal data cannot be obtained through API calling unless required permissions are assigned by users.
1. In case that an API is called by multiple applications, if personal data needs to be disclosed to the API to be called, the caller must specify the disclosed data type, data receiver, and data use purpose in the privacy statement.
1. When an API needs to access sensitive user data (such as phone calls, contacts, and media content), the system picker mechanism must be used to prevent the API from accessing the data through sensitive permission application.
1. API openness does not allow unrelated features.
### Documentation
1. The API reference document must be written in English.
1. The API reference document must include the brief and detailed descriptions of modules and packages.
1. The API reference document must include brief descriptions of classes, methods, interfaces, enumerations, and member variables.
1. The API reference document can optionally include detailed descriptions of classes, methods, interfaces, enumerations, and member variables.
1. The API reference document must contain descriptions of all input parameters of every method or interface.
1. If a method or interface has a return value, the API reference document must contain a return value description.
1. If an exception may be thrown during the execution, the API reference document must contain the exception description.
1. The starting version of the API (annotated with @since) must be included.
1. The version of a module or class (annotated with @version) is optionally included.
1. If incompatible API changes are involved, both API-Diff and ChangeLog files must be delivered.
### Compatibility
1. The API compatibility requirements in descending order are as follows: contract compatibility > binary-code compatibility > source-code compatibility.
1. Source-code compatibility: After version evolution, the existing source code can be compiled properly.
1. Binary-code compatibility: After version evolution, the existing programs can be linked to and run properly without recompilation.
1. Contract compatibility: also called semantic compatibility. After version evolution, the original program behaviors remain unchanged.
1. API backward compatibility must meet binary-code compatibility requirements. Exceptions must be reviewed by the API SIG and approved by the PMC. Common API changes that break binary-code compatibility include:
1. Delete any API elements.
1. Reduce the visibility of a method. For example, change from protected to private or from public to protected.
1. Change the class type. For example, change from an abstract class to a non-abstract class, or from an interface class to a non-interface class.
1. Change the method prototype. For example, change the return value type, input parameter sequence, or input parameter type.
1. Change the member attributes. For example, change the member attribute from non-final to final or from non-static to static.
1. Do not modify APIs with the same prototype but incompatible features. You can modify APIs by deprecating old APIs and adding new ones with restrictions.
1. Depending on the release type, the API lifecycle and compatibility requirements are as follows:
![](figures/API-Lifecycle.png) ![](figures/API-Lifecycle.png)
...@@ -163,7 +100,7 @@ Design APIs from the perspective of their users rather than providers. ...@@ -163,7 +100,7 @@ Design APIs from the perspective of their users rather than providers.
1. Canary versions are compatible with the previous Release version. 1. Canary versions are compatible with the previous Release version.
1. Different Canary versions of the same API version are not required to keep compatible. 1. Different Canary versions of the same API version are not required to keep compatible.
1. Beta version: publicly released beta version, which cannot ensure API stability. 1. Beta version: publicly released beta version, which cannot ensure API stability.
1. Beta versions are compatible with the previous Release version. 1. Canary versions are compatible with the previous Release version.
1. Beta versions are not compatible with the early Canary versions of the same API version. 1. Beta versions are not compatible with the early Canary versions of the same API version.
1. Different Beta versions of the same API version are not required to keep compatible. 1. Different Beta versions of the same API version are not required to keep compatible.
1. The APIs are frozen after the API Stable version is released. API additions or changes are not allowed for later Beta versions. 1. The APIs are frozen after the API Stable version is released. API additions or changes are not allowed for later Beta versions.
...@@ -173,33 +110,6 @@ Design APIs from the perspective of their users rather than providers. ...@@ -173,33 +110,6 @@ Design APIs from the perspective of their users rather than providers.
1. Provide substitute APIs. 1. Provide substitute APIs.
1. Retain the deprecated APIs in at least five API versions released since the deprecation. 1. Retain the deprecated APIs in at least five API versions released since the deprecation.
### Performance ### API Design Specifications
1. Respond in a timely manner to avoid callers waiting. If an API call takes a long time, use an asynchronous API.
2. Make sure that the impact of API call timing and frequency on the RAM usage is under control.
3. Make sure that the impact of API call timing and frequency on the power consumption is under control.
4. Resources must be released in a timely manner when APIs that use resources are called. A fault tolerance mechanism must be provided for abnormal scenarios to ensure timely resource release.
### Power Consumption
1. Evaluate the impact of the API call timing and frequency on power consumption, and optimize the design if there is any impact.
2. Make sure that the power consumption does not deteriorate during version evolution.
### Reliability
1. APIs shall not crash due to external input (such as input parameters, system status, and external data), internal status, or data exceptions. It must return a specific error code or throw a predefined exception.
2. It must be specified whether an API is called synchronously or asynchronously. If an API is called synchronously, specify the timeout duration or allow the caller to set the timeout duration to prevent service response failure caused by call suspension.
3. APIs must support multi-thread reentrant.
4. APIs must meet the idempotence requirement, which means that the same effect should be obtained for one or multiple API call requests with the same service meaning (except that API call depends on external resource changes). For reentrant API call, avoid introducing time-varying factors, such as system ticks, static variables, and global variables without mutual exclusion protection. For repeated call of the same client, **contextID**, **clientToken**, and **sequenceNo** can be used as input parameters.
5. The lifecycle of objects created in APIs must have an end to prevent object resource leakage.
6. The APIs must specify the maximum number of retries allowed after a call failure.
### Testing
1. Automatic API test cases must be delivered for all new APIs.
2. Use a test case for each single scenario. One test case covers a single function of an API, simplifying the code logic of each single test case.
3. The test case execution must be efficient. The execution time of each test case must be limited to milliseconds.
4. Automatic API test cases must be available for all APIs.
5. Assertions with functional logic are required in addition to the capability of throwing exceptions.
### Programming Languages
Regardless of the programming language in use, APIs must comply with the OpenHarmony programming language specifications. For details, see [OpenHarmony API Design Specifications](OpenHarmony-API-quality.md).
# OpenHarmony API Design Specifications
**Change History**
| Version | Prepared By | Release Date | Description |
| -------------- | ------------------- | ---------- | ---------- |
| v0.1| OpenHarmony API SIG | November 2022| Trial version.|
## Purpose
An API is a definition provided by a software implementer for developers on the programming UI to reflect the capability scope of a software entity.
The quality of APIs greatly affects developer experience.
To deliver a sound developer experience and promote the healthy development of the OpenHarmony ecosystem, the API SIG formulates the OpenHarmony API design specifications.
## Scope
OpenHarmony APIs are classified into public APIs (open to third-party applications) and system APIs (available only for system applications).
The design specifications are effective for both types of APIs, regardless of the programming language in use.
For details about the API classification, see [OpenHarmony API Governance Charter](OpenHarmony-API-governance.md).
## API Design Objectives
A good API design must meet the following requirements:
* Operational: An API must be able to implement the capability it claims to offer. This is the fundamental requirement.
* Expressive: By calling an API, the caller can clearly express what they want to do.
* Simple: An API must be easy to learn and use, and not prone to errors.
* Predictable: An API must always complete its mission according to the definition. If the definition does not contain errors or exceptions, no error or exception should occur regardless of how many times the API is called. If an error or a failure may occur, describe the error or failure in the definition and return the corresponding error at the correct time.
You must understand the following when designing APIs:
* The stability and consistency of APIs take precedence over the API quantity.
* A better API name is the one that is easy to understand, not a shorter one.
* APIs should be encapsulated to prevent too much information from being exposed.
From the perspective of developers, a well-designed API has different features in different phrases.
* In the learning phase
* Easy to understand
* Easy to use
* In the development phase
* Expressive
* Simple
* Predictable
* In the maintenance phase
* Stable
* Easy to maintain
## API Design Overview
To make the rules as universal as possible, the specifications do not involve programming language differences or coding specifications. You need to comply with the corresponding requirements for them.
This document provides pre-release review specifications and post-release evaluation specifications.
* The pre-release review specifications are the basic requirements for APIs. Any API must meet these requirements before passing the release review.
* The post-release evaluation specifications require the API providers to keep an eye on the APIs after they are published. Even though an API has met all the pre-release review specifications, it may not be perfect. On-time review after the release helps further improve the API quality.
The following lists all the rules that you should comply with during API design. The list is provided for quick indexing, and the detailed description is provided in the following sections.
Every OpenHarmony API provider should be familiar with these rules.
### Pre-release Review Specifications
* Usability
* Rule 1: Coding rules compliant
* Rule 2: Grammatically correct
* Rule 3: Proper use of abbreviations
* Rule 4: Accurate use of words in pairs
* Rule 5: Accurate use of design or architecture patterns
* Rule 6: No controversial names
* Rule 7: Appropriate parameter types
* Rule 8: Appropriate parameter quantity
* Rule 9: Appropriate parameter sequence
* Rule 10: Complete return value definition
* Rule 11: Appropriate exception definition
* Rule 12: Positive expressions
* Rule 13: Reducing the possibility of errors
* Rule 14: No sequential coupling
* Rule 15: Accurate logic expression
* Rule 16: Encapsulation welcomed
* Rule 17: Single responsibility
* Availability
* Rule 18: Reliability
* Rule 19: Complete functionalities
* Rule 20: Permission and privacy protection
* Rule 21: Concurrent environment
* Rule 22: Resource management closure
* Rule 23: Retry logic
* Rule 24: Idempotence requirements
* Rule 25: Device universality
* Consistency
* Rule 26: Consistent terms and concepts
* Rule 27: Consistent inter-device behavior
* Rule 28: Consistent version evolution
* Rule 29: Consistent naming style
* Rule 30: Consistent parameter sequence
* Rule 31: Consistent synchronous/asynchronous style
* Compatibility
* Rule 32: Version compatibility
* Rule 33: Backward binary-code compatibility
* API references
* Rule 34: Basic descriptions for modules, namespaces, classes, and functions
* Rule 35: Clear description of use cases
* Rule 36: Accurate API description
* Rule 37: Accurate parameter description
* Rule 38: Accurate return value/exception description
* Rule 39: Complete meta information
* Rule 40: Consistent style
* Organization mode
* Rule 41: Reasonable layering
* Rule 42: Proper module division
* Rule 43: API reference document available (as part of the API)
* Quality related
* Rule 44: Performance requirements met
* Rule 45: Proper power consumption
* Rule 46: Testable
* Rule 47: Environmentally adaptable
### Post-release Evaluation Specifications
* Stability
* Rule 48: Minimized rate for deprecated or changed APIs
* Security
* Rule 49: No abuse of APIs
* Rule 50: No exploitation of APIs
* Maintainability
* Rule 51: Evolution support
* Rule 52: Consistent behavior after feature expansion
* Rule 53: Documents updated accordingly
* Irreplaceability
* Rule 54: Orthogonal design
* Feedback from developers
* Rule 55: Developer feedback noticed
## Description of Pre-release Review Specifications
### Usability
Usability should be considered in any design. During the design of OpenHarmony APIs, consider usability from the following aspects:
#### Naming
* **Rule 1: Coding rules compliant**
The definition of an API must comply with the coding rules of the project to which the API belongs, for example, the rules for uppercase and lowercase letters, underscores (_), hyphens (-), and prefixes.
You can refer to the following coding rules for the OpenHarmony project:
* [JavaScript Coding Style Guide](../contribute/OpenHarmony-JavaScript-coding-style-guide.md)
* [C Coding Style Guide](../contribute/OpenHarmony-c-coding-style-guide.md)
* [C++ Coding Style Guide](../contribute/OpenHarmony-cpp-coding-style-guide.md)
* [C&C++ Secure Coding Guide](../contribute/OpenHarmony-c-cpp-secure-coding-guide.md)
* [HDF Driver Coding Guide](../contribute/OpenHarmony-hdf-coding-guide.md)
* **Rule 2: Grammatically correct**
API names must be in English. Generally, a class is named using a noun, for example, **exampleManager**, **exampleService**, and **exampleAnimation**. A function is named using a verb or verb-object structure, for example, **start()**, **createUser()**, and **startBoot()**.
It is incorrect to name a class **Start** or a function **ball()**.
In terms of verbs, use transitive verbs, transitive verbs, and verb tenses correctly. For example, you can name events **transferStarted()** and **renderDone()**.
* **Rule 3: Proper use of abbreviations**
Avoid abbreviations as much as possible, as abbreviations are difficult to understand or even cause misunderstanding.
Use only abbreviations that are well known. Do not make your own abbreviations.
* **Rule 4: Accurate use of words in pairs**
Many words can be used to express the same meaning. The table below lists some examples.
| Word | Synonym |
| ----- | -------------------------------------------------- |
| send | deliver, dispatch, announce, distribute, route |
| find | search, extract, locate, recover |
| start | launch, create, begin, open |
| make | create, set up, build, generate, compose, add, new |
When naming APIs, try to use words in pairs, rather than any synonym.
For example, if **add** is used for an API name, **remove** is a better option than **destroy** for its counterpart; if **increase** is used, **decrease** is a better option that **reduce**.
The table below lists common words in pairs that can be used in API names.
| Word | Counterpart |
| -------- | -------- |
| add | remove |
| increase | decrease |
| open | close |
| begin | end |
| insert | delete |
| show | hide |
| create | destroy |
| lock | unlock |
| source | target |
| first | last |
| min | max |
| start | stop |
| get | set |
| next | previous |
| up | down |
| new | old |
* **Rule 5: Accurate use of design or architecture patterns**
The design or architecture pattern is actually the jargon of the software industry. Use them correctly to avoid misunderstanding.
If your API contains words such as **Strategy**, **Builder**, **Factory**, and **Singleton**, make sure you understand these design patterns accurately and use them correctly.
When your API uses a specific pattern, use the terms defined in that pattern. Do not change the world class or sequence.
* **Rule 6: No controversial names**
Do not use controversial names, including but not limited to any words that violate the laws and regulations, cause religious disputes, or lead to racial discrimination, as well as dirty words.
Considering that OpenHarmony is designed to empower a variety of industries, you need to pay more attention when deciding whether a name is controversial.
#### Parameters
* **Rule 7: Appropriate parameter types**
Typically, it is better to use class type parameters than simple type parameters.
For example, the following APIs seem to be fine at first glance:
* `addPerson(string id, string name, int age)`
* `removePerson(string id, string name, int age)`
* `modifyPerson(string id, string name, int age)`
However, they are not friendly for expansion. If you define the parameters using the class type **Person**, it would be easy to add new parameters. What's more, you do not need to make any changes to the APIs.
Class type parameters reduce the parameter quantity in an API, thereby making the API easy to be remembered.
* **Rule 8: Appropriate parameter quantity**
Use 7 or less parameters in an API. In most cases, use 3 to 5 parameters in an API, for easy of use.
The number of parameters in an API should not exceed 10 in any case. If an API contains more than 10 parameters, the possible cause is that the type is not well encapsulated or the API implementation logic is too complex. If this is the case, consider to use another form.
* **Rule 9: Appropriate parameter sequence**
In some programming languages, parameters in an API are often organized in the order of input parameters followed by output parameters.
If you further sort the parameters based on their logical relationship and importance, it is easier for developers to memorize and use the parameters.
You should place optional parameters after mandatory parameters, and place callback functions at the end. For example, in the **fs.readFile** API, the **path** parameter is mandatory, and **encoding** and **flag** have default values.
```js
fs.readFile(path[, options], callback)
```
```js
fs.readFile('/etc/passwd', (err, data) => {
if (err) throw err;
console.log(data);
});
fs.readFile('/etc/passwd', {
encoding: 'utf-8',
flag: 'r+'
}, (err, data) => {
if (err) throw err;
console.log(data);
});
```
#### Return Values
* **Rule 10: Complete return value definition**
The definition of return values must be complete. This means that you need to consider exceptions in addition to normal situations so developers will be able to handle the exceptions.
Example:
* For a return value of the number type, define the value range and the situation in which an extreme value occurs.
* For a return value of the Boolean type, define when **true** and **false** will be returned.
* For a return value of the array or set type, define when **null** or an empty set will be returned.
* For a return value of the enum type, define when each enumerated value will be returned.
* **Rule 11: Appropriate exception definition**
An exception is returned when, for example, an input parameter is invalid or the API implementation logic is incorrect.
For the same module or service, there should be a unified definition for the situations in which an error value will be returned and an exception will be thrown.
In addition, the same exception type should be used for the same exception.
Consistency greatly reduces the difficulty in using the API and the probability of errors.
#### Others
You are advised to adhere to the following rules to make your APIs easy to use.
* **Rule 12: Positive expressions**
Positive expressions enable developers to think less.
When naming APIs, use positive words instead of negative ones.
The following is a counter example:
```js
if (!isNotAccessible() || !isNotWritable() || !isNotPrintable())
```
The following is recommended:
```js
if (isAccessible() && isWritable() && isPrintable())
```
* **Rule 13: Reducing the possibility of errors**
Most API use errors are caused by parameter passing errors.
For example, for the following function, both the second and third parameters are Boolean values. When calling the function, developers may find it difficult to remember the parameter values correctly.
```js
declare function findString(text: string, isForward: boolean, isCaseSensitive: boolean): string;
```
You can define enums to reduce the difficulty.
```js
enum SearchDirection {
FORWARD,
BACKWARD
};
enum CaseSensitivity {
SENSITIVE,
INSENSITIVE
};
declare function findString(text: string, direction: SearchDirection, sensitivity: CaseSensitivity): string;
```
The use of enums instead of Boolean values and integers helps reduce the possibility of API use errors.
Combining multiple parameters into a type also reduces the possibility of parameter passing errors.
* **Rule 14: No sequential coupling**
Ensure high cohesion and low coupling during software design, especially for large projects.
Coupling indicates the dependency between software modules. A too deep coupling often means a poor architecture design.
According to the static software structure or hierarchical architecture diagram, if there are few dependencies between modules but obvious API calling directions between upper and lower layers, it is a good design. On the contrary, if there are complex inter-module dependencies or call chains with opposite directions between the upper and lower layers, the structure is poor.
Among all the types of coupling, sequential coupling must be noted for APIs. Sequential coupling means that the APIs in a class must be called in a specific sequence in order to work properly.
The following is an example of sequential coupling:
```js
doSomethingFirst()
doSomethingSecond()
doSomethingThird()
```
Sequential coupling poses high requirements on the callers and is prone to incorrect use.
To avoid sequential coupling, you can use the **template method** design pattern.
* **Rule 15: Accurate logic expression**
Some APIs, for example, **getUserAccount()**, are used to query information, whereas others, for example, **createUserAccount()**, are used to modify data.
Never use an API that seems to be used for query to carry out data modification. It will confuse developers.
The name of an API should express everything it does, with no concealing. Only in this way can it be easier for developers to understand what the API does when reading the code.
If an API implements too many features and cannot be named in a few words, it usually means that you should split the API into multiple APIs, to make it cohesive enough.
Do not assume that developers have the same background information as you do.
For example, you may name a field **language** and believe all the readers know that you are talking about the programming language. In fact, someone might wonder whether you are talking about the language of speech. Name it **programmingLanuage** will eliminate the misunderstanding.
However, do not go to another extreme. If the class name or namespace name contains a prefix, do not repeat it in the function.
* **Rule 16: Encapsulation welcomed**
Encapsulation is a key concept in object-oriented programming.
Encapsulation means that system capabilities should be encapsulated as simple APIs, with implementation details hidden as much as possible.
It is like an iceberg. No matter how large the portion submerged in water is, the visible portion above water should be small enough and concise enough. This is a user-friendly interface.
Encapsulation makes it easy for developers to use, while making fewer errors. For example, an electronic engineer connects all the electric wires in the room and leaves only one button to users. This is a good encapsulation. It prevents users from the need to understand the complex circuit structure and protect them from electric shocks.
* **Rule 17: Single responsibility**
An API should try to do only one thing (a single core responsibility) as much as possible. Example:
```js
// Not recommended
view.fetchDataAndRender(url, templete);
// Recommended
let data = view.dataManager.fetchData(url);
view.render(data, templete);
```
Single responsibility enables developers to use APIs in the minimum unit as required. It also enables developers to encapsulate the service logic based on their service requirements.
In some cases, the rule "single responsibility" may conflict with "encapsulation welcomed". For example, if there are many APIs with a single capability, developers have to notice the calling details for each API.
If this is the case, determine the level of the capability provided by your API based on the encapsulation level. To provide the capability for a high-level caller, you can encapsulate the APIs. To provide the capability for a low-level caller, you can provide separate APIs.
### Availability
* **Rule 18: Reliability**
The APIs provided by the operating system must be fully reliable.
Reliability does not mean that every call has to be successful. If resources are used up, providing a proper return value or exception is also an implementation of reliability.
For every API, all the possible situations must be accurately defined, and the work should be completed according to the defined behavior in the corresponding situation.
Unreliable behavior includes failure to return a value as scheduled or causing application exceptions for no reason.
* **Rule 19: Complete functionalities**
When planning a feature or capability, consider the completeness of functionalities. For example, a process should not be interrupted or an option should not be missing within the supported scope. This requires you to perform sufficient verification and deduction when designing the APIs.
Even if the comprehensive features of an operating system are gradually provided through a series of iterations across years, every specific version should provide closed and self-consistent capabilities. To achieve this goal, you must define clear boundaries for each iteration.
* **Rule 20: Permission and privacy protection**
Permission control and data protection must be provided for any API that involves user data or user privacy.
Comply with the following principles for permission control:
1. Completeness: All behaviors across application sandboxes must be limited by permission control.
2. Optimal granularity: One permission protects only one type of object. Developers only need to apply for the permission of the minimum granularity to access an API.
3. Clearness: The protected object, permission scope, and sensitivity level must be clearly specified in the permission definition.
4. Minimum scope: A permission is assigned only to applications that have service requirements.
Comply with the following principles for privacy protection:
1. The return value should contain only necessary information.
2. The API calling should not obtain or collect users' personal data, unless required permissions are assigned by users.
3. In case that an API is called by multiple applications, if personal data needs to be disclosed to the callee, the caller must specify the disclosed data type, data receiver, and data use purpose in the privacy statement.
4. When an API needs to access sensitive user data (such as calls, contacts, and media content), the system picker mechanism must be used to prevent the API from accessing the data through sensitive permission application.
5. Open APIs should not contain unrelated features.
* **Rule 21: Concurrent environment**
The OpenHarmony APIs do not require all threads to be safe, considering the extremely high cost (for example, program complexity and performance impact). You only need to select the APIs as required.
APIs dedicated for concurrent environments must be properly designed and described.
In the internal implementation of an API, thread safety issues should be solved as much as possible.
* **Rule 22: Resource management closure**
If an API requests dynamic resources, resource release should also be considered.
If the requested resources are returned to the caller, an API must be provided for the caller to release the resources.
If the requested resources are not directly returned to the caller, consider the resource lifecycle and release timing in the API.
If there is an upper limit for resource usage, describe it clearly and provide an API to check whether the upper limit is reached.
Pay special attention to the time for releasing exclusive resources.
* **Rule 23: Retry logic**
For APIs that may encounter calling failures, provide a retry mechanism. For example, for the scenario in which a process cannot obtain an exclusive resource (such as camera) that is already occupied by another, provide an API to query whether the resource is available.
To prevent repeated attempts, you can provide a listener.
Specify the maximum number of retries allowed after the API call failure.
* **Rule 24: Idempotence requirements**
In mathematics, the idempotent function expression is **f(x) = f(f(x))**. For example, the function for calculating the absolute value, that is, **abs(x) = abs(abs(x))**, is idempotent.
In computer science, idempotence indicates that one or more requests for a resource should have the same effect.
From the perspective of APIs, the effect of calling the API once to open a file should be the same as the effect of calling the API multiple times to open the file. Similarly, the effect of calling the API once to close a file should be the same as the effect of calling the API multiple times to close the file.
* **Rule 25: Device universality**
OpenHarmony is designed for various types of devices.
The API design should meet the device universality requirements. Example:
* For UI components, consider the size of different screens.
* For data storage, consider the size of different storage devices.
* For user input events, consider different user interaction modes, such as touches, voice, and keys.
Certain APIs are available only for specific devices. Example:
* Health sensor APIs are available only for wearables.
* Vehicle control APIs are available only for telematics devices.
You can calibrate the API application scenarios by referring to [SysCap](../application-dev/quick-start/syscap.md).
### Consistency
* **Rule 26: Consistent terms and concepts**
For purposes of easy understanding, use consistent terms and concepts in API names and descriptions. Avoid jargon. Abstract scenario-specific service models to form coherent and consistent OpenHarmony concepts.
In this regard, observe the following principles:
1. Use a single term for each concept.
2. Terms should be appropriate, explainable, and easy to understand.
4. The definition of terms should be accurate and unambiguous.
5. Common terms in the industry should not be redefined and should be used by following the industry practices.
In general, use terms already defined in [OpenHarmony Glossary](../glossary.md). If necessary, you can add terms to the glossary.
* **Rule 27: Consistent inter-device behavior**
By default, an API should behavior the same between devices of different types.
If the behavior will be different because of the device types, clearly describe the differences and provide a check mechanism.
* **Rule 28: Consistent version evolution**
By default, every API should provide consistent behavior in different versions. If an API change will cause behavior incompatibility, the minimum requirement is to distinguish the target version of the applications.
Simply speaking, API behavior changes should not affect developed applications.
* **Rule 29: Consistent naming style**
Accurate API names do not always mean consistency. For example, words with similar meanings, such as **picture** and **image**, and **path** and **URL**, are often seen in the same set of APIs. You should use the same name when referring to the same object.
For example, the following APIs, which are used to obtain media assets, have different naming styles:
```js
declare function getMediaAsserts(): Array<MediaAssert>;
declare function getAudios(): Array<AudioAssert>;
declare function getVideos(): Array<VideoAssert>;
declare function getImages(): Array<ImageAssert>;
```
They should be named as follows:
```js
function getMediaAsserts(): Array<MediaAssert>;
function getAudioAsserts(): Array<AudioAssert>;
function getVideoAsserts(): Array<VideoAssert>;
function getImageAsserts(): Array<ImageAssert>;
```
* **Rule 30: Consistent parameter sequence**
The same parameter sequence should be used for APIs in the same namespace or module.
For example, there is no restriction on the sequence of **deviceId** and **missionId** in a single API, but their sequence in the APIs of a module must be the same.
```js
function getMissionInfo(deviceId: string, missionId: number): Promise<MissionInfo>;
function getMissionSnapShot(deviceId: string, missionId: number): Promise<MissionSnapshot>;
// Correct
function getLowResolutionMissionSnapShot(deviceId: string, missionId: number): Promise<MissionSnapshot>;
// Incorrect
function getLowResolutionMissionSnapShot(missionId: number, deviceId: string): Promise<MissionSnapshot>;
```
* **Rule 31: Consistent synchronous/asynchronous style**
Asynchronous APIs should be able to be determined based on input parameters and return values. They should use the same style. Example:
```javascript
// Callback mode
function getDefaultDisplay(callback: AsyncCallback<Display>): void;
// Promise mode
function getDefaultDisplay(): Promise<Display>;
```
If both synchronous and asynchronous APIs are provided, you can add the suffix **Sync** to the synchronization API name for better distinguishing. Example:
```js
function getDefaultDisplaySync(): Display;
```
If only the synchronization API is provided and the return value is not **void**, you do not need to add the suffix. Example:
```js
function registerMissionListener(listener: MissionListener): number;
```
### Compatibility
* **Rule 32: Version compatibility**
Carry out full planning and all-round consideration at the very beginning, since API changes pose a high cost. However, you must notice that API changes are inevitable during system development.
API changes must be backward compatible. After an API is deprecated, mark the API **deprecated** in the source code and reference document, and provide the new counterpart.
Retain the deprecated APIs in at least five API versions released since the deprecation. After five versions, you can delete the deprecated APIs after providing obvious notifications to developers and leaving sufficient time for them to modify the applications.
* **Rule 33: Backward binary-code compatibility**
Binary-code compatibility means that an existing program can be linked to and run properly without recompilation after version evolution. It ensures that the memory layout of an instance does not change in the case of a version update.
Common C++ API changes that cause binary-code incompatibility include:
1. Deleting any API elements
2. Adding a virtual function
3. Changing the inheritance of a class
4. Changing the declaration sequence of virtual functions
5. Adding a non-static member variable
6. Changing the declaration sequence of non-static member variables
In terms of binary-code compatibility, C APIs have inherent advantages over C++ APIs. Therefore, you are advised to define native APIs using C.
### API References
API references are used to carry API information. Their quality is vital for the ecosystem development.
* **Rule 34: Basic descriptions for modules, namespaces, classes, and functions**
A basic description must be provided for each module, namespace, class, and function.
A detailed description must be provided for key modules and complex modules.
The description should be in English.
* **Rule 35: Clear description of use cases**
Sample code must be provided for all APIs, and common application scenarios must be covered.
A detailed application scenario description should be provided for complex APIs. You can provide a link to the tutorial that exhibits how to use the API.
* **Rule 36: Accurate API description**
There should be no typos in the API description.
All code samples must be able to run properly. If the behavior of an API varies in different versions, describe the differences.
Mark deprecated APIs and provide the counterparts.
* **Rule 37: Accurate parameter description**
Each parameter in an API must be clearly described. Example:
* For a non-simple type, specify whether the parameter can be null.
* For an enum type, describe the use case of each enumerated value.
* For an optional parameter, specify when the caller needs to pass the parameter and when to ignore the parameter.
**Rule 38: Accurate return value/exception description**
If an API has a return value or an exception, describe them in the API reference. Example:
```js
/**
* Sync function of rename.
* @param {string} path - path.
* @returns {void} rmdir success.
* @throws {BusinessError} 401 - if type of path is not string.
* @throws {BusinessError} 201 - if permission denied.
* @syscap SystemCapability.FileManagement.File.FileIO
* @since 7
*/
declare function rmdirSync(path: string): void;
```
* **Rule 39: Complete meta information**
The API reference must contain basic meta information, such as **@syscap** and **@since**.
The meta information describes the basic information about an API. The tool and SDK will use the information to perform corresponding processing, for example, displaying a message for a deprecated API.
* **Rule 40: Consistent style**
The API reference document must use consistent style, for example, bold text and image colors.
### Organization Mode
* **Rule 41: Reasonable layering**
An operating system is usually structured in a hierarchical model, and each layer solves different levels of problems.
You need to consider layering during API design.
For example, in the construction industry, all buildings have walls and doors, the walls are made of bricks, and the doors are made of wood. There are abstract layers as follows:
* The first layer is raw materials, including cement, sand, and wood.
* The second layer is building elements constructed from raw materials. Examples of building elements are doors, windows, and walls.
* The third floor is the type of room, for example, bedroom, bathroom, and living room.
* The top floor is a variety of buildings for different purposes, such as hotels and apartments.
Each layer has its own concepts to consider and problems to solve. Think carefully about the layer that your API targets.
* **Rule 42: Proper module division**
In addition to horizontal layering, you should pay attention to vertical layering, that is, module division. OpenHarmony APIs are organized in the form of namespaces. A namespace usually corresponds to a module.
A smaller subsystem can provide only one namespace and have all the APIs in this namespace. A large subsystem can provide multiple namespaces.
* **Rule 43: API reference document available (as part of the API)**
When talking about the APIs provided for developers, we mean not only programming interfaces, but also anything that can be exposed.
The API reference document is one that exposed. It should be managed according to the same rules as the APIs.
### Quality Related
* **Rule 44: Performance requirements met**
The APIs provided by an operating system may be used by all upper-layer applications. They must meet performance requirements in practice.
The following lists some requirements:
1. Respond in a timely manner to avoid callers waiting. If an API call takes a long time, use an asynchronous API.
2. Use the shared memory and message queue when a large amount of data needs to be transmitted.
3. Minimize the number of new process entities.
4. Release resources in a timely manner. A fault tolerance mechanism must be provided for abnormal scenarios to ensure timely resource release.
* **Rule 45: Proper power consumption**
OpenHarmony was designed for different types of devices, most of which were passive devices. Therefore, power consumption must be considered during API design.
During the implementation of each function or mechanism, consider power consumption. Provide a detailed description for high power consumption APIs and offer guidance on how to use them.
Provide a mechanism to prevent APIs from consuming power heavily. For example, after the device screen is locked or the application is switched to the background, stop the high power consumption behavior.
Ensure that power consumption does not deteriorate during version evolution.
* **Rule 46: Testable**
Provide complete automatic test cases to:
1. Quick detect faults during API development to improve API quality.
2. Ensure that code modification does not affect existing functionalities during version iteration.
3. Ensure backward compatibility of APIs.
An OpenHarmony API must meet the following requirements:
1. Automatic API test cases must be delivered for all new APIs.
2. Use a test case for each single scenario. One test case covers a single functionality of an API, simplifying the code logic of each single test case.
3. The test case execution must be efficient. The execution time of each test case must be limited to milliseconds.
4. Automatic API test cases must be available for all APIs.
5. Assertions with functional logic are required in addition to the capability of throwing exceptions.
* **Rule 47: Environmentally adaptable**
To support user personality features, an operating system usually provides environment customization capabilities, such as language, light/dark theme, and font size.
For related APIs, if developers do not pass specified parameters, the results in the corresponding environment should be returned based on the environment in use.
## Description of Post-Release Evaluation Specifications
Even though all the pre-release rules have been satisfied, some issues might be detected during API use.
It does not mean that these issues do not need to be considered during API design.
On the contrary, you should carry out full considerations during the design to prevent these issues from occurring after the API release.
If issues related to the following rules occur after the API release, the API quality is not good.
### Stability
* **Rule 48: Minimized rate for deprecated or changed APIs**
For an API, stability is the most important attribute.
API deprecation and behavior changes greatly reduce maintenance efficiency of developers, especially when multiple device types and system versions are involved.
Designing an API with long-term stability and continuous compatibility is the goal of every API designer.
The API deprecation rate and change rate are inversely proportional to the API quality to some extent.
### Security
* **Rule 49: No abuse of APIs**
All APIs should be designed to prevent themselves from being abused. Abuse means that the use of an API exceeds the expected limit, either in quantity or scope.
For example, the capability for accessing user data (such as **Gallery** and **Contacts**) or running in the background for a long time may be abused.
To prevent abuse in terms of quantity, use one-time authorization.
To prevent abuse in terms of scope, perform restrictions based on the caller identity.
No matter what mechanism is used, describe it in the API reference. In the case of excessive abuse, notify the caller through a specific return value.
* **Rule 50: No exploitation of APIs**
Exploitation means that the use of an API causes negative impact, for example, system attacks.
If a system problem occurs when an API or a combination of APIs is called, regardless of how they are called, there are defects in the API.
It is forbidden if an API (in any case) can be called to crash the system, prevent the system from working, or steal user data. You should consider all possible calling scenarios to avoid extreme situations.
### Maintainability
* **Rule 51: Evolution support**
A large feature of the operating system may take years to complete. This requires you to consider scalability during API design.
If a group of new APIs are added to the new version and the original APIs are deprecated, the API design is poor. This situation should be avoided.
* **Rule 52: Consistent behavior after feature expansion**
With the system evolution, it is common that new parameters are added to APIs or new options are added to parameters.
It is important to keep API behavior consistent. The original behavior should not be damaged by the introduction of new scenarios.
If the behavior has to be changed, only the applications using the new version provide the new behavior. The behavior of applications using the old version remains unchanged.
* **Rule 53: Documents updated accordingly**
When updating the API implementation, update the API reference document accordingly. From the perspective of compatibility, the original behavior should not be changed. New functionalities should be implemented by new APIs.
However, you can change the behavior of an existing API in the following cases:
1. The change is made to rectify the defect.
2. The change is made to improve performance or reduce power consumption.
3. The change is made to provide new features or scenarios, without affecting the original feature or scenario logic.
Describe the first and second cases in the Release Notes, and describe the third case in the API reference document.
### Irreplaceability
* **Rule 54: Orthogonal design**
Orthogonality means that APIs should not overlap.
For example, if an API provides the capability of creating a user account, whereas another API provides the capability of creating a user and logging in to the system, the orthogonality rule is not satisfied. You can change the logic of the second API so it provides the login capability only.
If you draw API capabilities one by one, there should be no overlap between these graphs. For APIs at the same layer, it is not allowed that an API provides capabilities A, B, and C, whereas another API provides capabilities B, C, and D.
To facilitate invocation, some APIs can be combined into a higher-level API. This uses different abstraction levels, not an overlap at the same layer.
### Feedback from Developers
* **Rule 55: Developer feedback noticed**
A released API may have defects detected, even after going through the trial phase.
Therefore, you should continue to notice the feedback from developers after the API release.
The following types of feedback may be possible:
* Requirements: Developers ask for new APIs to provide capabilities. You can plan these requirements in later versions.
* Defects related to API behavior: The behavior of an API is inconsistent with that described in the reference document. This defect should be fixed as soon as possible. If the inconsistency is caused by incorrect description in the reference document, correct the document.
* Inappropriate API design: The name or parameter setting of an API has defects. In this case, develop a new API to replace the defective API.
In some cases, you may need to change the behavior of a published API. Note that behavior changes take effect only on new applications. The behavior can be determined based on the target API version of the application.
In the worst case, you may need to deprecate an existing API and use a new one.
...@@ -4,20 +4,35 @@ ...@@ -4,20 +4,35 @@
- ### Ability - ### Ability
An abstraction of a functionality that an application can provide. An ability is the minimum unit for the system to schedule applications. An application can contain one or more **Ability** instances. The abstraction of a functionality provided by an application. **Ability** is the minimum unit for the system to schedule an application. It is a component that can implement an independent functionality. An application can contain one or more **Ability** instances. Different types of abilities are defined in the Feature Ability (FA) model and stage model.
- ### AMS - ### AMS
Ability Manager Service, a service that manages abilities. Ability Manager Service, a service that manages abilities.
- ### App pack
An application package released to the application market. The package contains one or more HAP files with the file name extension .app.
- ### App component
Same as ability. Each ability is an app component.
- ### ArkCompiler - ### ArkCompiler
A component-based and configurable multi-language compilation and running platform built in OpenHarmony. Bolstered by key components such as the compiler, toolchain, and runtime, ArkCompiler is able to compile and run code written in various advanced programming languages on multiple chip platforms. It also enables the OpenHarmony standard system and its applications and services to run on a variety of device types, from phones and PCs, tablets, TVs, automobiles, to smart wearables. A component-based, configurable multi-language compilation and running platform built in OpenHarmony. Bolstered by key components such as the compiler, toolchain, and runtime, ArkCompiler is able to compile and run code written in various advanced programming languages on multiple chip platforms. It also enables the OpenHarmony standard system and its applications and services to run on a variety of device types, from phones and PCs, tablets, TVs, automobiles, to smart wearables.
- ### ArkTS
Application development language used in OpenHarmony. Based on TypeScript, ArkTS extends capabilities such as declarative UI and status management, helping you develop applications in a simpler and more natural way.
- ### ArkUI - ### ArkUI
A simplified and high-performance UI development framework for cross-device application design and development, increasing your productivity when creating application UIs for use across devices. For details, see [ArkUI Overview](application-dev/ui/arkui-overview.md). Native UI framework of OpenHarmony. ArkUI is a simplified, high-performance UI development framework for cross-device application design and development, increasing your productivity when creating application UIs for use across devices. For details, see [ArkUI Overview](application-dev/ui/arkui-overview.md).
- ### Atomic service
A brand-new application form provided by OpenHarmony. Each atomic service has an independent entry for users to easily access, such as by tapping it, using OneHop, or scanning a particular QR code. They support silent installation (installed automatically by the system in the background).
## B ## B
...@@ -26,17 +41,29 @@ ...@@ -26,17 +41,29 @@
Bundle Manager Service, a service that manages application bundles. Bundle Manager Service, a service that manages application bundles.
## C
- ### C API
Native development interface provided by the OpenHarmony SDK.
- ### Continuation
Distributed operations provided by OpenHarmony, including cross-device migration and multi-device collaboration.
## D ## D
- ### Derivative framework
A third-party framework bridged to the native framework.
- ### DevEco Device Tool - ### DevEco Device Tool
A one-stop development environment and all-in-one resource platform for smart device developers. It provides comprehensive capabilities spanning the entire process of device development, from chip template project creation and custom development resource selection to code writing, build, debugging, and burning. A one-stop development environment and all-in-one resource platform for smart device developers. It provides comprehensive capabilities spanning the entire process of device development, from chip template project creation and custom development resource selection to code writing, build, debugging, and burning.
- ### DMS - ### DMS
Distributed Management Service, a service used for distributed data management. Distributed Management Service, a service used for distributed management.
## F ## F
...@@ -46,8 +73,7 @@ ...@@ -46,8 +73,7 @@
- ### FA model - ### FA model
Feature Ability model, one of the development models supported by the ability development framework. It is the only application development model supported by API version 8 and earlier. The FA model provides [FAs](#fa) and [Particle abilities (PAs)](#pa). The FA supports the Page ability template, and the PA supports the Service, Data, and Form ability templates. For details, see [FA Model Overview](application-dev/ability/fa-brief.md). A development model provided by the ability framework. It is the only application development model supported by API version 8 and earlier. The FA model provides [FAs](#fa) and [Particle abilities (PAs)](#pa). The FA supports the Page ability template, and the PA supports the Service, Data, and Form ability templates. For details, see [FA Model Overview](application-dev/ability/fa-brief.md).
## H ## H
...@@ -55,9 +81,13 @@ ...@@ -55,9 +81,13 @@
OpenHarmony Ability Package, released with the file name extension .hap. One HAP provides all content of an application, including code, resources, third-party libraries, and an application configuration file. OpenHarmony Ability Package, released with the file name extension .hap. One HAP provides all content of an application, including code, resources, third-party libraries, and an application configuration file.
- ### HAR
OpenHarmony Archive file, which contains the middle format of code, resources, and configuration files.
- ### HCS - ### HCS
HDF Configuration Source (HCS), providing the [Hardware Driver Foundation (HDF)](#hdf) configuration in key-value pairs. HCS removes the dependency between configuration code and driver code, simplifies configuration management. HDF Configuration Source, providing the Hardware Driver Foundation (HDF) configuration in key-value pairs. HCS removes the dependency between configuration code and driver code, simplifying configuration management.
- ### HC-GEN - ### HC-GEN
...@@ -67,7 +97,7 @@ ...@@ -67,7 +97,7 @@
- ### HDF - ### HDF
Hardware Driver Foundation that provides a unified access interface for peripherals and the framework for driver development and management in OpenHarmony. Hardware Driver Foundation, which provides a unified access interface for peripherals and the framework for driver development and management in OpenHarmony.
- ### Hypium - ### Hypium
...@@ -80,6 +110,12 @@ ...@@ -80,6 +110,12 @@
Intelligent Distributed Networking, a distributed networking unit of OpenHarmony. You can use IDN to obtain the device list and device states and subscribe to the connection state changes of devices on a distributed network. Intelligent Distributed Networking, a distributed networking unit of OpenHarmony. You can use IDN to obtain the device list and device states and subscribe to the connection state changes of devices on a distributed network.
## N
- ### Native framework
A development framework provided by the system. A non-native framework is a third-party framework.
## P ## P
...@@ -87,18 +123,41 @@ ...@@ -87,18 +123,41 @@
Particle Ability, an ability that does not have a UI in the ability framework of the FA model. It provides services and support for FAs. For example, a PA can function as a background service to provide computing power or as a data store to provide data access capabilities. The PA supports Service, Data, and Form ability templates. Particle Ability, an ability that does not have a UI in the ability framework of the FA model. It provides services and support for FAs. For example, a PA can function as a background service to provide computing power or as a data store to provide data access capabilities. The PA supports Service, Data, and Form ability templates.
## S ## S
- ### SA
System Ability, which is a system-level component written by system developers.
- ### Secondary framework
A third-party framework that does not depend on the native framework.
- ### Stage model
A development model provided by the ability framework since API version 9. The stage model provides **UIAbility** and **ExtensionAbility** classes. The **ExtensionAbility** classes include **ServiceExtensionAbility**, **FormExtensionAbility**, **DataShareExtensionAbility**, and more.
- ### Super Virtual Device - ### Super Virtual Device
Also called Super Device. It integrates the capabilities of multiple devices through the distributed technology into a virtual hardware resource pool and then centrally manages and schedules these capabilities based on application requirements. Also called Super Device. It integrates the capabilities of multiple devices through the distributed technology into a virtual hardware resource pool and then centrally manages and schedules these capabilities based on application requirements.
- ### Stage model - ### SysCap
A development model supported by the Ability development framework since API version 9. The stage model provides **Ability** and **ExtensionAbility** classes. The **ExtensionAbility** classes include **ServiceExtensionAbility**, **FormExtensionAbility**, **DataShareExtensionAbility**, and more. System Capability, each relatively independent feature in OpenHarmony, such as Bluetooth, Wi-Fi, NFC, and camera. Each system capability corresponds to multiple APIs, and each API definition contains the corresponding SysCap tag.
- ### System type - ### System type
- Mini system: an operating system for the devices that come with MCU processors, such as Arm Cortex-M and 32-bit RISC-V, and memory greater than or equal to 128 KiB. This system provides rich short-distance connection capabilities and peripheral access bus. The mini system applies to smart home products such as LinkIoT module devices and sensors. - Mini system: an operating system for the devices that come with MCU processors, such as Arm Cortex-M and 32-bit RISC-V, and memory greater than or equal to 128 KiB. This system provides rich short-range connection capabilities and peripheral access bus. The mini system applies to smart home products such as LinkIoT module devices and sensors.
- Small system: an operating system for the devices that come with application processors, such as Arm Cortex-A, and memory greater than or equal to 1 MiB. This system provides higher security capabilities, a standard graphics framework, and video encoding and decoding capabilities. The small system applies to smart home products such as IP cameras, peephole cameras, and routers as well as smart travel products such as event data recorders (EDRs). - Small system: an operating system for the devices that come with application processors such as Arm Cortex-A and memory greater than or equal to 1 MiB. This system provides higher security capabilities, a standard graphics framework, and video encoding and decoding capabilities. The small system applies to smart home products such as IP cameras, peephole cameras, and routers as well as easy travel products such as event data recorders (EDRs).
- Standard system: an operating system for the devices that come with application processors, such as Arm Cortex-A, and memory greater than or equal to 128 MiB. This system provides a complete application framework supporting enhanced interaction, 3D GPU, hardware composer, diverse components, and rich animations. The standard system applies to high-end refrigerator displays. - Standard system: an operating system for the devices that come with application processors such as Arm Cortex-A and memory greater than or equal to 128 MiB. This system provides a complete application framework supporting enhanced interaction, 3D GPU, hardware composer, diverse components, and rich animations. The standard system applies to high-end refrigerator displays.
## U
- ### UI component
Part of the UI that supports user interaction.
## X
- ### XComponent
Component interfaces provided by ArkUI to meet self-rendering requirements of developers.
# ArkCompiler JS Runtime # ArkCompiler Runtime
## Introduction ## Introduction
ArkCompiler is a built-in componentized and configurable multi-language compilation and runtime platform of OpenHarmony. It contains core components such as the compiler, toolchain, and runtime. It supports compilation and running of high-level programming languages on the multi-chip platform. It accelerates the running of the OpenHarmony standard operating system and its applications and services on mobile phones, PCs, tablets, TVs, automobiles, and smart wearables. ArkCompiler JS Runtime provides the capability of compiling and running the JavaScript (JS) language on the OpenHarmony operating system. ArkCompiler is a unified compilation and runtime platform that supports joint compilation and running across programming languages and chip platforms. It supports a variety of dynamic and static programming languages such as JS, TS, and ArkTS. It is the compilation and runtime base that enables OpenHarmony to run on multiple device forms such as mobile phones, PCs, tablets, TVs, automobiles, and wearables.
ArkCompiler JS Runtime consists of two parts: JS compiler toolchain and JS runtime. The JS compiler toolchain compiles JS source code into ArkCompiler bytecodes. The JS runtime executes the generated ArkCompiler bytecodes. Unless otherwise specified, bytecodes refer to ArkCompiler bytecodes in this document. ArkCompiler consists of two parts: compiler toolchain and runtime.
**Figure 1** Architecture of the JS compiler toolchain
**Figure 1** Architecture of the compiler toolchain
![](figures/en-us_image_ark_frontend.png) ![](figures/en-us_image_ark_frontend.png)
The source code compiler of ArkCompiler JS Runtime receives JS source code, based on which ts2abc generates an abc file. The compiler toolchain compiles ArkTS, TS, and JS source code into abc files, that is, ArkCompiler bytecode.
**Figure 2** Architecture of ArkCompiler JS Runtime **Figure 2** Runtime architecture
![](figures/en-us_image_ark-js-arch.png) ![](figures/en-us_image_ark-ts-arch.png)
ArkCompiler JS Runtime runs ArkCompiler bytecode files to implement JS semantic logic. The runtime runs the abc files to implement the corresponding semantic logic.
ArkCompiler JS Runtime consists of four subsystems: The ArkCompiler runtime consists of four subsystems:
- Core subsystem - Core subsystem
The core subsystem consists of basic language-irrelevant runtime libraries, including ArkCompiler File, Tooling, and ArkCompiler Base. ArkCompiler File provides bytecodes. Tooling supports Debugger. ArkCompiler Base is responsible for implementing system calls. The core subsystem consists of basic language-irrelevant runtime libraries, including File, Tooling, and Base. File provides bytecode. Tooling supports Debugger. Base implements system calls.
- JS execution subsystem - Execution subsystem
The JS execution subsystem consists of an interpreter that executes bytecodes, inline caching that stores hidden classes, and Profiler that analyzes and records runtime types. The execution subsystem consists of the interpreter for executing bytecode, the inline caching, and the profiler for capturing runtime information.
- JS compiler subsystem - Compiler subsystem
The JS compiler subsystem consists of the Stub compiler, optimized compilation framework based on the Circuit IR, and code generator. The compiler subsystem consists of the stub compiler, circuit framework, and Ahead-of-Time (AOT) compiler.
- JS runtime subsystem - Runtime subsystem
The JS runtime subsystem contains various modules related to JS runtime: The runtime subsystem contains modules related to the running of ArkTS, TS, and JS code.
- Memory management: object allocator and garbage collector (CMS-GC and Partial-Compressing-GC for concurrent marking and partial memory compression) - Memory management: object allocator and garbage collector (CMS-GC and Partial-Compressing-GC for concurrent marking and partial memory compression)
- Analysis tools: DFX tool and CPU and heap profiling tool - Analysis tools: DFX tool and CPU and heap profiling tool
- Concurrency management: abc file manager in the actor concurrency model - Concurrency management: abc file manager in the actor concurrency model
- Standard library: standard library defined by ECMAScript, efficient container library, and object model - Standard library: standard library defined by ECMAScript, efficient container library, and object model
- Others: asynchronous work queues, TypeScript (TS) type loading, and JS native APIs (JSNAPIs) for interacting with C++ interfaces - Others: asynchronous work queues, TypeScript (TS) type loading, and JS native APIs (JSNAPIs) for interacting with C++ interfaces
**Design features of ArkCompiler JS Runtime:** **Design features of ArkCompiler eTS Runtime**
- ArkCompiler JS Runtime is designed to provide a JS/TS application execution engine for OpenHarmony rather than a JS execution engine for the browser. - Native support for type information
- To improve the application execution performance and security, ArkCompiler JS Runtime statically pre-compiles JS/TS programs into ArkCompiler bytecode (with static type information) to reduce the overhead caused by compilation and type information collection during runtime. To ensure security and performance, ArkCompiler JS Runtime selects the code that supports strict but not eval. Currently, mainstream engines in the industry convert TS source code into JS source code and then run the JS source code to complete semantic logic. However, the ArkCompiler compiler toolchain analyzes and deduces the TS type information when compiling the TS source code and transfers the information to the runtime. The runtime uses the TS type information to pre-generate an inline cache before running, speeding up bytecode execution. The TS AOT compiler directly compiles and generates machine code based on the TS type information in the abc file, so that an application can directly run the optimized machine code, thereby greatly improving the running performance.
- Native support for TS - Optimized concurrency model and concurrency APIs
The common way to process TS in the industry is to convert TS into JS and execute JS code with JS runtime. ts2abc is planned to analyze and obtain the TS type information when compiling the TS source code and send the information to ArkCompiler JS Runtime. ArkCompiler JS Runtime directly uses the type information to statically generate inline caching to accelerate bytecode execution. The TS Ahead of Time (AOT) compiler directly converts the source code into high-quality machine code based on the TS type information sent from ts2abc, which greatly improves the running performance. The ArkCompiler eTS runtime statically pre-compiles ArkTS programs into ArkCompiler bytecode (with static type information) to reduce the overhead caused by compilation and type information collection during runtime. To ensure security and performance, the ArkCompiler eTS runtime selects the code that supports strict but not eval.
- Lightweight Actor concurrency model - Native support for TS
ECMAScript does not provide concurrency specifications. The Actor concurrency model is used in the JS engines in the industry to implement concurrent processing. In this model, executors do not share data and communicate with each other using the messaging mechanism. The JS Actor model (web-worker) in the industry has defects such as slow startup and high memory usage. ArkCompiler JS Runtime is required to provide the Actor implementation that features fast startup and low memory usage to better leverage the device's multi-core feature to improve performance. Now ArkCompiler JS Runtime is able to share immutable objects, methods, and bytecodes (built-in code blocks and constant strings in the future) in Actor instances based on the Actor memory isolation model to accelerate the startup of JS Actor, reduce memory overhead, and implement the lightweight Actor concurrency model. The ECMAScript specification does not include concurrency semantic representation. Engines in the industry, such as browser or Node.js, usually provide the Worker APIs for multi-thread development based on the Actor concurrency model. In this model, executors do not share data objects or communicate with each other using the messaging mechanism. The worker thread of the web engine or Node.js engine has defects such as slow startup and high memory usage. To address these defects, the ArkCompiler runtime supports sharing of immutable objects (methods and bytecode) in Actor instances, greatly optimizing Actor startup performance and startup memory.
In addition to the Worker APIs, the ArkCompiler runtime provides TaskPool, a task pool function library that supports priority-based scheduling and automatic scaling of worker threads. With TaskPool, you do not need to care about the lifecycle of concurrent instances or create or destroy concurrent instances upon task load changes. This greatly simplifies the development of high-performance multithreaded OpenHarmony applications.
- Cross-language interaction of TS and C++
In the API implementation, it is common for C/C++ code to access and operate TS objects in OpenHarmony. ArkCompiler JS Runtime is planned to statically generate a C/C++ header file that contains the TS object layout description and the C/C++ implementation library for operating the TS object based on the class declaration and runtime conventions in the TS program. The C/C++ code usually includes the TS object layout description header file and the corresponding implementation library to implement the direct operation on the TS object. The TS type or its internal layout is not always fixed. Therefore, in the code implementation for TS object operations, type check is used. If the object type or layout changes during runtime, the common slow path is rolled back. - Security
The ArkCompiler compiler toolchain statically precompiles ArkTS, TS, and JS code into ArkCompiler bytecode and enhances the multi-obfuscation capability, effectively improving the security of your code assets. For security purposes, ArkCompiler does not support JS code in sloppy mode or functions such as eval for running dynamic strings.
## Directory Structure ## Directory Structure
``` ```
/ark /arkcompiler
├── ets_runtime # JS runtime module ├── ets_runtime # ArkTS runtime module
├── runtime_core # Runtime core subsystem ├── runtime_core # Runtime core subsystem
└── ets_frontend # JS frontend tool ├── ets_frontend # ArkTS frontend tool
└── toolchain # ArkTS toolchain
``` ```
## Usage ## Usage
[Ark Runtime User Guide](https://gitee.com/openharmony/ark_js_runtime/blob/master/docs/ARK-Runtime-Usage-Guide.md) [Ark Runtime User Guide](https://gitee.com/openharmony/arkcompiler_ets_runtime/blob/master/docs/ARK-Runtime-Usage-Guide.md)
## Repositories Involved ## Repositories Involved
...@@ -79,3 +81,5 @@ ArkCompiler JS Runtime consists of four subsystems: ...@@ -79,3 +81,5 @@ ArkCompiler JS Runtime consists of four subsystems:
[arkcompiler\_ets\_runtime](https://gitee.com/openharmony/arkcompiler_ets_runtime) [arkcompiler\_ets\_runtime](https://gitee.com/openharmony/arkcompiler_ets_runtime)
[arkcompiler\_ets\_frontend](https://gitee.com/openharmony/arkcompiler_ets_frontend) [arkcompiler\_ets\_frontend](https://gitee.com/openharmony/arkcompiler_ets_frontend)
[arkcompiler\_toolchain](https://gitee.com/openharmony/arkcompiler_toolchain)
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
## Introduction<a name="section11660541593"></a> ## Introduction<a name="section11660541593"></a>
DeviceProfile is used to manage device hardware capabilities and system software features. A typical device profile includes the device type, device name, OS type, and OS version. By allowing quick access to local and remote device profiles, DeviceProfile lays the foundation for initiating distributed services. It provides the following features: DeviceProfile is used to manage device hardware capabilities and system software features. A typical device profile includes the device type, device name, OS type, and OS version.
By allowing quick access to local and remote device profiles, DeviceProfile lays the foundation for initiating distributed services. It provides the following features:
- Querying, inserting, and deleting local device profile information - Querying, inserting, and deleting local device profile information
- Querying remote device profile information - Querying remote device profile information
...@@ -23,28 +25,28 @@ The main code directory structure of DeviceProfile is as follows: ...@@ -23,28 +25,28 @@ The main code directory structure of DeviceProfile is as follows:
``` ```
├── interfaces ├── interfaces
   └── innerkits └── innerkits
│ └── distributeddeviceprofile // Internal APIs │ └── distributeddeviceprofile // innerkits APIs
├── ohos.build ├── ohos.build
├── sa_profile // SAID profile ├── sa_profile // SAID profile
   ├── 6001.xml ├── 6001.xml
   └── BUILD.gn └── BUILD.gn
── services ── services
│   └── distributeddeviceprofile └── distributeddeviceprofile
│   ├── BUILD.gn ├── BUILD.gn
│   ├── include ├── include
│ │ ├── contentsensor // Header file for content sensor data collection │ ├── authority // Permission verification
│ │ ├── dbstorage // Header file for database operations │ ├── contentsensor // Header file for content sensor data collection
│ │ ├── devicemanager // Header file for device management │ ├── dbstorage // Header file for database operations
│ │ └── subscribemanager // Header file for subscription management │ ├── devicemanager // Header file for device management
│   ├── src │ └── subscribemanager // Header file for subscription management
│ │ ├── contentsensor // Implementation of content sensor data collection ├── src
│ │ ├── dbstorage // Implementation of database operations │ ├── authority // Permission verification
│ │ ├── devicemanager // Implementation of device management │ ├── contentsensor // Implementation of content sensor data collection
│ │ ├── subscribemanager // Implementation of subscription management │ ├── dbstorage // Implementation of database operations
│ └── test // Test cases │ ├── devicemanager // Implementation of device management
└── tools │ └── subscribemanager // Implementation of subscription management
└── dp // Auxiliary test tool └── test // Test cases
``` ```
## Constraints<a name="section1718733212019"></a> ## Constraints<a name="section1718733212019"></a>
...@@ -58,11 +60,11 @@ The main code directory structure of DeviceProfile is as follows: ...@@ -58,11 +60,11 @@ The main code directory structure of DeviceProfile is as follows:
* Parameters of GetDeviceProfile * Parameters of GetDeviceProfile
| Name| Type| Mandatory| Description| | Name | Type | Mandatory| Description |
| --------- | ---------------------------- | ---- | ----------------------------------- | | --------- | ---------------------------- | ---- | ----------------------------------- |
| deviceId | std::string | Yes| ID of the device whose profile is to be queried. A null value indicates the local device.| | deviceId | std::string | Yes | ID of the device whose profile is to be queried. A null value indicates the local device.|
| serviceId | std::string | Yes| Service ID (ID of the service data record).| | serviceId | std::string | Yes | Service ID (ID of the service data record). |
| profile | ServiceCharacteristicProfile | Yes| Return value.| | profile | ServiceCharacteristicProfile | Yes | Return value. |
* Example * Example
...@@ -79,9 +81,9 @@ result.append("jsonData:" + jsonData + "\n"); ...@@ -79,9 +81,9 @@ result.append("jsonData:" + jsonData + "\n");
* Parameters of PutDeviceProfile * Parameters of PutDeviceProfile
| Name| Type| Mandatory| Description| | Name | Type | Mandatory| Description |
| --------- | ---------------------------- | ---- | ----------------------------------- | | --------- | ---------------------------- | ---- | ----------------------------------- |
| profile | ServiceCharacteristicProfile | Yes| Profile information to insert.| | profile | ServiceCharacteristicProfile | Yes | Profile information to insert. |
* Example * Example
...@@ -102,9 +104,9 @@ DistributedDeviceProfileClient::GetInstance().PutDeviceProfile(profile); ...@@ -102,9 +104,9 @@ DistributedDeviceProfileClient::GetInstance().PutDeviceProfile(profile);
* Parameters of DeleteDeviceProfile * Parameters of DeleteDeviceProfile
| Name| Type| Mandatory| Description| | Name | Type | Mandatory| Description |
| --------- | ---------------------------- | ---- | ----------------------------------- | | --------- | ---------------------------- | ---- | ----------------------------------- |
| serviceId | std::string | Yes| ID of the service record to delete.| | serviceId | std::string | Yes | ID of the service record to delete. |
* Example * Example
...@@ -119,10 +121,10 @@ DistributedDeviceProfileClient::GetInstance().DeleteDeviceProfile(serviceId); ...@@ -119,10 +121,10 @@ DistributedDeviceProfileClient::GetInstance().DeleteDeviceProfile(serviceId);
* Parameters of SyncDeviceProfile * Parameters of SyncDeviceProfile
| Name| Type| Mandatory| Description| | Name | Type | Mandatory| Description |
| --------- | ---------------------------- | ---- | ----------------------------------- | | --------- | ---------------------------- | ---- | ----------------------------------- |
| syncOption| SyncOption | Yes| Synchronization mode and range.| | syncOption| SyncOption | Yes | Synchronization mode and range. |
| syncCb | IProfileEventCallback | Yes| Callback used to return the synchronization result.| | syncCb | IProfileEventCallback | Yes | Callback used to return the synchronization result. |
* Example * Example
...@@ -142,11 +144,11 @@ DistributedDeviceProfileClient::GetInstance().SyncDeviceProfile(syncOption, ...@@ -142,11 +144,11 @@ DistributedDeviceProfileClient::GetInstance().SyncDeviceProfile(syncOption,
* Parameters of SubscribeProfileEvents * Parameters of SubscribeProfileEvents
| Name| Type| Mandatory| Description| | Name | Type | Mandatory| Description |
| -------------- | ---------------------------- | ---- | ----------------------------------- | | -------------- | ---------------------------- | ---- | ----------------------------------- |
| subscribeInfos | SubscribeInfo | Yes| Type of the event to subscribe to.| | subscribeInfos | SubscribeInfo | Yes | Type of the event to subscribe to. |
| eventCb | IProfileEventCallback | Yes| Callback for the subscribed event.| | eventCb | IProfileEventCallback | Yes | Callback for the subscribed event. |
| failedEvents | ProfileEvent | Yes| Failure event.| | failedEvents | ProfileEvent | Yes | Failure event. |
* Example * Example
...@@ -178,7 +180,6 @@ profileEvents.emplace_back(ProfileEvent::EVENT_PROFILE_CHANGED); ...@@ -178,7 +180,6 @@ profileEvents.emplace_back(ProfileEvent::EVENT_PROFILE_CHANGED);
failedEvents.clear(); failedEvents.clear();
// Cancel the subscription. // Cancel the subscription.
DistributedDeviceProfileClient::GetInstance().UnsubscribeProfileEvents(profileEvents, callback, failedEvents); DistributedDeviceProfileClient::GetInstance().UnsubscribeProfileEvents(profileEvents, callback, failedEvents);
callback, failedEvents);
``` ```
## Repositories Involved<a name="section176111311166"></a> ## Repositories Involved<a name="section176111311166"></a>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
**Distributed Data Management Subsystem** **Distributed Data Management Subsystem**
The Distributed Data Management subsystem can persistently store various structured data of a single device and also supports data synchronization and sharing across devices. With the Distributed Data Management subsystem, application data can be seamlessly processed across different devices, ensuring consistent user experience for the same application across devices. The Distributed Data Management subsystem can persistently store various structured data of a single device. It also supports data synchronization and sharing across devices. With the Distributed Data Management subsystem, application data can be seamlessly processed across devices, ensuring consistent user experience for the same application across devices.
**Subsystem Architecture** **Subsystem Architecture**
...@@ -47,15 +47,15 @@ The **DataShare** module allows an application to manage its own data and share ...@@ -47,15 +47,15 @@ The **DataShare** module allows an application to manage its own data and share
### DDS ### DDS
The Distributed Data Service (DDS) implements distributed database collaboration across devices for applications. The DDS isolates data based on a triplet of the account, application, and database. The DDS synchronizes data between trusted devices to provide users with consistent data access experience on different devices. The Distributed Data Service (DDS) implements database collaboration across devices for applications. The DDS isolates data based on a triplet of the account, application, and database. The DDS synchronizes data between trusted devices, delivering a consistent data access experience on different devices.
### Preferences ### Preferences
The **Preferences** module allows quick access to data in KV pairs and storage of a small amount of data for local applications. The data is stored in local files and loaded in memory, which allows faster access and higher processing efficiency. Preferences provide non-relational data storage and are not suitable for storing a large amount of data. The **Preferences** module allows quick access to data in KV pairs and storage of a small amount of data for local applications. The data is stored in local files in KV pairs and loaded in memory, which allows for faster access and higher processing efficiency. Preferences provide non-relational data storage and are not suitable for storing a large amount of data.
1. The **Preferences** module provides APIs for **preferences** operations. 1. The **Preferences** module provides APIs for **preferences** operations.
2. You can use **getPreferences()** to load the content of a specified file to a **Preferences** instance. Each file has only one **Preferences** instance. The system stores the instance data in memory through a static container until the app removes the instance from the memory or deletes the file. 2. You can use **getPreferences()** to load the content of a specified file to a **Preferences** instance. Each file has only one **Preferences** instance. The system stores the instance data in memory through a static container until the application removes the instance from the memory or deletes the file.
3. After obtaining a **Preferences** instance, the app can call the APIs in **Preferences** to read data from or write data to the **Preferences** instance, and call **flush()** to save the instance data to a file. 3. After obtaining a **Preferences** instance, the application can call the APIs of **Preferences** to read data from or write data to the **Preferences** instance, and call **flush()** to save the instance data to a file.
### RDB Store ### RDB Store
......
...@@ -99,9 +99,9 @@ This release provides the following new and enhanced features based on OpenHarmo ...@@ -99,9 +99,9 @@ This release provides the following new and enhanced features based on OpenHarmo
For details, see: For details, see:
- [JS API Differences](api-change/v2.2-beta2/js-apidiff-v2.2-beta2.md) - [JS API Differences](api-diff/v2.2-beta2/js-apidiff-v2.2-beta2.md)
- [Native API Differences](api-change/v2.2-beta2/native-apidiff-v2.2-beta2.md) - [Native API Differences](api-diff/v2.2-beta2/native-apidiff-v2.2-beta2.md)
## Resolved Issues ## Resolved Issues
......
...@@ -127,7 +127,7 @@ This version has the following updates to OpenHarmony 2.2 Beta2. ...@@ -127,7 +127,7 @@ This version has the following updates to OpenHarmony 2.2 Beta2.
### API Updates ### API Updates
For details, see [JS API Differences](api-change/v3.0-LTS/js-apidiff-v3.0-lts.md). For details, see [JS API Differences](api-diff/v3.0-LTS/js-apidiff-v3.0-lts.md).
### Chip and Development Board Adaptation ### Chip and Development Board Adaptation
......
# OpenHarmony 3.0.7 LTS
## Version Description
OpenHarmony 3.0.7 LTS is a maintenance version of OpenHarmony 3.0 LTS. It has rectified certain issues detected in OpenHarmony 3.0.6 LTS.
## Version mapping
**Table 1** Version mapping of software and tools
| Software/Tool| Version| Remarks|
| -------- | -------- | -------- |
| OpenHarmony | 3.0.7 LTS| NA |
| (Optional) HUAWEI DevEco Studio| 3.0 Beta3 for OpenHarmony | Recommended for developing OpenHarmony applications|
| (Optional) HUAWEI DevEco Device Tool| 3.0 Release | Recommended for developing OpenHarmony smart devices|
## Source Code Acquisition
### Prerequisites
1. Register your account with Gitee.
2. Register an SSH public key for access to Gitee.
3. Install the [git client](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure user information.
```
git config --global user.name "yourname"
git config --global user.email "your-email-address"
git config --global credential.helper store
```
4. Run the following commands to install the **repo** tool:
```
curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo # If you do not have the permission, download the tool to another directory and configure it as an environment variable by running the chmod a+x /usr/local/bin/repo command.
pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
```
### Acquiring Source Code Using the repo Tool
**Method 1 (recommended)**: Use the **repo** tool to download the source code over SSH. (You must have an SSH public key for access to Gitee.)
```
repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-v3.0.7-LTS --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
**Method 2**: Use the **repo** tool to download the source code over HTTPS.
```
repo init -u https://gitee.com/openharmony/manifest.git -b refs/tags/OpenHarmony-v3.0.7-LTS --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
### Acquiring Source Code from Mirrors
**Table 2** Mirrors for acquiring source code
| LTS Code| Version| Mirror| SHA-256 Checksum|
| -------- | -------- | -------- | -------- |
| Full code base (for mini, small, and standard systems)| 3.0.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/code-v3.0.7-LTS.tar.gz)| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/code-v3.0.7-LTS.tar.gz.sha256)|
| Standard system Hi3516 solution (binary)| 3.0.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/standard.tar.gz)| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/standard.tar.gz.sha256)|
| Mini system Hi3861 solution (binary)| 3.0.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_pegasus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_pegasus.tar.gz.sha256) |
| Small system Hi3516 solution - LiteOS (binary)| 3.0.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_taurus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_taurus.tar.gz.sha256) |
| Small system Hi3516 solution - Linux (binary)| 3.0.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_taurus_linux.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.0.7/hispark_taurus_linux.tar.gz.sha256) |
## What's New
### Feature Updates
This version does not involve feature updates.
### API Updates
This version does not involve API updates.
### Chip and Development Board Adaptation
For details about the adaptation status, see [SIG-Devboard](https://gitee.com/openharmony/community/blob/master/sig/sig-devboard/sig_devboard.md).
## Fixed Security Vulnerabilities
**Table 3** Fixed security vulnerabilities
| Issue No.| Description| PR Link|
| -------- | -------- | -------- |
| I5VFI7 | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-3303, CVE-2022-42703, CVE-2022-20422, CVE-2022-41222, CVE-2022-3239, CVE-2022-20423 and CVE-2022-41850 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/508) |
| I5UHPU | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-40768, CVE-2022-3577, CVE-2022-20409, CVE-2022-3566, CVE-2022-3606, CVE-2022-3564 and CVE-2022-3649| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/506) |
| I5QBIA | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-1184 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/475) |
| I5VFK1 | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-20421, CVE-2022-42719, CVE-2022-42720, CVE-2022-42721, CVE-2022-42722, CVE-2022-41674, CVE-2022-3535, CVE-2022-3521, CVE-2022-3565, CVE-2022-3594, CVE-2022-3435, CVE-2022-41849, CVE-2022-3524, CVE-2022-3542, and CVE-2022-3534| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/503) |
| I5OJL9 | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-26373 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/495) |
| I5WC2X | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-23816, CVE-2022-29901, and CVE-2022-29900| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/494) |
| I5VQVK | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-1462 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/490) |
| I5VP0D | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-39189, CVE-2022-39190, and CVE-2022-2663| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/489) |
| I5QBPW | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-39188, CVE-2022-3078, CVE-2022-2905, and CVE-2022-39842| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/481) |
| I5SCE3 | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-3202 and CVE-2022-40307| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/464) |
| I5QBK8 | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-3028, CVE-2022-2977, and CVE-2022-2964| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/442) |
| I5RQTK | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-3061 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/444) |
| I5R8CM | Security vulnerabilities of the Kernel_linux_5.10 component: CVE-2022-2959 and CVE-2022-2991| [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/436) |
| I5R8BB | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-2503 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/435) |
| I5R6VI | Security vulnerability of the Kernel_linux_5.10 component: CVE-2022-2938 | [PR](https://gitee.com/openharmony/kernel_linux_5.10/pulls/434) |
| I5ZA11 | Security vulnerabilities of the curl component: CVE-2022-32221, CVE-2022-42915, and CVE-2022-42916| [PR](https://gitee.com/openharmony/third_party_curl/pulls/90) |
| I5QBFJ | Security vulnerability of the curl component: CVE-2022-35252 | [PR](https://gitee.com/openharmony/third_party_curl/pulls/85) |
| I5UHWM | Security vulnerability of the wayland component: CVE-2021-3782 | [PR](https://gitee.com/openharmony/third_party_wayland_standard/pulls/22) |
| I5MVPK | Security vulnerability on the css-what component: CVE-2021-33587 | [PR](https://gitee.com/openharmony/third_party_css-what/pulls/9) |
| I5YR0H | Security vulnerability of the gstreamer component: CVE-2021-3185 | [PR](https://gitee.com/openharmony/third_party_gstreamer/pulls/207) |
| I5XT87 | Security vulnerability of the expat component: CVE-2022-43680 | [PR](https://gitee.com/openharmony/third_party_expat/pulls/22) |
| I5SD4W | Security vulnerability of the expat component: CVE-2022-40674 | [PR](https://gitee.com/openharmony/third_party_expat/pulls/19) |
...@@ -128,11 +128,11 @@ This version has the following updates to OpenHarmony 3.0 LTS. ...@@ -128,11 +128,11 @@ This version has the following updates to OpenHarmony 3.0 LTS.
For details, see the following: For details, see the following:
_[JS API Differences](api-change/v3.1-beta/js-apidiff-v3.1-beta.md)_ _[JS API Differences](api-diff/v3.1-beta/js-apidiff-v3.1-beta.md)_
_[Native API Differences](api-change/v3.1-beta/native-apidiff-v3.1-beta.md)_ _[Native API Differences](api-diff/v3.1-beta/native-apidiff-v3.1-beta.md)_
_[Changelog](api-change/v3.1-beta/changelog-v3.1-beta.md)_ _[Changelog](api-diff/v3.1-beta/changelog-v3.1-beta.md)_
### Chip and Development Board Adaptation ### Chip and Development Board Adaptation
......
...@@ -189,7 +189,7 @@ This version has the following updates to OpenHarmony 3.1 Beta. ...@@ -189,7 +189,7 @@ This version has the following updates to OpenHarmony 3.1 Beta.
For details, see the following: For details, see the following:
*[API Differences](api-change/v3.1-Release/Readme-EN.md)* *[API Differences](api-diff/v3.1-Release/Readme-EN.md)*
### Chip and Development Board Adaptation ### Chip and Development Board Adaptation
......
...@@ -13,7 +13,7 @@ OpenHarmony 3.1.4 Release provides enhanced system security over OpenHarmony 3.1 ...@@ -13,7 +13,7 @@ OpenHarmony 3.1.4 Release provides enhanced system security over OpenHarmony 3.1
| Software/Tool| Version| Remarks| | Software/Tool| Version| Remarks|
| -------- | -------- | -------- | | -------- | -------- | -------- |
| OpenHarmony | 3.1.4 Release| NA | | OpenHarmony | 3.1.4 Release| NA |
| Full SDK | Ohos_sdk_full 3.1.9.7 (API Version 8 Release)| This toolkit is intended for original equipment manufacturers (OEMs) and contains system APIs that require system permissions.<br>To use the Full SDK, you must manually obtain it from the mirror and switch to it in DevEco Studio. For details, see [Guide to Switching to Full SDK](../application-dev/quick-start/full-sdk-switch-guide.md).| | Full SDK | Ohos_sdk_full&nbsp;3.1.9.7&nbsp;(API&nbsp;Version&nbsp;8&nbsp;Relese) | This toolkit is intended for original equipment manufacturers (OEMs) and contains system APIs that require system permissions.<br>To use the Full SDK, you must manually obtain it from the mirror and switch to it in DevEco Studio. For details, see [Guide to Switching to Full SDK](../application-dev/quick-start/full-sdk-switch-guide.md).|
| Public SDK | Ohos_sdk_public 3.1.9.7 (API Version 8 Release)| This toolkit is intended for application developers and does not contain system APIs that require system permissions.<br>It is provided as standard in DevEco Studio 3.0 Beta4 or later.| | Public SDK | Ohos_sdk_public 3.1.9.7 (API Version 8 Release)| This toolkit is intended for application developers and does not contain system APIs that require system permissions.<br>It is provided as standard in DevEco Studio 3.0 Beta4 or later.|
| (Optional) HUAWEI DevEco Studio| 3.1 Preview for OpenHarmony| Recommended for developing OpenHarmony applications| | (Optional) HUAWEI DevEco Studio| 3.1 Preview for OpenHarmony| Recommended for developing OpenHarmony applications|
| (Optional) HUAWEI DevEco Device Tool| 3.0 Release| Recommended for developing OpenHarmony smart devices| | (Optional) HUAWEI DevEco Device Tool| 3.0 Release| Recommended for developing OpenHarmony smart devices|
...@@ -75,12 +75,12 @@ repo forall -c 'git lfs pull' ...@@ -75,12 +75,12 @@ repo forall -c 'git lfs pull'
| Source Code| Version| Mirror| SHA-256 Checksum| | Source Code| Version| Mirror| SHA-256 Checksum|
| -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- |
| Full code base (for mini, small, and standard systems)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/code-v3.1.4-Release.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/code-v3.1.4-Release.tar.gz.sha256) | | Full code base (for mini, small, and standard systems)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/code-v3.1.4-Release-2022-12-12.tar.gz)| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/code-v3.1.4-Release-2022-12-12.tar.gz.sha256)|
| Hi3516 standard system solution (binary)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_hi3516.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_hi3516.tar.gz.sha256) | | Hi3516 standard system solution (binary)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_hi3516.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_hi3516.tar.gz.sha256) |
| RK3568 standard system solution (binary)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_rk3568.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_rk3568.tar.gz.sha256) | | RK3568 standard system solution (binary)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_rk3568.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/standard_rk3568.tar.gz.sha256) |
| Hi3861 mini system solution (binary)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_pegasus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_pegasus.tar.gz.sha256) | | Hi3861 mini system solution (binary)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_pegasus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_pegasus.tar.gz.sha256) |
| Hi3516 small system solution - LiteOS (binary)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus.tar.gz.sha256) | | Hi3516 small system solution - LiteOS (binary)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus.tar.gz.sha256) |
| Hi3516 small system solution - Linux (binary)| 3.1.4&nbsp;Release | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus_linux.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus_linux.tar.gz.sha256) | | Hi3516 small system solution - Linux (binary)| 3.1.4 Release| [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus_linux.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/hispark_taurus_linux.tar.gz.sha256) |
| Full SDK package for the standard system (macOS)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-full.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-full.tar.gz.sha256) | | Full SDK package for the standard system (macOS)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-full.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-full.tar.gz.sha256) |
| Full SDK package for the standard system (Windows/Linux)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-full.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-full.tar.gz.sha256) | | Full SDK package for the standard system (Windows/Linux)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-full.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-full.tar.gz.sha256) |
| Public SDK package for the standard system (macOS)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-public.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-public.tar.gz.sha256) | | Public SDK package for the standard system (macOS)| 3.1.9.7 | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-public.tar.gz) | [Download](https://mirrors.huaweicloud.com/openharmony/os/3.1.4/ohos-sdk-mac-public.tar.gz.sha256) |
......
...@@ -172,7 +172,7 @@ This version has the following updates to OpenHarmony 3.1 Release. ...@@ -172,7 +172,7 @@ This version has the following updates to OpenHarmony 3.1 Release.
### API Updates ### API Updates
*[API Differences](api-change/v3.2-beta1/Readme-EN.md)* *[API Differences](api-diff/v3.2-beta1/Readme-EN.md)*
### Chip and Development Board Adaptation ### Chip and Development Board Adaptation
...@@ -204,7 +204,7 @@ For details about the adaptation status, see [SIG-Devboard](https://gitee.com/op ...@@ -204,7 +204,7 @@ For details about the adaptation status, see [SIG-Devboard](https://gitee.com/op
| ArkUI | [Game2048](https://gitee.com/openharmony/applications_app_samples/tree/master/ETSUI/Game2048) | This sample shows how to develop a 2048 game using the **\<Grid>** component.| eTS | | ArkUI | [Game2048](https://gitee.com/openharmony/applications_app_samples/tree/master/ETSUI/Game2048) | This sample shows how to develop a 2048 game using the **\<Grid>** component.| eTS |
| Window Manager| [Window](https://gitee.com/openharmony/applications_app_samples/tree/master/Graphics/Window) | This sample shows how to create a window, display an application over another application in the form of a floating window, and display an application on split screens.| eTS | | Window Manager| [Window](https://gitee.com/openharmony/applications_app_samples/tree/master/Graphics/Window) | This sample shows how to create a window, display an application over another application in the form of a floating window, and display an application on split screens.| eTS |
| Distributed data management| [Preference](https://gitee.com/openharmony/applications_app_samples/tree/master/data/Preferences) | This sample shows the theme switching function of preferences.| eTS | | Distributed data management| [Preference](https://gitee.com/openharmony/applications_app_samples/tree/master/data/Preferences) | This sample shows the theme switching function of preferences.| eTS |
| ArkUI | [NativeAPI](https://gitee.com/openharmony/applications_app_samples/tree/master/Native/NativeAPI) | This sample shows how to call C++ APIs in eTS and how C++ APIs call back JS APIs to play the Gomoku game. The native APIs implement the calculation logic, and eTS implements UI rendering and re-rendering.| eTS/C++ | | ArkUI | [NativeAPI](https://gitee.com/openharmony/app_samples/tree/master/Native/NativeAPI) | This sample shows how to call C++ APIs in eTS and how C++ APIs call back JS APIs to play the Gomoku game. The native APIs implement the calculation logic, and eTS implements UI rendering and re-rendering.| eTS/C++ |
| Globalization| [International](https://gitee.com/openharmony/applications_app_samples/tree/master/common/International) | This sample shows how to use APIs related to i18n, intl, and resourceManager in eTS to set the system language, region, time, and time zone. It also provides locale setting examples.| eTS | | Globalization| [International](https://gitee.com/openharmony/applications_app_samples/tree/master/common/International) | This sample shows how to use APIs related to i18n, intl, and resourceManager in eTS to set the system language, region, time, and time zone. It also provides locale setting examples.| eTS |
For more information, visit [Samples](https://gitee.com/openharmony/applications_app_samples). For more information, visit [Samples](https://gitee.com/openharmony/applications_app_samples).
......
...@@ -176,7 +176,7 @@ This version has the following updates to OpenHarmony 3.2 Beta2. ...@@ -176,7 +176,7 @@ This version has the following updates to OpenHarmony 3.2 Beta2.
For details about the API changes, see the following: For details about the API changes, see the following:
[API Differences](api-change/v3.2-beta3/Readme-EN.md) [API Differences](api-diff/v3.2-beta3/js-apidiff-ability.md)
### Chip and Development Board Adaptation ### Chip and Development Board Adaptation
......
# OpenHarmony 3.2 Beta4
## Version Description
OpenHarmony 3.2 Beta4 provides the following enhancements over OpenHarmony 3.2 Beta3:
**Enhanced basic capabilities for the standard system**
The program access control subsystem supports forward-edge Control Flow Integrity (CFI) and provides enhanced API exception handling.
The kernel subsystem provides enhanced HyperHold memory expansion and F2FS device performance optimization.
The multimodal input subsystem allows applications to enable or disable keys on the keyboard and supports multi-hotspot related to input devices.
The graphics subsystem supports graphics data transmission based on shared memory, YUV graphics layers, GPU compositing on RenderService, and rotation and dynamic resolution of the virtual screen.
The update subsystem supports A/B hot updates, and A/B partition device updates for flashd and SD/OTG.
The globalization subsystem supports on-demand subscription of device management events, overlay differentiation of system resources, and cross-OS resource management.
The Misc services subsystem supports file upload in PUT mode, download task configuration, input method framework optimization and enhancement, and printing service framework.
The DFX subsystem supports collection of power consumption data, system event data, and perf data.
ArkTS APIs support error code reporting, which delivers higher exception handling efficiency.
**Enhanced application development framework for the standard system**
Dynamic library isolation is supported, and applications to be disposed can be interrupted during runtime management.
Window property setting and ArkTS widget interaction are supported. The **\<XComponent>** provides the container component capability.
Application dependencies can be configured. The list of installed and uninstalled applications can be added, deleted, and queried. The list of applications that are forbidden to run can be added, deleted, and queried.
**Enhanced distributed capabilities for the standard system**
The distributed hardware supports the request and import of credential parameters of the same account.
## Version mapping
**Table 1** Version mapping of software and tools
| Software/Tool| Version| Remarks|
| -------- | -------- | -------- |
| OpenHarmony | 3.2 Beta4 | NA |
| Public SDK | Ohos_sdk_public 3.2.9.2 (API Version 9 Beta4) | This toolkit is intended for application developers and does not contain system APIs that require system permissions. It is provided as standard in DevEco Studio.|
| Full SDK | Ohos_sdk_full 3.2.9.2 (API Version 9 Beta4) | This toolkit is intended for original equipment manufacturers (OEMs) and contains system APIs that require system permissions. To use the Full SDK, you must manually obtain it from the mirror and switch to it in DevEco Studio. For details, see [Guide to Switching to Full SDK](../application-dev/quick-start/full-sdk-switch-guide.md).|
| (Optional) HUAWEI DevEco Studio| 3.1 Canary1 | Recommended for developing OpenHarmony applications|
| (Optional) HUAWEI DevEco Device Tool| 3.1 Beta1 | Recommended for developing OpenHarmony smart devices|
## Source Code Acquisition
### Prerequisites
1. Register your account with Gitee.
2. Register an SSH public key for access to Gitee.
3. Install the [git client](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure user information.
```
git config --global user.name "yourname"
git config --global user.email "your-email-address"
git config --global credential.helper store
```
4. Run the following commands to install the **repo** tool:
```
curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo # If you do not have the permission, download the tool to another directory and configure it as an environment variable by running the chmod a+x /usr/local/bin/repo command.
pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
```
### Acquiring Source Code Using the repo Tool
**Method 1 (recommended)**
Use the **repo** tool to download the source code over SSH. (You must have an SSH public key for access to Gitee.)
- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands:
```
repo init -u git@gitee.com:openharmony/manifest.git -b OpenHarmony-3.2-Beta4 --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
- Obtain the source code from the version tag, which is the same as that released with the version.
```
repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-v3.2-Beta4 --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
**Method 2**
Use the **repo** tool to download the source code over HTTPS.
- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands:
```
repo init -u https://gitee.com/openharmony/manifest -b OpenHarmony-3.2-Beta4 --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
- Obtain the source code from the version tag, which is the same as that released with the version.
```
repo init -u https://gitee.com/openharmony/manifest -b refs/tags/OpenHarmony-v3.2-Beta4 --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```
### Acquiring Source Code from Mirrors
**Table 2** Mirrors for acquiring source code
| Source Code | Version| Mirror | SHA-256 Checksum | Software Package Size|
| --------------------------------------- | ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -------- |
| Full code base (for mini, small, and standard systems) | 3.2 Beta4 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/code-v3.2-Beta4.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/code-v3.2-Beta4.tar.gz.sha256) | 19.0 GB |
| Hi3861 mini system solution (binary) | 3.2 Beta4 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/hispark_pegasus.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/hispark_pegasus.tar.gz.sha256) | 22.6 MB |
| Hi3516 mini system solution - LiteOS (binary)| 3.2 Beta4 | [Download](https://repo.huaweicloud.com/openharmony/os/3.2-Beta4/hispark_taurus_LiteOS.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/3.2-Beta4/hispark_taurus_LiteOS.tar.gz.sha256) | 293.9 MB |
| Hi3516 mini system solution - Linux (binary) | 3.2 Beta4 | [Download](https://repo.huaweicloud.com/openharmony/os/3.2-Beta4/hispark_taurus_Linux.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/3.2-Beta4/hispark_taurus_Linux.tar.gz.sha256) | 173.2 MB |
| RK3568 standard system solution (binary) | 3.2 Beta4 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/dayu200_standard_arm32.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/dayu200_standard_arm32.tar.gz.sha256) | 3.2 GB |
| Full SDK package for the standard system (macOS) | 3.2.9.2 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-mac-full.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-mac-full.tar.gz.sha256) | 662.5 MB |
| Full SDK package for the standard system (Windows\Linux) | 3.2.9.2 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-windows_linux-full.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-windows_linux-full.tar.gz.sha256) | 1.5 GB |
| Public SDK package for the standard system (macOS) | 3.2.9.2 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-mac-public.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-mac-public.tar.gz.sha256) | 622.2 MB |
| Public SDK package for the standard system (Windows\Linux) | 3.2.9.2 | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-windows_linux-public.tar.gz) | [Download](https://repo.huaweicloud.com/harmonyos/os/3.2-Beta4/ohos-sdk-windows_linux-public.tar.gz.sha256) | 1.5 GB |
### Prerequisites
1. Register your account with Gitee.
2. Register an SSH public key for access to Gitee.
3. Install the [git client](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure user information.
```
git config --global user.name "yourname"
git config --global user.email "your-email-address"
git config --global credential.helper store
```
4. Run the following commands to install the **repo** tool:
```
curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo # If you do not have the permission, download the tool to another directory and configure it as an environment variable by running the chmod a+x /usr/local/bin/repo command.
pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
```
## What's New
This version has the following updates to OpenHarmony 3.2 Beta3.
### Feature Updates
**Table 3** New and enhanced features
| Subsystem| Standard System| Mini and Small Systems|
| -------- | -------- | -------- |
| Common| ArkTS APIs support error code reporting, which delivers higher exception handling efficiency.| NA |
| Ability framework| The runtime management dialog box is optimized.<br>The following requirement is involved:<br>I5X5J9 [ability_runtime] Optimized runtime management dialog box| NA |
| ArkUI development framework| - The **\<Navigation>** component is reconstructed in the split-column scenario and single-page scenario.<br>- The **\<XComponent>** provides the container component capability.<br>The following requirements are involved:<br>I5X5GE Enhanced interaction normalization capability<br>I5X5FX ArkTS widget interaction<br>I5X5G3 Reconstructed **\<Navigation>** component in the split-column scenario<br>I5X5G4 Reconstructed **\<Navigation>** component in the single-page scenario<br>I5X5GG Container component capability of the **\<XComponent>**| NA |
| Program access control subsystem| Privacy control is provided for the use of sensitive resources.<br>The following requirements are involved:<br>I5RWXF [New feature] Global microphone setting management<br>I5RWX8 [New feature] Microphone usage status management| NA |
| SAMGR| Distributed invoking component management is added to prevent malicious application startup or keepalive.<br>The following requirements are involved:<br>I5T6GJ [Distributed component management] [DMS] Ability component launch management<br>I5T6HF [Distributed component management] [DMS] ServiceAbility/ServiceExtensionAbility component launch management| NA |
| Multimedia subsystem| - Privacy control is provided for the use of sensitive resources.<br>- The volume can be set based on the device group, and the DTMF dial tone can be played.<br>The following requirements are involved:<br>I5X5HT [Enhanced feature] Device group based volume setting<br>I5X5IF [New feature] Voice broadcast playback type and voice recognition recording type<br>I5X48J [New feature] Support for the DTMF dial tone| NA |
| Test subsystem| The kernel memory event analysis capability is added to SmartPerf-Host to enhance performance fault locating.<br>The following requirement is involved:<br>I5X55J [New feature] Kernel memory event analysis| NA |
| Bundle management framework| Application installation and startup management is added.<br>The following requirements are involved:<br>I5MZ8K [New feature] Adding, deleting, and querying the list of applications that are forbidden to run<br>I5MZ8Q [New Feature] Adding, deleting, and querying the list of installed and uninstalled applications| NA |
| Common event and notification subsystem| The custom system HAP dialog box is used to replace the original **UIService** dialog box, reducing the ArkUI memory usage.<br>The following requirement is involved:<br>I5X5L0 Using a preset application instead of **UIService** to display a notification dialog box| NA |
| Distributed hardware subsystem| The implementation of the PIN dialog box is optimized for higher module stability.<br>The following requirement is involved:<br>I5X5KX [Enhanced feature] Optimized implementation of the PIN dialog box| NA |
| Update subsystem| The A/B hot upgrade feature is added.<br>The following requirements are involved:<br>I5X4RO [Enhanced feature] A/B update support for the update_service component<br>I5X4RQ [Updater] Output of the A/B hot update documents<br>I5X4RR [New feature] A/B partition device update for flashd<br>I5X4RT [New feature] A/B partition device update for SD/OTG<br>I5X4RU [New feature] Support for A/B hot update| NA |
| Kernel subsystem| The ARM 64 CPU can restrict privileged users from accessing memory that can be accessed by non-privileged users. If a privileged user attempts to access such memory, an exception is thrown.<br>The HyperHold memory uses the high-speed swap partition technology and corresponding policies to support application keepalive.<br>The following requirements are involved:<br>I5X5AR [New feature] ARM 64 support for PAN<br>I5X5AS [New feature] ARM 64 support for PXN<br>I5X5B9 [New feature] HyperHold memory expansion: The high-speed swap partition technology and corresponding policies are used to support application keepalive.| NA |
| Graphics subsystem| The pointer style can be set in the window drag-and-drop scenario.<br>The following requirement is involved:<br>I5X5D9 Setting the pointer style in the window drag-and-drop scenario| NA |
| Multi-language runtime subsystem| AOT PGO files can be generated.<br>The following requirements are involved:<br>I5X5K3 [New specifications] Generation of AOT PGO files<br>I5X5K2 [New specifications] AOT PGO configuration| NA |
| Web subsystem| - The webview component allows users to select and copy both text and text on pages.<br>- The web component supports window events, full-screen events, and URL obtaining.<br>The following requirements are involved:<br>I5QA3D [New feature] [webview] Content selection and copy on a page with both texts and images<br>I5X53B [Enhanced feature] URL obtaining support by the web component<br>I5R6E0 [New specifications] Full-screen event support by the web component<br>I5X53C [New specifications] Window event support by the web component| NA |
| Misc services subsystem| - The input method framework supports listening for the switching of input methods and input method subtypes.<br>- Files can be uploaded in PUT mode.<br>The following requirements are involved:<br>I5X5LA [input_method_fwk] Listening for the switching of input methods and input method subtypes<br>I5X5LR [request] File uploading in PUT mode| NA |
| USB subsystem| The dialog box displayed for permission request is adapted to the new system dialog box solution.<br>The following requirement is involved:<br>I5UYX4 [New feature] Adaptation of the permission request dialog box to the new system dialog box solution| NA |
| File management subsystem| High-frequency APIs, such as APIs for opening and reading a file, are compatible across platforms.<br>The following requirements are involved:<br>I5X5E5 [fileAPI] [Capability bridging] Bridging the file I/O capability of the target platform<br>I5X5E6 [fileAPI] [Capability bridging] Bridging the file I/O capability of the target platform<br>I5X4P2 [filePicker] Modification to the file access framework interface| NA |
| DFX | - HiTrace provides a unified dotting interface and call link interface.<br>- The power consumption data and system event data can be collected.<br>- Perf data can be collected during the startup of the JS HAP.<br>The following requirements are involved:<br>I5X4TY [New feature] Unified dotting interface of HiTrace: HiTraceMeter<br>I5X4U1 [New feature] Unified call link interface of HiTrace: HiTraceChain<br>I5X4TD [New feature] Power consumption data collection<br>I5X4TE [New feature] System event data collection<br>I5X4TL [New feature] Collection of perf data during JS HAP startup| NA |
For details about the API changes, see the following:
[API Differences](api-diff/v3.2-beta4/js-apidiff-ability.md)
### Chip and Development Board Adaptation
For details about the adaptation status, see [SIG-Devboard](https://gitee.com/openharmony/community/blob/master/sig/sig-devboard/sig_devboard.md).
### Samples
The following samples written in ArkTS are added.
**Table 4** New samples
| Subsystem<div style="width:100px"></div>| Name| Introduction|
| -------- | -------- | -------- |
| Common event and notification subsystem| [Event Notification](https://gitee.com/openharmony/applications_app_samples/tree/master/Notification/CustomEmitter)| This sample shows the in-process event notification. After a user selects an offering and submits an order, the selected offering is displayed in the order list.|
| Data management subsystem| [Cross-Application Data Sharing](https://gitee.com/openharmony/applications_app_samples/tree/master/data/CrossAppDataShare)| This sample implements cross-application data sharing. It provides contacts (data provider) and contacts assistant (data user). Contacts support functionalities such as adding, deleting, modifying, and querying contacts data. Contacts assistant supports contacts data synchronization and merging of duplicate data.|
| Multimedia subsystem| [Background Music Playback](https://gitee.com/openharmony/applications_app_samples/tree/master/ResourcesSchedule/PlayMusicBackground)| This sample implements the request for a continuous task to continue music playback in the background. It is based on the stage model.|
| Resource scheduler subsystem| [Agent-Powered Scheduled Reminder](https://gitee.com/openharmony/applications_app_samples/tree/master/ResourcesSchedule/ReminderAgentManager)| This sample uses agent-powered scheduled reminder to create three types of scheduled reminders: alarm clocks, calendar events, and countdown timers. Agent-powered scheduled reminder ensures that the timing and pop-up notification functions will be performed by the system service agent in the background when the application is frozen or exits.|
| File management subsystem| [Storage Space Statistics](https://gitee.com/openharmony/applications_app_samples/tree/master/FileManager/StorageStatistic)| This sample uses the application package management, application space statistics, and volume management modules to implement the viewing of storage space information of the current device, all installed applications, and all available volumes.|
| Window manager| [Screenshot](https://gitee.com/openharmony/applications_app_samples/tree/master/Graphics/Screenshot)| This sample uses the screenshot, window, and display modules to take screenshots, switch the privacy window, and query the privacy window, in sequence.|
| Bundle management framework| [Multi-HAP](https://gitee.com/openharmony/applications_app_samples/tree/master/bundle/MultiHap)| This sample shows the development of multi-HAP. The sample app includes one entry HAP and two feature HAPs. The two feature HAPs provide audio and video playback components, respectively. The two components are also used in the entry component.|
| Ability framework| [Ability Launch Mode](https://gitee.com/openharmony/applications_app_samples/tree/master/ability/AbilityStartMode)| This sample shows how to implement the standard, singleton, and specified ability launch modes in the stage model.|
| Resource management| [Application Theme Switch](https://gitee.com/openharmony/applications_app_samples/tree/master/ETSUI/ApplicationThemeSwitch)| This sample creates the **dark** and **light** folders at the same level as the **base** folder to configure resources related to the dark and light themes. The custom theme file is configured in the **ThemeConst** file to implement multi-theme switching by controlling variables.|
For more information, visit [Samples](https://gitee.com/openharmony/app_samples).
## Resolved Issues
**Table 5** Resolved issues
| Issue No.| Description|
| -------- | -------- |
| I5S40B | The actual sliding frame rate of **Contacts** is 30.3 fps, which is less than the baseline value (54 fps) by 23.7 fps.|
| I5MVDK | A crash occurs when a socket fuzz test is performed on **/data/data/.pulse_dir/runtime/cli**.|
| I5M3UO | [TTE WRC team] There is new line injection via the Wi-Fi SSID in the wifi_manager_service.|
| I5SXXR | High-privilege processes exist in lightweight graphics.|
## Known Issues
**Table 6** Known issues
| Issue No.| Description| Impact| To Be Resolved By|
| -------- | -------- | -------- | -------- |
| I5KMQX | [rk3568] [ToC] [Probability: inevitably] The actual delay for a switch between the contacts and dialing subtabs is 1770.8 ms, which is 1330 ms longer than the baseline value (440 ms).| The overall static KPIs and load meet the requirements, and the impact is controllable.| 2022-12-30|
| I61M6T | In the resident memory test performed on the RK3568 device, the actual value of the com.ohos.launcher process is 99514 KB, which exceeds the baseline value (84279 KB) by 14.8 MB.| The entire system memory meets the requirement, and the impact is controllable.| 2022-12-30|
| I59QII | In the resident memory test performed on the RK3568 device, the actual value of the netmanager process is 3884 KB, which exceeds the baseline value (1241 KB) by 2.58 MB. In the memory test, the actual value of the netmanager process exceeds the baseline value (1241 KB) by 1 MB.| The entire system memory meets the requirement, and the impact is controllable.| 2022-12-30|
| I5Q5PR | In the resident memory test performed on the RK3568 device, the actual value of the wifi_hal_service process is 4374 KB, which exceeds the baseline value (829 KB) by 3.4 MB.| The entire system memory meets the requirement, and the impact is controllable.| 2022-12-30|
| I61E1I | BR P2P transmission fails between RK3568 devices.| DSoftBus can transmit data through Bluetooth and LAN, but fails to do so using BR P2P.| 2022-12-30|
| I63DX6 | Wi-Fi P2P transmission fails between RK3568 devices| DSoftBus can transmit data through Bluetooth and LAN, but fails to do so using Wi-Fi P2P.| 2022-12-30|
| I63FEA | [rk3568] When the system camera application is started, the preview image rotates 90 degrees counterclockwise.| This is a hardware adaptation problem. It occurs on RK3568 devices with 8 GB memory, but not on RK3568 devices with 4 GB memory| 2022-12-30|
| I62EW1 | The media_server (L1) processes use the root permission.| Some chip component services are running in the media_server process, and therefore the root permission is required. Decoupling is required.| 2022-12-30|
| I5XYRX, I5YTYX, I5YU16, I5YUB4, I5YUBS| The functions related to the Bluetooth protocol stack module have an out-of-bounds read vulnerability.| The functions have an out-of-bounds read vulnerability.| 2022-12-30|
| I5SSEW, I5UFS1, I5ICMZ, I5ICM7, I5QC6H, I5R2L5, I5R2LI, I5SQO0, I5UDY5, I5YPMZ| The giflib component, das u-boot component, and kernel have known vulnerabilities.| The solutions to the vulnerabilities will be synchronized after they are released on the official website. No patch solution is available by now.| 2022-12-30|
# OpenHarmony Release Notes # OpenHarmony Release Notes
## OpenHarmony 3.x Releases ## OpenHarmony 3.x Releases
- [OpenHarmony v3.2 Beta4 (2022-11-30)](OpenHarmony-v3.2-beta4.md)
- [OpenHarmony v3.2 Beta3 (2022-09-30)](OpenHarmony-v3.2-beta3.md) - [OpenHarmony v3.2 Beta3 (2022-09-30)](OpenHarmony-v3.2-beta3.md)
- [OpenHarmony v3.2 Beta2 (2022-07-30)](OpenHarmony-v3.2-beta2.md) - [OpenHarmony v3.2 Beta2 (2022-07-30)](OpenHarmony-v3.2-beta2.md)
- [OpenHarmony v3.2 Beta1 (2022-05-31)](OpenHarmony-v3.2-beta1.md) - [OpenHarmony v3.2 Beta1 (2022-05-31)](OpenHarmony-v3.2-beta1.md)
...@@ -11,6 +12,7 @@ ...@@ -11,6 +12,7 @@
- [OpenHarmony v3.1.1 Release (2022-05-31)](OpenHarmony-v3.1.1-release.md) - [OpenHarmony v3.1.1 Release (2022-05-31)](OpenHarmony-v3.1.1-release.md)
- [OpenHarmony v3.1 Beta (2021-12-31)](OpenHarmony-v3.1-beta.md) - [OpenHarmony v3.1 Beta (2021-12-31)](OpenHarmony-v3.1-beta.md)
- [OpenHarmony v3.0 LTS (2021-09-30)](OpenHarmony-v3.0-LTS.md) - [OpenHarmony v3.0 LTS (2021-09-30)](OpenHarmony-v3.0-LTS.md)
- [OpenHarmony v3.0.7 LTS (2022-12-05)](OpenHarmony-v3.0.7-LTS.md)
- [OpenHarmony v3.0.6 LTS (2022-09-15)](OpenHarmony-v3.0.6-LTS.md) - [OpenHarmony v3.0.6 LTS (2022-09-15)](OpenHarmony-v3.0.6-LTS.md)
- [OpenHarmony v3.0.5 LTS (2022-07-01)](OpenHarmony-v3.0.5-LTS.md) - [OpenHarmony v3.0.5 LTS (2022-07-01)](OpenHarmony-v3.0.5-LTS.md)
- [OpenHarmony v3.0.3 LTS (2022-04-08)](OpenHarmony-v3.0.3-LTS.md) - [OpenHarmony v3.0.3 LTS (2022-04-08)](OpenHarmony-v3.0.3-LTS.md)
......
# Readme
This directory records the API changes in OpenHarmony 3.2 Beta2 over OpenHarmony 3.2 Beta1, including new, updated, deprecated, and deleted APIs.
- JS API Differences
- [Ability framework](js-apidiff-ability.md)
- [Accessibility subsystem](js-apidiff-accessibility.md)
- [Account subsystem](js-apidiff-account.md)
- [ArkUI development framework](js-apidiff-arkui.md)
- [Bundle management framework](js-apidiff-bundle.md)
- [Communication subsystem](js-apidiff-communicate.md)
- [Utils subsystem](js-apidiff-compiler-and-runtime.md)
- [DFX subsystem](js-apidiff-dfx.md)
- [Distributed data management subsystem](js-apidiff-distributed-data.md)
- [Common event and notification subsystem](js-apidiff-event-and-notification.md)
- [File management subsystem](js-apidiff-file-management.md)
- [Location subsystem](js-apidiff-geolocation.md)
- [Globalization subsystem](js-apidiff-global.md)
- [Graphics subsystem](js-apidiff-graphic.md)
- [Misc services subsystem](js-apidiff-misc.md)
- [Multimodal input subsystem](js-apidiff-multi-modal-input.md)
- [Multimedia subsystem](js-apidiff-multimedia.md)
- [Resource scheduler subsystem](js-apidiff-resource-scheduler.md)
- [Security subsystem](js-apidiff-security.md)
- [Pan-sensor subsystem](js-apidiff-sensor.md)
- [DSoftBus subsystem](js-apidiff-soft-bus.md)
- [Test subsystem](js-apidiff-unitest.md)
- [Update subsystem](js-apidiff-update.md)
- [USB subsystem](js-apidiff-usb.md)
- [User IAM subsystem](js-apidiff-user-authentication.md)
- [Web subsystem](js-apidiff-web.md)
- [Window manager subsystem](js-apidiff-window.md)
- ChangeLog
- [Updates (OpenHarmony 3.2 Beta1 -> OpenHarmony 3.2 Beta2)](changelog-v3.2-beta2.md)
- [Adaptation Guide for the Application Sandbox](application-sandbox-adaptation-guide.md)
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_APP_ACCOUNT_AUTH|@ohos.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.Ability<br>Class name: Ability|@ohos.app.ability.Ability.d.ts|
|Added||Module name: ohos.app.ability.Ability<br>Class name: Ability<br>Method or attribute name: onConfigurationUpdate|@ohos.app.ability.Ability.d.ts|
|Added||Module name: ohos.app.ability.Ability<br>Class name: Ability<br>Method or attribute name: onMemoryLevel|@ohos.app.ability.Ability.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: AbilityConstant|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchParam|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchParam<br>Method or attribute name: launchReason|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchParam<br>Method or attribute name: lastExitReason|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: UNKNOWN|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: START_ABILITY|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: CALL|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: CONTINUATION|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: APP_RECOVERY|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LastExitReason|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LastExitReason<br>Method or attribute name: UNKNOWN|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LastExitReason<br>Method or attribute name: ABILITY_NOT_RESPONDING|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: LastExitReason<br>Method or attribute name: NORMAL|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnContinueResult|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnContinueResult<br>Method or attribute name: AGREE|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnContinueResult<br>Method or attribute name: REJECT|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnContinueResult<br>Method or attribute name: MISMATCH|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: MemoryLevel|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: MemoryLevel<br>Method or attribute name: MEMORY_LEVEL_MODERATE|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: MemoryLevel<br>Method or attribute name: MEMORY_LEVEL_LOW|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: MemoryLevel<br>Method or attribute name: MEMORY_LEVEL_CRITICAL|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode<br>Method or attribute name: WINDOW_MODE_UNDEFINED|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode<br>Method or attribute name: WINDOW_MODE_FULLSCREEN|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode<br>Method or attribute name: WINDOW_MODE_SPLIT_PRIMARY|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode<br>Method or attribute name: WINDOW_MODE_SPLIT_SECONDARY|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: WindowMode<br>Method or attribute name: WINDOW_MODE_FLOATING|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: ALL_AGREE|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: CONTINUATION_REJECT|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: CONTINUATION_MISMATCH|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: RECOVERY_AGREE|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: RECOVERY_REJECT|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: ALL_REJECT|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: StateType|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: StateType<br>Method or attribute name: CONTINUATION|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.AbilityConstant<br>Class name: StateType<br>Method or attribute name: APP_RECOVERY|@ohos.app.ability.AbilityConstant.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: abilityDelegatorRegistry|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: abilityDelegatorRegistry<br>Method or attribute name: getAbilityDelegator|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: abilityDelegatorRegistry<br>Method or attribute name: getArguments|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState<br>Method or attribute name: UNINITIALIZED|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState<br>Method or attribute name: CREATE|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState<br>Method or attribute name: FOREGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState<br>Method or attribute name: BACKGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.abilityDelegatorRegistry<br>Class name: AbilityLifecycleState<br>Method or attribute name: DESTROY|@ohos.app.ability.abilityDelegatorRegistry.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onAbilityCreate|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onWindowStageCreate|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onWindowStageActive|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onWindowStageInactive|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onWindowStageDestroy|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onAbilityDestroy|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onAbilityForeground|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onAbilityBackground|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.AbilityLifecycleCallback<br>Class name: AbilityLifecycleCallback<br>Method or attribute name: onAbilityContinue|@ohos.app.ability.AbilityLifecycleCallback.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState<br>Method or attribute name: INITIAL|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState<br>Method or attribute name: FOREGROUND|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState<br>Method or attribute name: BACKGROUND|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState<br>Method or attribute name: FOREGROUNDING|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: AbilityState<br>Method or attribute name: BACKGROUNDING|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: updateConfiguration|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: updateConfiguration|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getAbilityRunningInfos|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getAbilityRunningInfos|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getExtensionRunningInfos|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getExtensionRunningInfos|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getTopAbility|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.abilityManager<br>Class name: abilityManager<br>Method or attribute name: getTopAbility|@ohos.app.ability.abilityManager.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage<br>Method or attribute name: context|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage<br>Method or attribute name: onCreate|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage<br>Method or attribute name: onAcceptWant|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage<br>Method or attribute name: onConfigurationUpdate|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.AbilityStage<br>Class name: AbilityStage<br>Method or attribute name: onMemoryLevel|@ohos.app.ability.AbilityStage.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState<br>Method or attribute name: STATE_CREATE|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState<br>Method or attribute name: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState<br>Method or attribute name: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState<br>Method or attribute name: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ApplicationState<br>Method or attribute name: STATE_DESTROY|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState<br>Method or attribute name: STATE_CREATE|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState<br>Method or attribute name: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState<br>Method or attribute name: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState<br>Method or attribute name: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: ProcessState<br>Method or attribute name: STATE_DESTROY|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: on_applicationState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: on_applicationState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: off_applicationState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: off_applicationState|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getForegroundApplications|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getForegroundApplications|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: killProcessWithAccount|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: killProcessWithAccount|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: isRunningInStabilityTest|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: isRunningInStabilityTest|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: killProcessesByBundleName|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: killProcessesByBundleName|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: clearUpApplicationData|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: clearUpApplicationData|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: isRamConstrainedDevice|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: isRamConstrainedDevice|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getAppMemorySize|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getAppMemorySize|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getProcessRunningInformation|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appManager<br>Class name: appManager<br>Method or attribute name: getProcessRunningInformation|@ohos.app.ability.appManager.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: appRecovery|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag<br>Method or attribute name: ALWAYS_RESTART|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag<br>Method or attribute name: CPP_CRASH_NO_RESTART|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag<br>Method or attribute name: JS_CRASH_NO_RESTART|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag<br>Method or attribute name: APP_FREEZE_NO_RESTART|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: RestartFlag<br>Method or attribute name: NO_RESTART|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveOccasionFlag|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveOccasionFlag<br>Method or attribute name: SAVE_WHEN_ERROR|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveOccasionFlag<br>Method or attribute name: SAVE_WHEN_BACKGROUND|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveModeFlag|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveModeFlag<br>Method or attribute name: SAVE_WITH_FILE|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: SaveModeFlag<br>Method or attribute name: SAVE_WITH_SHARED_MEMORY|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: appRecovery<br>Method or attribute name: enableAppRecovery|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: appRecovery<br>Method or attribute name: restartApp|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.appRecovery<br>Class name: appRecovery<br>Method or attribute name: saveAppState|@ohos.app.ability.appRecovery.d.ts|
|Added||Module name: ohos.app.ability.common<br>Class name: common|@ohos.app.ability.common.d.ts|
|Added||Module name: ohos.app.ability.common<br>Class name: AreaMode|@ohos.app.ability.common.d.ts|
|Added||Module name: ohos.app.ability.common<br>Class name: AreaMode<br>Method or attribute name: EL1|@ohos.app.ability.common.d.ts|
|Added||Module name: ohos.app.ability.common<br>Class name: AreaMode<br>Method or attribute name: EL2|@ohos.app.ability.common.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: language|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: colorMode|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: direction|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: screenDensity|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: displayId|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.Configuration<br>Class name: Configuration<br>Method or attribute name: hasPointerDevice|@ohos.app.ability.Configuration.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ConfigurationConstant|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ColorMode|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ColorMode<br>Method or attribute name: COLOR_MODE_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ColorMode<br>Method or attribute name: COLOR_MODE_DARK|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ColorMode<br>Method or attribute name: COLOR_MODE_LIGHT|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: Direction|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: Direction<br>Method or attribute name: DIRECTION_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: Direction<br>Method or attribute name: DIRECTION_VERTICAL|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: Direction<br>Method or attribute name: DIRECTION_HORIZONTAL|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_SDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_MDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_LDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_XLDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_XXLDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.ConfigurationConstant<br>Class name: ScreenDensity<br>Method or attribute name: SCREEN_DENSITY_XXXLDPI|@ohos.app.ability.ConfigurationConstant.d.ts|
|Added||Module name: ohos.app.ability.contextConstant<br>Class name: contextConstant|@ohos.app.ability.contextConstant.d.ts|
|Added||Module name: ohos.app.ability.contextConstant<br>Class name: AreaMode|@ohos.app.ability.contextConstant.d.ts|
|Added||Module name: ohos.app.ability.contextConstant<br>Class name: AreaMode<br>Method or attribute name: EL1|@ohos.app.ability.contextConstant.d.ts|
|Added||Module name: ohos.app.ability.contextConstant<br>Class name: AreaMode<br>Method or attribute name: EL2|@ohos.app.ability.contextConstant.d.ts|
|Added||Module name: ohos.app.ability.EnvironmentCallback<br>Class name: EnvironmentCallback|@ohos.app.ability.EnvironmentCallback.d.ts|
|Added||Module name: ohos.app.ability.EnvironmentCallback<br>Class name: EnvironmentCallback<br>Method or attribute name: onConfigurationUpdated|@ohos.app.ability.EnvironmentCallback.d.ts|
|Added||Module name: ohos.app.ability.errorManager<br>Class name: errorManager|@ohos.app.ability.errorManager.d.ts|
|Added||Module name: ohos.app.ability.errorManager<br>Class name: errorManager<br>Method or attribute name: on_error|@ohos.app.ability.errorManager.d.ts|
|Added||Module name: ohos.app.ability.errorManager<br>Class name: errorManager<br>Method or attribute name: off_error|@ohos.app.ability.errorManager.d.ts|
|Added||Module name: ohos.app.ability.errorManager<br>Class name: errorManager<br>Method or attribute name: off_error|@ohos.app.ability.errorManager.d.ts|
|Added||Module name: ohos.app.ability.ExtensionAbility<br>Class name: ExtensionAbility|@ohos.app.ability.ExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: on_mission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: off_mission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: off_mission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionInfo|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionInfo|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionInfos|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionInfos|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionSnapShot|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getMissionSnapShot|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getLowResolutionMissionSnapShot|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: getLowResolutionMissionSnapShot|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: lockMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: lockMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: unlockMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: unlockMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: clearMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: clearMission|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: clearAllMissions|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: clearAllMissions|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: moveMissionToFront|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: moveMissionToFront|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.missionManager<br>Class name: missionManager<br>Method or attribute name: moveMissionToFront|@ohos.app.ability.missionManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: quickFixManager|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: HapModuleQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: moduleName|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: originHapHash|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: quickFixFilePath|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleName|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleVersionCode|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleVersionName|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: quickFixVersionCode|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: quickFixVersionName|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: hapModuleQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: applyQuickFix|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: applyQuickFix|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: getApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: getApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: context|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onCreate|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onDestroy|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onRequest|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onConnect|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onDisconnect|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onReconnect|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onConfigurationUpdate|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.ServiceExtensionAbility<br>Class name: ServiceExtensionAbility<br>Method or attribute name: onDump|@ohos.app.ability.ServiceExtensionAbility.d.ts|
|Added||Module name: ohos.app.ability.StartOptions<br>Class name: StartOptions|@ohos.app.ability.StartOptions.d.ts|
|Added||Module name: ohos.app.ability.StartOptions<br>Class name: StartOptions<br>Method or attribute name: windowMode|@ohos.app.ability.StartOptions.d.ts|
|Added||Module name: ohos.app.ability.StartOptions<br>Class name: StartOptions<br>Method or attribute name: displayId|@ohos.app.ability.StartOptions.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: OnReleaseCallback|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: OnReleaseCallback<br>Method or attribute name: OnReleaseCallback|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: CalleeCallback|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: CalleeCallback<br>Method or attribute name: CalleeCallback|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: call|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: callWithResult|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: release|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: onRelease|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: on_release|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: off_release|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Caller<br>Method or attribute name: off_release|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Callee|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Callee<br>Method or attribute name: on|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: Callee<br>Method or attribute name: off|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: context|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: launchWant|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: lastRequestWant|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: callee|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onCreate|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onWindowStageCreate|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onWindowStageDestroy|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onWindowStageRestore|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onDestroy|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onForeground|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onBackground|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onContinue|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onNewWant|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onDump|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.UIAbility<br>Class name: UIAbility<br>Method or attribute name: onSaveState|@ohos.app.ability.UIAbility.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: deviceId|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: bundleName|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: abilityName|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: uri|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: type|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: flags|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: action|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: parameters|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: entities|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.Want<br>Class name: Want<br>Method or attribute name: moduleName|@ohos.app.ability.Want.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getBundleName|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getBundleName|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getUid|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getUid|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getWant|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getWant|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: cancel|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: cancel|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: trigger|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: trigger|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: equal|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: equal|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getWantAgent|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getWantAgent|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getOperationType|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: wantAgent<br>Method or attribute name: getOperationType|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: ONE_TIME_FLAG|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: NO_BUILD_FLAG|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: CANCEL_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: UPDATE_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: CONSTANT_FLAG|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: REPLACE_ELEMENT|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: REPLACE_ACTION|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: REPLACE_URI|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: REPLACE_ENTITIES|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: WantAgentFlags<br>Method or attribute name: REPLACE_BUNDLE|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType<br>Method or attribute name: UNKNOWN_TYPE|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType<br>Method or attribute name: START_ABILITY|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType<br>Method or attribute name: START_ABILITIES|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType<br>Method or attribute name: START_SERVICE|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: OperationType<br>Method or attribute name: SEND_COMMON_EVENT|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData<br>Method or attribute name: info|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData<br>Method or attribute name: want|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData<br>Method or attribute name: finalCode|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData<br>Method or attribute name: finalData|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantAgent<br>Class name: CompleteData<br>Method or attribute name: extraInfo|@ohos.app.ability.wantAgent.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: wantConstant|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_HOME|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_DIAL|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SEARCH|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_WIRELESS_SETTINGS|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_MANAGE_APPLICATIONS_SETTINGS|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_APPLICATION_DETAILS_SETTINGS|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SET_ALARM|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SHOW_ALARMS|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SNOOZE_ALARM|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_DISMISS_ALARM|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_DISMISS_TIMER|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SEND_SMS|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_CHOOSE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_IMAGE_CAPTURE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_VIDEO_CAPTURE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SELECT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SEND_DATA|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SEND_MULTIPLE_DATA|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_SCAN_MEDIA_FILE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_VIEW_DATA|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_EDIT_DATA|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: INTENT_PARAMS_INTENT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: INTENT_PARAMS_TITLE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_FILE_SELECT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: PARAMS_STREAM|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_APP_ACCOUNT_AUTH|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_MARKET_DOWNLOAD|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: ACTION_MARKET_CROWDTEST|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: DLP_PARAMS_SANDBOX|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: DLP_PARAMS_BUNDLE_NAME|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: DLP_PARAMS_MODULE_NAME|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: DLP_PARAMS_ABILITY_NAME|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Action<br>Method or attribute name: DLP_PARAMS_INDEX|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity<br>Method or attribute name: ENTITY_DEFAULT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity<br>Method or attribute name: ENTITY_HOME|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity<br>Method or attribute name: ENTITY_VOICE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity<br>Method or attribute name: ENTITY_BROWSABLE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Entity<br>Method or attribute name: ENTITY_VIDEO|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_AUTH_READ_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_AUTH_WRITE_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_FORWARD_RESULT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_CONTINUATION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_NOT_OHOS_COMPONENT|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_FORM_ENABLED|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_AUTH_PERSISTABLE_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_AUTH_PREFIX_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITYSLICE_MULTI_DEVICE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_START_FOREGROUND_ABILITY|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_CONTINUATION_REVERSIBLE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_INSTALL_ON_DEMAND|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_INSTALL_WITH_BACKGROUND_MODE|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_CLEAR_MISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_NEW_MISSION|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.ability.wantConstant<br>Class name: Flags<br>Method or attribute name: FLAG_ABILITY_MISSION_TOP|@ohos.app.ability.wantConstant.d.ts|
|Added||Module name: ohos.app.form.formBindingData<br>Class name: formBindingData|@ohos.app.form.formBindingData.d.ts|
|Added||Module name: ohos.app.form.formBindingData<br>Class name: formBindingData<br>Method or attribute name: createFormBindingData|@ohos.app.form.formBindingData.d.ts|
|Added||Module name: ohos.app.form.formBindingData<br>Class name: FormBindingData|@ohos.app.form.formBindingData.d.ts|
|Added||Module name: ohos.app.form.formBindingData<br>Class name: FormBindingData<br>Method or attribute name: data|@ohos.app.form.formBindingData.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: context|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onAddForm|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onCastToNormalForm|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onUpdateForm|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onChangeFormVisibility|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onFormEvent|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onRemoveForm|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onConfigurationUpdate|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onAcquireFormState|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.FormExtensionAbility<br>Class name: FormExtensionAbility<br>Method or attribute name: onShareForm|@ohos.app.form.FormExtensionAbility.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: deleteForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: deleteForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: releaseForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: releaseForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: releaseForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: requestForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: requestForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: castToNormalForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: castToNormalForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyVisibleForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyVisibleForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyInvisibleForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyInvisibleForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: enableFormsUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: enableFormsUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: disableFormsUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: disableFormsUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: isSystemReady|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: isSystemReady|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: getAllFormsInfo|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: getAllFormsInfo|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: getFormsInfo|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: getFormsInfo|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: getFormsInfo|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: deleteInvalidForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: deleteInvalidForms|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: acquireFormState|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: acquireFormState|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: on_formUninstall|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: off_formUninstall|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsVisible|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsVisible|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsEnableUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsEnableUpdate|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: shareForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: shareForm|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsPrivacyProtected|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsPrivacyProtected|@ohos.app.form.formHost.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: formInfo|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: bundleName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: moduleName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: abilityName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: name|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: description|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: type|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: jsComponentName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: colorMode|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: isDefault|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: updateEnabled|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: formVisibleNotify|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: relatedBundleName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: scheduledUpdateTime|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: formConfigAbility|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: updateDuration|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: defaultDimension|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: supportDimensions|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfo<br>Method or attribute name: customizeData|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormType|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormType<br>Method or attribute name: JS|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormType<br>Method or attribute name: eTS|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: ColorMode|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: ColorMode<br>Method or attribute name: MODE_AUTO|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: ColorMode<br>Method or attribute name: MODE_DARK|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: ColorMode<br>Method or attribute name: MODE_LIGHT|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormStateInfo|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormStateInfo<br>Method or attribute name: formState|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormStateInfo<br>Method or attribute name: want|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormState|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormState<br>Method or attribute name: UNKNOWN|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormState<br>Method or attribute name: DEFAULT|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormState<br>Method or attribute name: READY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: IDENTITY_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: DIMENSION_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: NAME_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: MODULE_NAME_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: WIDTH_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: HEIGHT_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: TEMPORARY_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: BUNDLE_NAME_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: ABILITY_NAME_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormParam<br>Method or attribute name: DEVICE_ID_KEY|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfoFilter|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormInfoFilter<br>Method or attribute name: moduleName|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension<br>Method or attribute name: Dimension_1_2|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension<br>Method or attribute name: Dimension_2_2|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension<br>Method or attribute name: Dimension_2_4|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension<br>Method or attribute name: Dimension_4_4|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: FormDimension<br>Method or attribute name: Dimension_2_1|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: VisibilityType|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_VISIBLE|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_INVISIBLE|@ohos.app.form.formInfo.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: setFormNextRefreshTime|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: setFormNextRefreshTime|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: updateForm|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: updateForm|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: getFormsInfo|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: getFormsInfo|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: getFormsInfo|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: requestPublishForm|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: requestPublishForm|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: requestPublishForm|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: isRequestPublishFormSupported|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.app.form.formProvider<br>Class name: formProvider<br>Method or attribute name: isRequestPublishFormSupported|@ohos.app.form.formProvider.d.ts|
|Added||Module name: ohos.application.Ability<br>Class name: Ability<br>Method or attribute name: onSaveState|@ohos.application.Ability.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: LaunchReason<br>Method or attribute name: APP_RECOVERY|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: ALL_AGREE|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: CONTINUATION_REJECT|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: CONTINUATION_MISMATCH|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: RECOVERY_AGREE|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: RECOVERY_REJECT|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: OnSaveResult<br>Method or attribute name: ALL_REJECT|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: StateType|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: StateType<br>Method or attribute name: CONTINUATION|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.AbilityConstant<br>Class name: StateType<br>Method or attribute name: APP_RECOVERY|@ohos.application.AbilityConstant.d.ts|
|Added||Module name: ohos.application.ExtensionAbility<br>Class name: ExtensionAbility|@ohos.application.ExtensionAbility.d.ts|
|Added||Module name: ohos.application.ExtensionAbility<br>Class name: ExtensionAbility<br>Method or attribute name: onConfigurationUpdated|@ohos.application.ExtensionAbility.d.ts|
|Added||Module name: ohos.application.ExtensionAbility<br>Class name: ExtensionAbility<br>Method or attribute name: onMemoryLevel|@ohos.application.ExtensionAbility.d.ts|
|Added||Module name: ohos.application.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsPrivacyProtected|@ohos.application.formHost.d.ts|
|Added||Module name: ohos.application.formHost<br>Class name: formHost<br>Method or attribute name: notifyFormsPrivacyProtected|@ohos.application.formHost.d.ts|
|Added||Module name: ohos.application.formInfo<br>Class name: FormType<br>Method or attribute name: eTS|@ohos.application.formInfo.d.ts|
|Added||Module name: ohos.application.formInfo<br>Class name: VisibilityType|@ohos.application.formInfo.d.ts|
|Added||Module name: ohos.application.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_VISIBLE|@ohos.application.formInfo.d.ts|
|Added||Module name: ohos.application.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_INVISIBLE|@ohos.application.formInfo.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: registerContinuation|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: registerContinuation|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: registerContinuation|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: unregisterContinuation|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: unregisterContinuation|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: updateContinuationState|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: updateContinuationState|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.continuation.continuationManager<br>Class name: continuationManager<br>Method or attribute name: startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts|
|Added||Module name: ohos.distributedMissionManager<br>Class name: distributedMissionManager<br>Method or attribute name: continueMission|@ohos.distributedMissionManager.d.ts|
|Added||Module name: ohos.distributedMissionManager<br>Class name: distributedMissionManager<br>Method or attribute name: continueMission|@ohos.distributedMissionManager.d.ts|
|Added||Module name: AbilityContext<br>Class name: AbilityContext<br>Method or attribute name: connectServiceExtensionAbility|AbilityContext.d.ts|
|Added||Module name: AbilityContext<br>Class name: AbilityContext<br>Method or attribute name: connectServiceExtensionAbilityWithAccount|AbilityContext.d.ts|
|Added||Module name: AbilityContext<br>Class name: AbilityContext<br>Method or attribute name: disconnectServiceExtensionAbility|AbilityContext.d.ts|
|Added||Module name: AbilityContext<br>Class name: AbilityContext<br>Method or attribute name: disconnectServiceExtensionAbility|AbilityContext.d.ts|
|Added||Method or attribute name: waitAbilityMonitor<br>Function name: waitAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback<UIAbility>): void;|abilityDelegator.d.ts|
|Added||Method or attribute name: waitAbilityMonitor<br>Function name: waitAbilityMonitor(monitor: AbilityMonitor, timeout: number, callback: AsyncCallback<UIAbility>): void;|abilityDelegator.d.ts|
|Added||Method or attribute name: waitAbilityMonitor<br>Function name: waitAbilityMonitor(monitor: AbilityMonitor, timeout?: number): Promise<UIAbility>;|abilityDelegator.d.ts|
|Added||Method or attribute name: getAbilityState<br>Function name: getAbilityState(ability: UIAbility): number;|abilityDelegator.d.ts|
|Added||Method or attribute name: getCurrentTopAbility<br>Function name: getCurrentTopAbility(callback: AsyncCallback<UIAbility>): void;|abilityDelegator.d.ts|
|Added||Method or attribute name: getCurrentTopAbility<br>Function name: getCurrentTopAbility(): Promise<UIAbility>|abilityDelegator.d.ts|
|Added||Method or attribute name: doAbilityForeground<br>Function name: doAbilityForeground(ability: UIAbility, callback: AsyncCallback<void>): void;|abilityDelegator.d.ts|
|Added||Method or attribute name: doAbilityForeground<br>Function name: doAbilityForeground(ability: UIAbility): Promise<void>;|abilityDelegator.d.ts|
|Added||Method or attribute name: doAbilityBackground<br>Function name: doAbilityBackground(ability: UIAbility, callback: AsyncCallback<void>): void;|abilityDelegator.d.ts|
|Added||Method or attribute name: doAbilityBackground<br>Function name: doAbilityBackground(ability: UIAbility): Promise<void>;|abilityDelegator.d.ts|
|Added||Module name: abilityMonitor<br>Class name: AbilityMonitor<br>Method or attribute name: moduleName|abilityMonitor.d.ts|
|Added||Method or attribute name: onAbilityCreate<br>Function name: onAbilityCreate?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onAbilityForeground<br>Function name: onAbilityForeground?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onAbilityBackground<br>Function name: onAbilityBackground?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onAbilityDestroy<br>Function name: onAbilityDestroy?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onWindowStageCreate<br>Function name: onWindowStageCreate?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onWindowStageRestore<br>Function name: onWindowStageRestore?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Method or attribute name: onWindowStageDestroy<br>Function name: onWindowStageDestroy?:(ability: UIAbility) => void;|abilityMonitor.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: on_abilityLifecycle|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: off_abilityLifecycle|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: off_abilityLifecycle|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: on_environment|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: off_environment|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: off_environment|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: getProcessRunningInformation|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: getProcessRunningInformation|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: killProcessesBySelf|ApplicationContext.d.ts|
|Added||Module name: ApplicationContext<br>Class name: ApplicationContext<br>Method or attribute name: killProcessesBySelf|ApplicationContext.d.ts|
|Added||Module name: ContinueCallback<br>Class name: ContinueCallback|ContinueCallback.d.ts|
|Added||Module name: ContinueCallback<br>Class name: ContinueCallback<br>Method or attribute name: onContinueDone|ContinueCallback.d.ts|
|Added||Module name: ContinueDeviceInfo<br>Class name: ContinueDeviceInfo|ContinueDeviceInfo.d.ts|
|Added||Module name: ContinueDeviceInfo<br>Class name: ContinueDeviceInfo<br>Method or attribute name: srcDeviceId|ContinueDeviceInfo.d.ts|
|Added||Module name: ContinueDeviceInfo<br>Class name: ContinueDeviceInfo<br>Method or attribute name: dstDeviceId|ContinueDeviceInfo.d.ts|
|Added||Module name: ContinueDeviceInfo<br>Class name: ContinueDeviceInfo<br>Method or attribute name: missionId|ContinueDeviceInfo.d.ts|
|Added||Module name: ContinueDeviceInfo<br>Class name: ContinueDeviceInfo<br>Method or attribute name: wantParam|ContinueDeviceInfo.d.ts|
|Added||Module name: MissionListener<br>Class name: MissionListener<br>Method or attribute name: onMissionLabelUpdated|MissionListener.d.ts|
|Added||Module name: ServiceExtensionContext<br>Class name: ServiceExtensionContext<br>Method or attribute name: connectServiceExtensionAbility|ServiceExtensionContext.d.ts|
|Added||Module name: ServiceExtensionContext<br>Class name: ServiceExtensionContext<br>Method or attribute name: connectServiceExtensionAbilityWithAccount|ServiceExtensionContext.d.ts|
|Added||Module name: ServiceExtensionContext<br>Class name: ServiceExtensionContext<br>Method or attribute name: disconnectServiceExtensionAbility|ServiceExtensionContext.d.ts|
|Added||Module name: ServiceExtensionContext<br>Class name: ServiceExtensionContext<br>Method or attribute name: disconnectServiceExtensionAbility|ServiceExtensionContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: abilityInfo|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: currentHapModuleInfo|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: config|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityByCall|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResult|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResult|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResult|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResultWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResultWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startAbilityForResultWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: startServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: stopServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: stopServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: stopServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: stopServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: terminateSelf|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: terminateSelf|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: terminateSelfWithResult|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: terminateSelfWithResult|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: connectServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: connectServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: disconnectServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: disconnectServiceExtensionAbility|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: setMissionLabel|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: setMissionLabel|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: setMissionIcon|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: setMissionIcon|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: requestPermissionsFromUser|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: requestPermissionsFromUser|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: restoreWindowStage|UIAbilityContext.d.ts|
|Added||Module name: UIAbilityContext<br>Class name: UIAbilityContext<br>Method or attribute name: isTerminating|UIAbilityContext.d.ts|
|Deleted|Module name: ohos.application.context<br>Class name: AreaMode||@ohos.application.context.d.ts|
|Deleted|Module name: ohos.application.context<br>Class name: AreaMode<br>Method or attribute name: EL1||@ohos.application.context.d.ts|
|Deleted|Module name: ohos.application.context<br>Class name: AreaMode<br>Method or attribute name: EL2||@ohos.application.context.d.ts|
|Deleted|Module name: ohos.application.formInfo<br>Class name: VisibilityType||@ohos.application.formInfo.d.ts|
|Deleted|Module name: ohos.application.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_VISIBLE||@ohos.application.formInfo.d.ts|
|Deleted|Module name: ohos.application.formInfo<br>Class name: VisibilityType<br>Method or attribute name: FORM_INVISIBLE||@ohos.application.formInfo.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: quickFixManager||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: HapModuleQuickFixInfo||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: moduleName||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: originHapHash||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: HapModuleQuickFixInfo<br>Method or attribute name: quickFixFilePath||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleName||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleVersionCode||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: bundleVersionName||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: quickFixVersionCode||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: quickFixVersionName||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: ApplicationQuickFixInfo<br>Method or attribute name: hapModuleQuickFixInfo||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: applyQuickFix||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: applyQuickFix||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: getApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts|
|Deleted|Module name: ohos.application.quickFixManager<br>Class name: quickFixManager<br>Method or attribute name: getApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts|
|Model changed|Class name: ability<br>model: @Stage Model Only|Class name: ability<br>model: @FA Model Only|@ohos.ability.ability.d.ts|
|Access level changed|Method or attribute name: startAbilityByCall<br>Access level: public API|Method or attribute name: startAbilityByCall<br>Access level: system API|AbilityContext.d.ts|
|Deprecated version changed|Class name: wantConstant<br>Deprecated version: N/A|Class name: wantConstant<br>Deprecated version: 9<br>New API: ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts|
|Deprecated version changed|Method or attribute name: ACTION_APP_ACCOUNT_OAUTH<br>Deprecated version: N/A|Method or attribute name: ACTION_APP_ACCOUNT_OAUTH<br>Deprecated version: 9<br>New API: wantConstant.Action|@ohos.ability.wantConstant.d.ts|
|Deprecated version changed|Class name: OnReleaseCallBack<br>Deprecated version: N/A|Class name: OnReleaseCallBack<br>Deprecated version: 9<br>New API: ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts|
|Deprecated version changed|Class name: CalleeCallBack<br>Deprecated version: N/A|Class name: CalleeCallBack<br>Deprecated version: 9<br>New API: ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts|
|Deprecated version changed|Class name: Caller<br>Deprecated version: N/A|Class name: Caller<br>Deprecated version: 9<br>New API: ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts|
|Deprecated version changed|Class name: Callee<br>Deprecated version: N/A|Class name: Callee<br>Deprecated version: 9<br>New API: ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts|
|Deprecated version changed|Class name: Ability<br>Deprecated version: N/A|Class name: Ability<br>Deprecated version: 9<br>New API: ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts|
|Deprecated version changed|Class name: AbilityConstant<br>Deprecated version: N/A|Class name: AbilityConstant<br>Deprecated version: 9<br>New API: ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts|
|Deprecated version changed|Class name: abilityDelegatorRegistry<br>Deprecated version: N/A|Class name: abilityDelegatorRegistry<br>Deprecated version: 9<br>New API: ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts|
|Deprecated version changed|Class name: AbilityLifecycleCallback<br>Deprecated version: N/A|Class name: AbilityLifecycleCallback<br>Deprecated version: 9<br>New API: ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts|
|Deprecated version changed|Class name: abilityManager<br>Deprecated version: N/A|Class name: abilityManager<br>Deprecated version: 9<br>New API: ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts|
|Deprecated version changed|Class name: AbilityStage<br>Deprecated version: N/A|Class name: AbilityStage<br>Deprecated version: 9<br>New API: ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts|
|Deprecated version changed|Class name: appManager<br>Deprecated version: N/A|Class name: appManager<br>Deprecated version: 9<br>New API: ohos.app.ability.appManager |@ohos.application.appManager.d.ts|
|Deprecated version changed|Class name: Configuration<br>Deprecated version: N/A|Class name: Configuration<br>Deprecated version: 9<br>New API: ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts|
|Deprecated version changed|Class name: ConfigurationConstant<br>Deprecated version: N/A|Class name: ConfigurationConstant<br>Deprecated version: 9<br>New API: ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts|
|Deprecated version changed|Class name: context<br>Deprecated version: N/A|Class name: context<br>Deprecated version: 9<br>New API: ohos.app.ability.common |@ohos.application.context.d.ts|
|Deprecated version changed|Class name: EnvironmentCallback<br>Deprecated version: N/A|Class name: EnvironmentCallback<br>Deprecated version: 9<br>New API: ohos.app.ability.EnvironmentCallback |@ohos.application.EnvironmentCallback.d.ts|
|Deprecated version changed|Class name: errorManager<br>Deprecated version: N/A|Class name: errorManager<br>Deprecated version: 9<br>New API: ohos.app.ability.errorManager |@ohos.application.errorManager.d.ts|
|Deprecated version changed|Class name: formBindingData<br>Deprecated version: N/A|Class name: formBindingData<br>Deprecated version: 9<br>New API: ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts|
|Deprecated version changed|Class name: FormExtension<br>Deprecated version: N/A|Class name: FormExtension<br>Deprecated version: 9<br>New API: ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts|
|Deprecated version changed|Class name: formHost<br>Deprecated version: N/A|Class name: formHost<br>Deprecated version: 9<br>New API: ohos.app.form.formHost |@ohos.application.formHost.d.ts|
|Deprecated version changed|Class name: formInfo<br>Deprecated version: N/A|Class name: formInfo<br>Deprecated version: 9<br>New API: ohos.app.form.formInfo |@ohos.application.formInfo.d.ts|
|Deprecated version changed|Class name: formProvider<br>Deprecated version: N/A|Class name: formProvider<br>Deprecated version: 9<br>New API: ohos.app.form.formProvider |@ohos.application.formProvider.d.ts|
|Deprecated version changed|Class name: missionManager<br>Deprecated version: N/A|Class name: missionManager<br>Deprecated version: 9<br>New API: ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts|
|Deprecated version changed|Class name: ServiceExtensionAbility<br>Deprecated version: N/A|Class name: ServiceExtensionAbility<br>Deprecated version: 9<br>New API: ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts|
|Deprecated version changed|Class name: StartOptions<br>Deprecated version: N/A|Class name: StartOptions<br>Deprecated version: 9<br>New API: ohos.app.ability.StartOptions |@ohos.application.StartOptions.d.ts|
|Deprecated version changed|Class name: Want<br>Deprecated version: N/A|Class name: Want<br>Deprecated version: 9<br>New API: ohos.app.ability.Want |@ohos.application.Want.d.ts|
|Deprecated version changed|Method or attribute name: register<br>Deprecated version: N/A|Method or attribute name: register<br>Deprecated version: 9<br>New API: ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: register<br>Deprecated version: N/A|Method or attribute name: register<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: register<br>Deprecated version: N/A|Method or attribute name: register<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: unregister<br>Deprecated version: N/A|Method or attribute name: unregister<br>Deprecated version: 9<br>New API: ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: unregister<br>Deprecated version: N/A|Method or attribute name: unregister<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: updateConnectStatus<br>Deprecated version: N/A|Method or attribute name: updateConnectStatus<br>Deprecated version: 9<br>New API: ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: updateConnectStatus<br>Deprecated version: N/A|Method or attribute name: updateConnectStatus<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: startDeviceManager<br>Deprecated version: N/A|Method or attribute name: startDeviceManager<br>Deprecated version: 9<br>New API: ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: startDeviceManager<br>Deprecated version: N/A|Method or attribute name: startDeviceManager<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Method or attribute name: startDeviceManager<br>Deprecated version: N/A|Method or attribute name: startDeviceManager<br>Deprecated version: 9|@ohos.continuation.continuationManager.d.ts|
|Deprecated version changed|Class name: wantAgent<br>Deprecated version: N/A|Class name: wantAgent<br>Deprecated version: 9<br>New API: ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts|
|Deprecated version changed|Method or attribute name: connectAbility<br>Deprecated version: N/A|Method or attribute name: connectAbility<br>Deprecated version: 9<br>New API: connectServiceExtensionAbility |AbilityContext.d.ts|
|Deprecated version changed|Method or attribute name: connectAbilityWithAccount<br>Deprecated version: N/A|Method or attribute name: connectAbilityWithAccount<br>Deprecated version: 9<br>New API: connectServiceExtensionAbilityWithAccount |AbilityContext.d.ts|
|Deprecated version changed|Method or attribute name: disconnectAbility<br>Deprecated version: N/A|Method or attribute name: disconnectAbility<br>Deprecated version: 9<br>New API: disconnectServiceExtensionAbility |AbilityContext.d.ts|
|Deprecated version changed|Method or attribute name: disconnectAbility<br>Deprecated version: N/A|Method or attribute name: disconnectAbility<br>Deprecated version: 9|AbilityContext.d.ts|
|Deprecated version changed|Method or attribute name: registerAbilityLifecycleCallback<br>Deprecated version: N/A|Method or attribute name: registerAbilityLifecycleCallback<br>Deprecated version: 9<br>New API: on |ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: unregisterAbilityLifecycleCallback<br>Deprecated version: N/A|Method or attribute name: unregisterAbilityLifecycleCallback<br>Deprecated version: 9<br>New API: off |ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: unregisterAbilityLifecycleCallback<br>Deprecated version: N/A|Method or attribute name: unregisterAbilityLifecycleCallback<br>Deprecated version: 9|ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: registerEnvironmentCallback<br>Deprecated version: N/A|Method or attribute name: registerEnvironmentCallback<br>Deprecated version: 9<br>New API: on |ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: unregisterEnvironmentCallback<br>Deprecated version: N/A|Method or attribute name: unregisterEnvironmentCallback<br>Deprecated version: 9<br>New API: off |ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: unregisterEnvironmentCallback<br>Deprecated version: N/A|Method or attribute name: unregisterEnvironmentCallback<br>Deprecated version: 9|ApplicationContext.d.ts|
|Deprecated version changed|Method or attribute name: connectAbility<br>Deprecated version: N/A|Method or attribute name: connectAbility<br>Deprecated version: 9<br>New API: connectServiceExtensionAbility |ServiceExtensionContext.d.ts|
|Deprecated version changed|Method or attribute name: connectAbilityWithAccount<br>Deprecated version: N/A|Method or attribute name: connectAbilityWithAccount<br>Deprecated version: 9<br>New API: connectServiceExtensionAbilityWithAccount |ServiceExtensionContext.d.ts|
|Deprecated version changed|Method or attribute name: disconnectAbility<br>Deprecated version: N/A|Method or attribute name: disconnectAbility<br>Deprecated version: 9<br>New API: disconnectServiceExtensionAbility |ServiceExtensionContext.d.ts|
|Deprecated version changed|Method or attribute name: disconnectAbility<br>Deprecated version: N/A|Method or attribute name: disconnectAbility<br>Deprecated version: 9|ServiceExtensionContext.d.ts|
|Initial version changed|Class name: AbilityDelegator<br>Initial version: 8|Class name: AbilityDelegator<br>Initial version: 9|abilityDelegator.d.ts|
|Permission deleted|Class name: distributedMissionManager<br>Permission: ohos.permission.MANAGE_MISSIONS|Class name: distributedMissionManager<br>Permission: N/A|@ohos.distributedMissionManager.d.ts|
|Error code added||Method or attribute name: on_deviceConnect<br>Error code: 401, 16600001, 16600002, 16600004|@ohos.continuation.continuationManager.d.ts|
|Error code added||Method or attribute name: on_deviceDisconnect<br>Error code: 401, 16600001, 16600002, 16600004|@ohos.continuation.continuationManager.d.ts|
|Error code added||Method or attribute name: startSyncRemoteMissions<br>Error code: 201, 401|@ohos.distributedMissionManager.d.ts|
|Error code added||Method or attribute name: stopSyncRemoteMissions<br>Error code: 201, 401|@ohos.distributedMissionManager.d.ts|
|Error code added||Method or attribute name: registerMissionListener<br>Error code: 201, 401|@ohos.distributedMissionManager.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityByCall<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResult<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResult<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResult<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResultWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResultWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startAbilityForResultWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbility<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbilityWithAccount<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: terminateSelf<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: terminateSelf<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: terminateSelfWithResult<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: terminateSelfWithResult<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: setMissionLabel<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: setMissionIcon<br>Error code: 401|AbilityContext.d.ts|
|Error code added||Method or attribute name: addAbilityMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: addAbilityMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: addAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: addAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: removeAbilityMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: removeAbilityMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: removeAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: removeAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: waitAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: waitAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: waitAbilityStageMonitor<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: printSync<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: finishTest<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: finishTest<br>Error code: 401|abilityDelegator.d.ts|
|Error code added||Method or attribute name: createBundleContext<br>Error code: 401|Context.d.ts|
|Error code added||Method or attribute name: createModuleContext<br>Error code: 401|Context.d.ts|
|Error code added||Method or attribute name: createModuleContext<br>Error code: 401|Context.d.ts|
|Error code added||Method or attribute name: on<br>Error code: 401|EventHub.d.ts|
|Error code added||Method or attribute name: off<br>Error code: 401|EventHub.d.ts|
|Error code added||Method or attribute name: emit<br>Error code: 401|EventHub.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startServiceExtensionAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbility<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: stopServiceExtensionAbilityWithAccount<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: terminateSelf<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: terminateSelf<br>Error code: 401|ServiceExtensionContext.d.ts|
|Error code added||Method or attribute name: startAbilityByCall<br>Error code: 401|ServiceExtensionContext.d.ts|
|Permission added|Method or attribute name: startSyncRemoteMissions<br>Permission: N/A|Method or attribute name: startSyncRemoteMissions<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: startSyncRemoteMissions<br>Permission: N/A|Method or attribute name: startSyncRemoteMissions<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: stopSyncRemoteMissions<br>Permission: N/A|Method or attribute name: stopSyncRemoteMissions<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: stopSyncRemoteMissions<br>Permission: N/A|Method or attribute name: stopSyncRemoteMissions<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: registerMissionListener<br>Permission: N/A|Method or attribute name: registerMissionListener<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: registerMissionListener<br>Permission: N/A|Method or attribute name: registerMissionListener<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Permission added|Method or attribute name: unRegisterMissionListener<br>Permission: N/A|Method or attribute name: unRegisterMissionListener<br>Permission: ohos.permission.MANAGE_MISSIONS|@ohos.distributedMissionManager.d.ts|
|Access level changed|Method or attribute name: startAbilityByCall<br>Access level: public API|Method or attribute name: startAbilityByCall<br>Access level: system API|AbilityContext.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.accessibility.config<br>Class name: config<br>Method or attribute name: on_enabledAccessibilityExtensionListChange|@ohos.accessibility.config.d.ts|
|Added||Module name: ohos.accessibility.config<br>Class name: config<br>Method or attribute name: off_enabledAccessibilityExtensionListChange|@ohos.accessibility.config.d.ts|
|Added||Module name: ohos.accessibility<br>Class name: accessibility<br>Method or attribute name: getAccessibilityExtensionList|@ohos.accessibility.d.ts|
|Added||Module name: ohos.accessibility<br>Class name: accessibility<br>Method or attribute name: getAccessibilityExtensionList|@ohos.accessibility.d.ts|
|Added||Module name: ohos.accessibility<br>Class name: accessibility<br>Method or attribute name: sendAccessibilityEvent|@ohos.accessibility.d.ts|
|Added||Module name: ohos.accessibility<br>Class name: accessibility<br>Method or attribute name: sendAccessibilityEvent|@ohos.accessibility.d.ts|
|Added||Module name: ohos.accessibility.GesturePath<br>Class name: GesturePath|@ohos.accessibility.GesturePath.d.ts|
|Added||Module name: ohos.accessibility.GesturePath<br>Class name: GesturePath<br>Method or attribute name: ructor(durationTime|@ohos.accessibility.GesturePath.d.ts|
|Added||Module name: ohos.accessibility.GesturePath<br>Class name: GesturePath<br>Method or attribute name: points|@ohos.accessibility.GesturePath.d.ts|
|Added||Module name: ohos.accessibility.GesturePath<br>Class name: GesturePath<br>Method or attribute name: durationTime|@ohos.accessibility.GesturePath.d.ts|
|Added||Module name: ohos.accessibility.GesturePoint<br>Class name: GesturePoint|@ohos.accessibility.GesturePoint.d.ts|
|Added||Module name: ohos.accessibility.GesturePoint<br>Class name: GesturePoint<br>Method or attribute name: ructor(positionX|@ohos.accessibility.GesturePoint.d.ts|
|Added||Module name: ohos.accessibility.GesturePoint<br>Class name: GesturePoint<br>Method or attribute name: positionX|@ohos.accessibility.GesturePoint.d.ts|
|Added||Module name: ohos.accessibility.GesturePoint<br>Class name: GesturePoint<br>Method or attribute name: positionY|@ohos.accessibility.GesturePoint.d.ts|
|Added||Method or attribute name: performAction<br>Function name: performAction(actionName: string, parameters?: object): Promise<void>;|AccessibilityExtensionContext.d.ts|
|Added||Method or attribute name: performAction<br>Function name: performAction(actionName: string, callback: AsyncCallback<void>): void;|AccessibilityExtensionContext.d.ts|
|Added||Method or attribute name: performAction<br>Function name: performAction(actionName: string, parameters: object, callback: AsyncCallback<void>): void;|AccessibilityExtensionContext.d.ts|
|Deleted|Module name: ohos.accessibility.config<br>Class name: config<br>Method or attribute name: on_enableAbilityListsStateChanged||@ohos.accessibility.config.d.ts|
|Deleted|Module name: ohos.accessibility.config<br>Class name: config<br>Method or attribute name: off_enableAbilityListsStateChanged||@ohos.accessibility.config.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePath||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePath<br>Method or attribute name: points||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePath<br>Method or attribute name: durationTime||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePoint||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePoint<br>Method or attribute name: positionX||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deleted|Module name: ohos.application.AccessibilityExtensionAbility<br>Class name: GesturePoint<br>Method or attribute name: positionY||@ohos.application.AccessibilityExtensionAbility.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityLists<br>Deprecated version: N/A|Method or attribute name: getAbilityLists<br>Deprecated version: 9<br>New API: ohos.accessibility|@ohos.accessibility.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityLists<br>Deprecated version: N/A|Method or attribute name: getAbilityLists<br>Deprecated version: 9|@ohos.accessibility.d.ts|
|Deprecated version changed|Method or attribute name: sendEvent<br>Deprecated version: N/A|Method or attribute name: sendEvent<br>Deprecated version: 9<br>New API: ohos.accessibility|@ohos.accessibility.d.ts|
|Deprecated version changed|Method or attribute name: sendEvent<br>Deprecated version: N/A|Method or attribute name: sendEvent<br>Deprecated version: 9|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: enableAbility<br>Error code: 201, 401, 9300001, 9300002|@ohos.accessibility.config.d.ts|
|Error code added||Method or attribute name: disableAbility<br>Error code: 201, 401, 9300001|@ohos.accessibility.config.d.ts|
|Error code added||Method or attribute name: set<br>Error code: 201, 401|@ohos.accessibility.config.d.ts|
|Error code added||Method or attribute name: on<br>Error code: 401|@ohos.accessibility.config.d.ts|
|Error code added||Method or attribute name: on_accessibilityStateChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: on_touchGuideStateChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: off_accessibilityStateChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: off_touchGuideStateChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: on_enableChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: on_styleChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: off_enableChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: off_styleChange<br>Error code: 401|@ohos.accessibility.d.ts|
|Error code added||Method or attribute name: setTargetBundleName<br>Error code: 401|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: getFocusElement<br>Error code: 9300003|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: getWindowRootElement<br>Error code: 9300003|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: getWindows<br>Error code: 9300003|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: injectGesture<br>Error code: 401, 9300003|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: attributeValue<br>Error code: 401, 9300004|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: findElement<br>Error code: 401|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: findElement<br>Error code: 401|AccessibilityExtensionContext.d.ts|
|Error code added||Method or attribute name: findElement<br>Error code: 401|AccessibilityExtensionContext.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: createAccount|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: createAccount|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: createAccount|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: createAccountImplicitly|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: createAccountImplicitly|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: removeAccount|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: removeAccount|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAppAccess|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAppAccess|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: checkDataSyncEnabled|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: checkDataSyncEnabled|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setCredential|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setCredential|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setDataSyncEnabled|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setDataSyncEnabled|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setCustomData|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setCustomData|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: getAllAccounts<br>Function name: getAllAccounts(callback: AsyncCallback<Array<AppAccountInfo>>): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: getAllAccounts<br>Function name: getAllAccounts(): Promise<Array<AppAccountInfo>>;|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAccountsByOwner|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAccountsByOwner|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getCredential|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getCredential|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getCustomData|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getCustomData|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getCustomDataSync|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: on_accountChange|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: off_accountChange|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: auth|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: auth|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteAuthToken|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAuthTokenVisibility|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: setAuthTokenVisibility|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: checkAuthTokenVisibility|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: checkAuthTokenVisibility|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAllAuthTokens|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAllAuthTokens|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthList|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthList|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthCallback|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAuthCallback|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: queryAuthenticatorInfo|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: queryAuthenticatorInfo|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteCredential|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteCredential|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: selectAccountsByOptions<br>Function name: selectAccountsByOptions(options: SelectAccountsOptions, callback: AsyncCallback<Array<AppAccountInfo>>): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: verifyCredential<br>Function name: verifyCredential(name: string, owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: verifyCredential<br>Function name: verifyCredential(name: string, owner: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: setAuthenticatorProperties<br>Function name: setAuthenticatorProperties(owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: setAuthenticatorProperties<br>Function name: setAuthenticatorProperties(owner: string, options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthTokenInfo|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthTokenInfo<br>Method or attribute name: authType|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthTokenInfo<br>Method or attribute name: token|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthTokenInfo<br>Method or attribute name: account|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthResult|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthResult<br>Method or attribute name: account|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthResult<br>Method or attribute name: tokenInfo|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountOptions|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountOptions<br>Method or attribute name: customData|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountImplicitlyOptions|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountImplicitlyOptions<br>Method or attribute name: requiredLabels|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountImplicitlyOptions<br>Method or attribute name: authType|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: CreateAccountImplicitlyOptions<br>Method or attribute name: parameters|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Constants<br>Method or attribute name: ACTION_CREATE_ACCOUNT_IMPLICITLY|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Constants<br>Method or attribute name: ACTION_AUTH|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Constants<br>Method or attribute name: ACTION_VERIFY_CREDENTIAL|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Constants<br>Method or attribute name: ACTION_SET_AUTHENTICATOR_PROPERTIES|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthCallback|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthCallback<br>Method or attribute name: onResult|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthCallback<br>Method or attribute name: onRequestRedirected|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: AuthCallback<br>Method or attribute name: onRequestContinued|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Authenticator<br>Method or attribute name: createAccountImplicitly|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.appAccount<br>Class name: Authenticator<br>Method or attribute name: auth|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: verifyCredential<br>Function name: verifyCredential(name: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: setProperties<br>Function name: setProperties(options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: checkAccountLabels<br>Function name: checkAccountLabels(name: string, labels: Array<string>, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Method or attribute name: isAccountRemovable<br>Function name: isAccountRemovable(name: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedAccountAbility<br>Method or attribute name: getOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedAccountAbility<br>Method or attribute name: getOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedAccountAbility<br>Method or attribute name: setOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedAccountAbility<br>Method or attribute name: setOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedInfo<br>Method or attribute name: nickname|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.distributedAccount<br>Class name: DistributedInfo<br>Method or attribute name: avatar|@ohos.account.distributedAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkMultiOsAccountEnabled|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkMultiOsAccountEnabled|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountActivated|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountActivated|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkConstraintEnabled|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkConstraintEnabled|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountTestable|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountTestable|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountVerified|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountVerified|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: checkOsAccountVerified|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountCount|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountCount|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromProcess|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromProcess|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromUid|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromUid|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromDomain|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdFromDomain|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountConstraints|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountConstraints|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getActivatedOsAccountIds|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getActivatedOsAccountIds|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getCurrentOsAccount|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getCurrentOsAccount|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountType|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: getOsAccountType|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryDistributedVirtualDeviceId|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryDistributedVirtualDeviceId|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdBySerialNumber|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: queryOsAccountLocalIdBySerialNumber|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: querySerialNumberByOsAccountLocalId|@ohos.account.osAccount.d.ts|
|Added||Module name: ohos.account.osAccount<br>Class name: AccountManager<br>Method or attribute name: querySerialNumberByOsAccountLocalId|@ohos.account.osAccount.d.ts|
|Added||Method or attribute name: setProperty<br>Function name: setProperty(request: SetPropertyRequest, callback: AsyncCallback<void>): void;|@ohos.account.osAccount.d.ts|
|Added||Method or attribute name: setProperty<br>Function name: setProperty(request: SetPropertyRequest): Promise<void>;|@ohos.account.osAccount.d.ts|
|Added||Method or attribute name: cancelAuth<br>Function name: cancelAuth(contextID: Uint8Array): void;|@ohos.account.osAccount.d.ts|
|Added||Method or attribute name: registerInputer<br>Function name: registerInputer(inputer: IInputer): void;|@ohos.account.osAccount.d.ts|
|Added||Method or attribute name: cancel<br>Function name: cancel(challenge: Uint8Array): void;|@ohos.account.osAccount.d.ts|
|Deleted|Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: getAssociatedDataSync||@ohos.account.appAccount.d.ts|
|Deleted|Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteAccountCredential||@ohos.account.appAccount.d.ts|
|Deleted|Module name: ohos.account.appAccount<br>Class name: AppAccountManager<br>Method or attribute name: deleteAccountCredential||@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: addAccount<br>Deprecated version: N/A|Method or attribute name: addAccount<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: addAccount<br>Deprecated version: N/A|Method or attribute name: addAccount<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: addAccount<br>Deprecated version: N/A|Method or attribute name: addAccount<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: addAccountImplicitly<br>Deprecated version: N/A|Method or attribute name: addAccountImplicitly<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: deleteAccount<br>Deprecated version: N/A|Method or attribute name: deleteAccount<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: deleteAccount<br>Deprecated version: N/A|Method or attribute name: deleteAccount<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: disableAppAccess<br>Deprecated version: N/A|Method or attribute name: disableAppAccess<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: disableAppAccess<br>Deprecated version: N/A|Method or attribute name: disableAppAccess<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: enableAppAccess<br>Deprecated version: N/A|Method or attribute name: enableAppAccess<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: enableAppAccess<br>Deprecated version: N/A|Method or attribute name: enableAppAccess<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: checkAppAccountSyncEnable<br>Deprecated version: N/A|Method or attribute name: checkAppAccountSyncEnable<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: checkAppAccountSyncEnable<br>Deprecated version: N/A|Method or attribute name: checkAppAccountSyncEnable<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAccountCredential<br>Deprecated version: N/A|Method or attribute name: setAccountCredential<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAccountCredential<br>Deprecated version: N/A|Method or attribute name: setAccountCredential<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAccountExtraInfo<br>Deprecated version: N/A|Method or attribute name: setAccountExtraInfo<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAccountExtraInfo<br>Deprecated version: N/A|Method or attribute name: setAccountExtraInfo<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAppAccountSyncEnable<br>Deprecated version: N/A|Method or attribute name: setAppAccountSyncEnable<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAppAccountSyncEnable<br>Deprecated version: N/A|Method or attribute name: setAppAccountSyncEnable<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAssociatedData<br>Deprecated version: N/A|Method or attribute name: setAssociatedData<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setAssociatedData<br>Deprecated version: N/A|Method or attribute name: setAssociatedData<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllAccessibleAccounts<br>Deprecated version: N/A|Method or attribute name: getAllAccessibleAccounts<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllAccessibleAccounts<br>Deprecated version: N/A|Method or attribute name: getAllAccessibleAccounts<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllAccounts<br>Deprecated version: N/A|Method or attribute name: getAllAccounts<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllAccounts<br>Deprecated version: N/A|Method or attribute name: getAllAccounts<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAccountCredential<br>Deprecated version: N/A|Method or attribute name: getAccountCredential<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAccountCredential<br>Deprecated version: N/A|Method or attribute name: getAccountCredential<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAccountExtraInfo<br>Deprecated version: N/A|Method or attribute name: getAccountExtraInfo<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAccountExtraInfo<br>Deprecated version: N/A|Method or attribute name: getAccountExtraInfo<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAssociatedData<br>Deprecated version: N/A|Method or attribute name: getAssociatedData<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAssociatedData<br>Deprecated version: N/A|Method or attribute name: getAssociatedData<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: on_change<br>Deprecated version: N/A|Method or attribute name: on_change<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: off_change<br>Deprecated version: N/A|Method or attribute name: off_change<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: authenticate<br>Deprecated version: N/A|Method or attribute name: authenticate<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOAuthToken<br>Deprecated version: N/A|Method or attribute name: getOAuthToken<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOAuthToken<br>Deprecated version: N/A|Method or attribute name: getOAuthToken<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setOAuthToken<br>Deprecated version: N/A|Method or attribute name: setOAuthToken<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setOAuthToken<br>Deprecated version: N/A|Method or attribute name: setOAuthToken<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: deleteOAuthToken<br>Deprecated version: N/A|Method or attribute name: deleteOAuthToken<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: deleteOAuthToken<br>Deprecated version: N/A|Method or attribute name: deleteOAuthToken<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setOAuthTokenVisibility<br>Deprecated version: N/A|Method or attribute name: setOAuthTokenVisibility<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: setOAuthTokenVisibility<br>Deprecated version: N/A|Method or attribute name: setOAuthTokenVisibility<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: checkOAuthTokenVisibility<br>Deprecated version: N/A|Method or attribute name: checkOAuthTokenVisibility<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: checkOAuthTokenVisibility<br>Deprecated version: N/A|Method or attribute name: checkOAuthTokenVisibility<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllOAuthTokens<br>Deprecated version: N/A|Method or attribute name: getAllOAuthTokens<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAllOAuthTokens<br>Deprecated version: N/A|Method or attribute name: getAllOAuthTokens<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOAuthList<br>Deprecated version: N/A|Method or attribute name: getOAuthList<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOAuthList<br>Deprecated version: N/A|Method or attribute name: getOAuthList<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAuthenticatorCallback<br>Deprecated version: N/A|Method or attribute name: getAuthenticatorCallback<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAuthenticatorCallback<br>Deprecated version: N/A|Method or attribute name: getAuthenticatorCallback<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAuthenticatorInfo<br>Deprecated version: N/A|Method or attribute name: getAuthenticatorInfo<br>Deprecated version: 9<br>New API: appAccount.AppAccountManager|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: getAuthenticatorInfo<br>Deprecated version: N/A|Method or attribute name: getAuthenticatorInfo<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Class name: OAuthTokenInfo<br>Deprecated version: N/A|Class name: OAuthTokenInfo<br>Deprecated version: 9<br>New API: appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: ACTION_ADD_ACCOUNT_IMPLICITLY<br>Deprecated version: N/A|Method or attribute name: ACTION_ADD_ACCOUNT_IMPLICITLY<br>Deprecated version: 9<br>New API: appAccount.Constants|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: ACTION_AUTHENTICATE<br>Deprecated version: N/A|Method or attribute name: ACTION_AUTHENTICATE<br>Deprecated version: 9<br>New API: appAccount.Constants|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Class name: ResultCode<br>Deprecated version: N/A|Class name: ResultCode<br>Deprecated version: 9|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Class name: AuthenticatorCallback<br>Deprecated version: N/A|Class name: AuthenticatorCallback<br>Deprecated version: 9<br>New API: AppAccount.AuthCallback |@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: addAccountImplicitly<br>Deprecated version: N/A|Method or attribute name: addAccountImplicitly<br>Deprecated version: 9<br>New API: appAccount.Authenticator|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: authenticate<br>Deprecated version: N/A|Method or attribute name: authenticate<br>Deprecated version: 9<br>New API: appAccount.Authenticator|@ohos.account.appAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryOsAccountDistributedInfo<br>Deprecated version: N/A|Method or attribute name: queryOsAccountDistributedInfo<br>Deprecated version: 9<br>New API: distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryOsAccountDistributedInfo<br>Deprecated version: N/A|Method or attribute name: queryOsAccountDistributedInfo<br>Deprecated version: 9|@ohos.account.distributedAccount.d.ts|
|Deprecated version changed|Method or attribute name: updateOsAccountDistributedInfo<br>Deprecated version: N/A|Method or attribute name: updateOsAccountDistributedInfo<br>Deprecated version: 9<br>New API: distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts|
|Deprecated version changed|Method or attribute name: updateOsAccountDistributedInfo<br>Deprecated version: N/A|Method or attribute name: updateOsAccountDistributedInfo<br>Deprecated version: 9|@ohos.account.distributedAccount.d.ts|
|Deprecated version changed|Method or attribute name: isMultiOsAccountEnable<br>Deprecated version: N/A|Method or attribute name: isMultiOsAccountEnable<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isMultiOsAccountEnable<br>Deprecated version: N/A|Method or attribute name: isMultiOsAccountEnable<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountActived<br>Deprecated version: N/A|Method or attribute name: isOsAccountActived<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountActived<br>Deprecated version: N/A|Method or attribute name: isOsAccountActived<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountConstraintEnable<br>Deprecated version: N/A|Method or attribute name: isOsAccountConstraintEnable<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountConstraintEnable<br>Deprecated version: N/A|Method or attribute name: isOsAccountConstraintEnable<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isTestOsAccount<br>Deprecated version: N/A|Method or attribute name: isTestOsAccount<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isTestOsAccount<br>Deprecated version: N/A|Method or attribute name: isTestOsAccount<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountVerified<br>Deprecated version: N/A|Method or attribute name: isOsAccountVerified<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountVerified<br>Deprecated version: N/A|Method or attribute name: isOsAccountVerified<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: isOsAccountVerified<br>Deprecated version: N/A|Method or attribute name: isOsAccountVerified<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getCreatedOsAccountsCount<br>Deprecated version: N/A|Method or attribute name: getCreatedOsAccountsCount<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getCreatedOsAccountsCount<br>Deprecated version: N/A|Method or attribute name: getCreatedOsAccountsCount<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromProcess<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromProcess<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromProcess<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromProcess<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromUid<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromUid<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromUid<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromUid<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromDomain<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromDomain<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdFromDomain<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdFromDomain<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountAllConstraints<br>Deprecated version: N/A|Method or attribute name: getOsAccountAllConstraints<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountAllConstraints<br>Deprecated version: N/A|Method or attribute name: getOsAccountAllConstraints<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryActivatedOsAccountIds<br>Deprecated version: N/A|Method or attribute name: queryActivatedOsAccountIds<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryActivatedOsAccountIds<br>Deprecated version: N/A|Method or attribute name: queryActivatedOsAccountIds<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryCurrentOsAccount<br>Deprecated version: N/A|Method or attribute name: queryCurrentOsAccount<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: queryCurrentOsAccount<br>Deprecated version: N/A|Method or attribute name: queryCurrentOsAccount<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountTypeFromProcess<br>Deprecated version: N/A|Method or attribute name: getOsAccountTypeFromProcess<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountTypeFromProcess<br>Deprecated version: N/A|Method or attribute name: getOsAccountTypeFromProcess<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getDistributedVirtualDeviceId<br>Deprecated version: N/A|Method or attribute name: getDistributedVirtualDeviceId<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getDistributedVirtualDeviceId<br>Deprecated version: N/A|Method or attribute name: getDistributedVirtualDeviceId<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdBySerialNumber<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdBySerialNumber<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getOsAccountLocalIdBySerialNumber<br>Deprecated version: N/A|Method or attribute name: getOsAccountLocalIdBySerialNumber<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getSerialNumberByOsAccountLocalId<br>Deprecated version: N/A|Method or attribute name: getSerialNumberByOsAccountLocalId<br>Deprecated version: 9<br>New API: osAccount.AccountManager|@ohos.account.osAccount.d.ts|
|Deprecated version changed|Method or attribute name: getSerialNumberByOsAccountLocalId<br>Deprecated version: N/A|Method or attribute name: getSerialNumberByOsAccountLocalId<br>Deprecated version: 9|@ohos.account.osAccount.d.ts|
|Permission added|Method or attribute name: isOsAccountVerified<br>Permission: N/A|Method or attribute name: isOsAccountVerified<br>Permission: ohos.permission.MANAGE_LOCAL_ACCOUNTS or ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS|@ohos.account.osAccount.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.contact<br>Class name: Contact|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: INVALID_CONTACT_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: id|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: key|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: contactAttributes|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: emails|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: events|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: groups|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: imAddresses|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: phoneNumbers|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: portrait|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: postalAddresses|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: relations|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: sipAddresses|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: websites|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: name|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: nickName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: note|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Contact<br>Method or attribute name: organization|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ContactAttributes|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ContactAttributes<br>Method or attribute name: attributes|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_CONTACT_EVENT|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_EMAIL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_GROUP_MEMBERSHIP|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_IM|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_NAME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_NICKNAME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_NOTE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_ORGANIZATION|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_PHONE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_PORTRAIT|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_POSTAL_ADDRESS|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_RELATION|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_SIP_ADDRESS|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Attribute<br>Method or attribute name: ATTR_WEBSITE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: EMAIL_HOME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: EMAIL_WORK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: EMAIL_OTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: email|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: displayName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Email<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: EVENT_ANNIVERSARY|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: EVENT_OTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: EVENT_BIRTHDAY|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: eventDate|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Event<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Group|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Group<br>Method or attribute name: groupId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Group<br>Method or attribute name: title|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Holder|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Holder<br>Method or attribute name: bundleName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Holder<br>Method or attribute name: displayName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Holder<br>Method or attribute name: holderId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_AIM|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_MSN|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_YAHOO|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_SKYPE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_QQ|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_ICQ|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: IM_JABBER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: imAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: ImAddress<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: familyName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: familyNamePhonetic|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: fullName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: givenName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: givenNamePhonetic|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: middleName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: middleNamePhonetic|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: namePrefix|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Name<br>Method or attribute name: nameSuffix|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: NickName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: NickName<br>Method or attribute name: nickName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Note|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Note<br>Method or attribute name: noteContent|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Organization|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Organization<br>Method or attribute name: name|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Organization<br>Method or attribute name: title|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_HOME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_MOBILE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_WORK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_FAX_WORK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_FAX_HOME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_PAGER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_OTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_CALLBACK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_CAR|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_COMPANY_MAIN|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_ISDN|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_MAIN|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_OTHER_FAX|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_RADIO|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_TELEX|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_TTY_TDD|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_WORK_MOBILE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_WORK_PAGER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_ASSISTANT|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: NUM_MMS|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: phoneNumber|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PhoneNumber<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Portrait|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Portrait<br>Method or attribute name: uri|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: ADDR_HOME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: ADDR_WORK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: ADDR_OTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: city|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: country|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: neighborhood|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: pobox|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: postalAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: postcode|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: region|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: street|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: PostalAddress<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_ASSISTANT|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_BROTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_CHILD|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_DOMESTIC_PARTNER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_FATHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_FRIEND|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_MANAGER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_MOTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_PARENT|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_PARTNER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_REFERRED_BY|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_RELATIVE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_SISTER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: RELATION_SPOUSE|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: relationName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Relation<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: CUSTOM_LABEL|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: SIP_HOME|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: SIP_WORK|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: SIP_OTHER|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: INVALID_LABEL_ID|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: labelName|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: sipAddress|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: SipAddress<br>Method or attribute name: labelId|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Website|@ohos.contact.d.ts|
|Added||Module name: ohos.contact<br>Class name: Website<br>Method or attribute name: website|@ohos.contact.d.ts|
|Added||Module name: ohos.telephony.call<br>Class name: AudioDevice<br>Method or attribute name: DEVICE_MIC|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: hangup<br>|Permission: N/A|Method or attribute name: hangup<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: hangup<br>|Permission: N/A|Method or attribute name: hangup<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: reject<br>|Permission: N/A|Method or attribute name: reject<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: reject<br>|Permission: N/A|Method or attribute name: reject<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: reject<br>|Permission: N/A|Method or attribute name: reject<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: reject<br>|Permission: N/A|Method or attribute name: reject<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: reject<br>|Permission: N/A|Method or attribute name: reject<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: holdCall<br>|Permission: N/A|Method or attribute name: holdCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: holdCall<br>|Permission: N/A|Method or attribute name: holdCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: unHoldCall<br>|Permission: N/A|Method or attribute name: unHoldCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: unHoldCall<br>|Permission: N/A|Method or attribute name: unHoldCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: switchCall<br>|Permission: N/A|Method or attribute name: switchCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: switchCall<br>|Permission: N/A|Method or attribute name: switchCall<br>|Permission: ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallWaitingStatus<br>|Permission: N/A|Method or attribute name: getCallWaitingStatus<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallWaitingStatus<br>|Permission: N/A|Method or attribute name: getCallWaitingStatus<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallWaiting<br>|Permission: N/A|Method or attribute name: setCallWaiting<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallWaiting<br>|Permission: N/A|Method or attribute name: setCallWaiting<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: on_callDetailsChange<br>|Permission: N/A|Method or attribute name: on_callDetailsChange<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: off_callDetailsChange<br>|Permission: N/A|Method or attribute name: off_callDetailsChange<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: on_callEventChange<br>|Permission: N/A|Method or attribute name: on_callEventChange<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: off_callEventChange<br>|Permission: N/A|Method or attribute name: off_callEventChange<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: on_callDisconnectedCause<br>|Permission: N/A|Method or attribute name: on_callDisconnectedCause<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: off_callDisconnectedCause<br>|Permission: N/A|Method or attribute name: off_callDisconnectedCause<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: on_mmiCodeResult<br>|Permission: N/A|Method or attribute name: on_mmiCodeResult<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: off_mmiCodeResult<br>|Permission: N/A|Method or attribute name: off_mmiCodeResult<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallRestrictionStatus<br>|Permission: N/A|Method or attribute name: getCallRestrictionStatus<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallRestrictionStatus<br>|Permission: N/A|Method or attribute name: getCallRestrictionStatus<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallRestriction<br>|Permission: N/A|Method or attribute name: setCallRestriction<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallRestriction<br>|Permission: N/A|Method or attribute name: setCallRestriction<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallTransferInfo<br>|Permission: N/A|Method or attribute name: getCallTransferInfo<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: getCallTransferInfo<br>|Permission: N/A|Method or attribute name: getCallTransferInfo<br>|Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallTransfer<br>|Permission: N/A|Method or attribute name: setCallTransfer<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: setCallTransfer<br>|Permission: N/A|Method or attribute name: setCallTransfer<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: enableImsSwitch<br>|Permission: N/A|Method or attribute name: enableImsSwitch<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: enableImsSwitch<br>|Permission: N/A|Method or attribute name: enableImsSwitch<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: disableImsSwitch<br>|Permission: N/A|Method or attribute name: disableImsSwitch<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
|Permission added|Method or attribute name: disableImsSwitch<br>|Permission: N/A|Method or attribute name: disableImsSwitch<br>|Permission: ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.animator<br>Class name: AnimatorResult<br>Method or attribute name: reset|@ohos.animator.d.ts|
|Added||Module name: ohos.animator<br>Class name: Animator<br>Method or attribute name: create|@ohos.animator.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowToastOptions|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowToastOptions<br>Method or attribute name: message|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowToastOptions<br>Method or attribute name: duration|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowToastOptions<br>Method or attribute name: bottom|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: Button|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: Button<br>Method or attribute name: text|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: Button<br>Method or attribute name: color|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogSuccessResponse|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogSuccessResponse<br>Method or attribute name: index|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogOptions|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogOptions<br>Method or attribute name: title|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogOptions<br>Method or attribute name: message|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ShowDialogOptions<br>Method or attribute name: buttons|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ActionMenuSuccessResponse|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ActionMenuSuccessResponse<br>Method or attribute name: index|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ActionMenuOptions|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ActionMenuOptions<br>Method or attribute name: title|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: ActionMenuOptions<br>Method or attribute name: buttons|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction<br>Method or attribute name: showToast|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction<br>Method or attribute name: showDialog|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction<br>Method or attribute name: showDialog|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction<br>Method or attribute name: showActionMenu|@ohos.promptAction.d.ts|
|Added||Module name: ohos.promptAction<br>Class name: promptAction<br>Method or attribute name: showActionMenu|@ohos.promptAction.d.ts|
|Added||Module name: ohos.router<br>Class name: RouterOptions|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: pushUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: pushUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: pushUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: pushUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: replaceUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: replaceUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: replaceUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: replaceUrl|@ohos.router.d.ts|
|Added||Module name: ohos.router<br>Class name: router<br>Method or attribute name: enableBackPageAlert|@ohos.router.d.ts|
|Added||Module name: common<br>Class name: <br>Method or attribute name: postCardAction|common.d.ts|
|Added||Module name: common<br>Class name: PopupOptions<br>Method or attribute name: showInSubWindow|common.d.ts|
|Added||Module name: common<br>Class name: CustomPopupOptions<br>Method or attribute name: showInSubWindow|common.d.ts|
|Added||Module name: common<br>Class name: LayoutBorderInfo|common.d.ts|
|Added||Module name: common<br>Class name: LayoutBorderInfo<br>Method or attribute name: borderWidth|common.d.ts|
|Added||Module name: common<br>Class name: LayoutBorderInfo<br>Method or attribute name: margin|common.d.ts|
|Added||Module name: common<br>Class name: LayoutBorderInfo<br>Method or attribute name: padding|common.d.ts|
|Added||Module name: common<br>Class name: LayoutInfo|common.d.ts|
|Added||Module name: common<br>Class name: LayoutInfo<br>Method or attribute name: position|common.d.ts|
|Added||Module name: common<br>Class name: LayoutInfo<br>Method or attribute name: constraint|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: name|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: id|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: constraint|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: borderInfo|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: position|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: measure|common.d.ts|
|Added||Module name: common<br>Class name: LayoutChild<br>Method or attribute name: layout|common.d.ts|
|Added||Module name: common<br>Class name: CustomComponent<br>Method or attribute name: onLayout|common.d.ts|
|Added||Module name: common<br>Class name: CustomComponent<br>Method or attribute name: onMeasure|common.d.ts|
|Added||Module name: common<br>Class name: CustomComponent<br>Method or attribute name: pageTransition|common.d.ts|
|Added||Module name: common_ts_ets_api<br>Class name: AppStorage<br>Method or attribute name: Clear|common_ts_ets_api.d.ts|
|Added||Module name: enums<br>Class name: TitleHeight|enums.d.ts|
|Added||Module name: enums<br>Class name: TitleHeight<br>Method or attribute name: MainOnly|enums.d.ts|
|Added||Module name: enums<br>Class name: TitleHeight<br>Method or attribute name: MainWithSub|enums.d.ts|
|Added||Module name: flow_item<br>Class name: FlowItemInterface|flow_item.d.ts|
|Added||Module name: flow_item<br>Class name: FlowItemInterface<br>Method or attribute name: FlowItemInterface|flow_item.d.ts|
|Added||Module name: flow_item<br>Class name: FlowItemAttribute|flow_item.d.ts|
|Added||Method or attribute name: FormComponentInterface<br>Function name: (value: {<br> id: number;<br> name: string;<br> bundle: string;<br> ability: string;<br> module: string;<br> dimension?: FormDimension;<br> temporary?: boolean;<br> want?: import('../api/@ohos.application.Want').default;<br> }): FormComponentAttribute;|form_component.d.ts|
|Added||Method or attribute name: GridColInterface<br>Function name: (option?: GridColOptions): GridColAttribute;|grid_col.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCommonTitle|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCommonTitle<br>Method or attribute name: main|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCommonTitle<br>Method or attribute name: sub|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCustomTitle|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCustomTitle<br>Method or attribute name: builder|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationCustomTitle<br>Method or attribute name: height|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationMode|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationMode<br>Method or attribute name: Stack|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationMode<br>Method or attribute name: Split|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationMode<br>Method or attribute name: Auto|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavBarPosition|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavBarPosition<br>Method or attribute name: Start|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavBarPosition<br>Method or attribute name: End|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: navBarWidth|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: navBarPosition|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: mode|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: backButtonIcon|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: hideNavBar|navigation.d.ts|
|Added||Method or attribute name: title<br>Function name: title(value: string \| CustomBuilder \| NavigationCommonTitle \| NavigationCustomTitle): NavigationAttribute;|navigation.d.ts|
|Added||Module name: navigation<br>Class name: NavigationAttribute<br>Method or attribute name: onNavBarStateChange|navigation.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCommonTitle|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCommonTitle<br>Method or attribute name: main|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCommonTitle<br>Method or attribute name: sub|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCustomTitle|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCustomTitle<br>Method or attribute name: builder|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationCustomTitle<br>Method or attribute name: height|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationInterface|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationInterface<br>Method or attribute name: NavDestinationInterface|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationAttribute|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationAttribute<br>Method or attribute name: title|nav_destination.d.ts|
|Added||Module name: nav_destination<br>Class name: NavDestinationAttribute<br>Method or attribute name: hideTitleBar|nav_destination.d.ts|
|Added||Module name: nav_router<br>Class name: NavRouterInterface|nav_router.d.ts|
|Added||Module name: nav_router<br>Class name: NavRouterInterface<br>Method or attribute name: NavRouterInterface|nav_router.d.ts|
|Added||Module name: nav_router<br>Class name: NavRouterAttribute|nav_router.d.ts|
|Added||Module name: nav_router<br>Class name: NavRouterAttribute<br>Method or attribute name: onStateChange|nav_router.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowOptions|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowOptions<br>Method or attribute name: footer|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowOptions<br>Method or attribute name: scroller|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowInterface|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowInterface<br>Method or attribute name: WaterFlowInterface|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: columnsTemplate|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: itemConstraintSize|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: rowsTemplate|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: columnsGap|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: rowsGap|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: layoutDirection|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: onReachStart|water_flow.d.ts|
|Added||Module name: water_flow<br>Class name: WaterFlowAttribute<br>Method or attribute name: onReachEnd|water_flow.d.ts|
|Added||Module name: web<br>Class name: FullScreenExitHandler|web.d.ts|
|Added||Module name: web<br>Class name: FullScreenExitHandler<br>Method or attribute name: exitFullScreen|web.d.ts|
|Added||Module name: web<br>Class name: ControllerHandler|web.d.ts|
|Added||Module name: web<br>Class name: ControllerHandler<br>Method or attribute name: setWebController|web.d.ts|
|Added||Module name: web<br>Class name: WebController<br>Method or attribute name: getUrl|web.d.ts|
|Added||Method or attribute name: controller<br>Function name: controller: WebController \| WebviewController;|web.d.ts|
|Added||Method or attribute name: javaScriptProxy<br>Function name: javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array<string>,<br> controller: WebController \| WebviewController }): WebAttribute;|web.d.ts|
|Added||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: onFullScreenExit|web.d.ts|
|Added||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: onFullScreenEnter|web.d.ts|
|Added||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: onWindowNew|web.d.ts|
|Added||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: onWindowExit|web.d.ts|
|Added||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: multiWindowAccess|web.d.ts|
|Added||Module name: viewmodel<br>Class name: ViewModel<br>Method or attribute name: $t|viewmodel.d.ts|
|Added||Module name: viewmodel<br>Class name: ElementReferences<br>Method or attribute name: ElementReferences|viewmodel.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: uiAppearance||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: DarkMode||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: DarkMode<br>Method or attribute name: ALWAYS_DARK||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: DarkMode<br>Method or attribute name: ALWAYS_LIGHT||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: uiAppearance<br>Method or attribute name: setDarkMode||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: uiAppearance<br>Method or attribute name: setDarkMode||@ohos.uiAppearance.d.ts|
|Deleted||Module name: ohos.uiAppearance<br>Class name: uiAppearance<br>Method or attribute name: getDarkMode||@ohos.uiAppearance.d.ts|
|Deleted||Module name: web<br>Class name: WebAttribute<br>Method or attribute name: fileFromUrlAccess||web.d.ts|
|Access level changed|Method or attribute name: springMotion<br>Access level: public API|Method or attribute name: springMotion<br>Access level: system API|@ohos.curves.d.ts|
|Access level changed|Method or attribute name: responsiveSpringMotion<br>Access level: public API|Method or attribute name: responsiveSpringMotion<br>Access level: system API|@ohos.curves.d.ts|
|Access level changed|Class name: BlurStyle<br>Access level: public API|Class name: BlurStyle<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Thin<br>Access level: public API|Method or attribute name: Thin<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Regular<br>Access level: public API|Method or attribute name: Regular<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Thick<br>Access level: public API|Method or attribute name: Thick<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: backgroundBlurStyle<br>Access level: public API|Method or attribute name: backgroundBlurStyle<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: extendViewModel<br>Access level: public API|Method or attribute name: extendViewModel<br>Access level: system API|viewmodel.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9<br>New API: ohos.animator.reset |@ohos.animator.d.ts|
|Deprecated version changed|Method or attribute name: createAnimator<br>Deprecated version: N/A|Method or attribute name: createAnimator<br>Deprecated version: 9<br>New API: ohos.animator.create |@ohos.animator.d.ts|
|Deprecated version changed|Class name: prompt<br>Deprecated version: N/A|Class name: prompt<br>Deprecated version: 9<br>New API: ohos.promptAction |@ohos.prompt.d.ts|
|Deprecated version changed|Method or attribute name: push<br>Deprecated version: N/A|Method or attribute name: push<br>Deprecated version: 9<br>New API: ohos.router.router|@ohos.router.d.ts|
|Deprecated version changed|Method or attribute name: replace<br>Deprecated version: N/A|Method or attribute name: replace<br>Deprecated version: 9<br>New API: ohos.router.router|@ohos.router.d.ts|
|Deprecated version changed|Method or attribute name: enableAlertBeforeBackPage<br>Deprecated version: N/A|Method or attribute name: enableAlertBeforeBackPage<br>Deprecated version: 9<br>New API: ohos.router.router|@ohos.router.d.ts|
|Deprecated version changed|Method or attribute name: staticClear<br>Deprecated version: N/A|Method or attribute name: staticClear<br>Deprecated version: 9<br>New API: AppStorage.Clear |common_ts_ets_api.d.ts|
|Deprecated version changed|Method or attribute name: subTitle<br>Deprecated version: N/A|Method or attribute name: subTitle<br>Deprecated version: 9<br>New API: title |navigation.d.ts|
|Deprecated version changed|Method or attribute name: ructor(message<br>Deprecated version: N/A|Method or attribute name: ructor(message<br>Deprecated version: 9<br>New API: ohos.web.ConsoleMessage|web.d.ts|
|Deprecated version changed|Class name: WebController<br>Deprecated version: N/A|Class name: WebController<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController |web.d.ts|
|Deprecated version changed|Method or attribute name: onInactive<br>Deprecated version: N/A|Method or attribute name: onInactive<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: onActive<br>Deprecated version: N/A|Method or attribute name: onActive<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: zoom<br>Deprecated version: N/A|Method or attribute name: zoom<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: clearHistory<br>Deprecated version: N/A|Method or attribute name: clearHistory<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: runJavaScript<br>Deprecated version: N/A|Method or attribute name: runJavaScript<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: loadData<br>Deprecated version: N/A|Method or attribute name: loadData<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: loadUrl<br>Deprecated version: N/A|Method or attribute name: loadUrl<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: refresh<br>Deprecated version: N/A|Method or attribute name: refresh<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: stop<br>Deprecated version: N/A|Method or attribute name: stop<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: registerJavaScriptProxy<br>Deprecated version: N/A|Method or attribute name: registerJavaScriptProxy<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: deleteJavaScriptRegister<br>Deprecated version: N/A|Method or attribute name: deleteJavaScriptRegister<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: getHitTest<br>Deprecated version: N/A|Method or attribute name: getHitTest<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: requestFocus<br>Deprecated version: N/A|Method or attribute name: requestFocus<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: accessBackward<br>Deprecated version: N/A|Method or attribute name: accessBackward<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: accessForward<br>Deprecated version: N/A|Method or attribute name: accessForward<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: accessStep<br>Deprecated version: N/A|Method or attribute name: accessStep<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: backward<br>Deprecated version: N/A|Method or attribute name: backward<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Deprecated version changed|Method or attribute name: forward<br>Deprecated version: N/A|Method or attribute name: forward<br>Deprecated version: 9<br>New API: ohos.web.webview.webview.WebviewController|web.d.ts|
|Initial version changed|Method or attribute name: extendViewModel<br>Initial version: |Method or attribute name: extendViewModel<br>Initial version: 4|viewmodel.d.ts|
|Access level changed|Method or attribute name: springMotion<br>Access level: public API|Method or attribute name: springMotion<br>Access level: system API|@ohos.curves.d.ts|
|Access level changed|Method or attribute name: responsiveSpringMotion<br>Access level: public API|Method or attribute name: responsiveSpringMotion<br>Access level: system API|@ohos.curves.d.ts|
|Access level changed|Class name: BlurStyle<br>Access level: public API|Class name: BlurStyle<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Thin<br>Access level: public API|Method or attribute name: Thin<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Regular<br>Access level: public API|Method or attribute name: Regular<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: Thick<br>Access level: public API|Method or attribute name: Thick<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: backgroundBlurStyle<br>Access level: public API|Method or attribute name: backgroundBlurStyle<br>Access level: system API|common.d.ts|
|Access level changed|Method or attribute name: extendViewModel<br>Access level: public API|Method or attribute name: extendViewModel<br>Access level: system API|viewmodel.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.power<br>Class name: power<br>Method or attribute name: shutdown|@ohos.power.d.ts|
|Added||Module name: ohos.power<br>Class name: power<br>Method or attribute name: reboot|@ohos.power.d.ts|
|Added||Module name: ohos.power<br>Class name: power<br>Method or attribute name: isActive|@ohos.power.d.ts|
|Added||Module name: ohos.power<br>Class name: power<br>Method or attribute name: wakeup|@ohos.power.d.ts|
|Added||Module name: ohos.power<br>Class name: power<br>Method or attribute name: suspend|@ohos.power.d.ts|
|Added||Method or attribute name: getPowerMode<br>Function name: function getPowerMode(): DevicePowerMode;|@ohos.power.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: RunningLock<br>Method or attribute name: hold|@ohos.runningLock.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: RunningLock<br>Method or attribute name: isHolding|@ohos.runningLock.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: RunningLock<br>Method or attribute name: unhold|@ohos.runningLock.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: runningLock<br>Method or attribute name: isSupported|@ohos.runningLock.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: runningLock<br>Method or attribute name: create|@ohos.runningLock.d.ts|
|Added||Module name: ohos.runningLock<br>Class name: runningLock<br>Method or attribute name: create|@ohos.runningLock.d.ts|
|Added||Module name: ohos.thermal<br>Class name: thermal<br>Method or attribute name: registerThermalLevelCallback|@ohos.thermal.d.ts|
|Added||Module name: ohos.thermal<br>Class name: thermal<br>Method or attribute name: unregisterThermalLevelCallback|@ohos.thermal.d.ts|
|Added||Module name: ohos.thermal<br>Class name: thermal<br>Method or attribute name: getLevel|@ohos.thermal.d.ts|
|Deleted|Module name: ohos.power<br>Class name: power<br>Method or attribute name: shutdownDevice||@ohos.power.d.ts|
|Deleted|Module name: ohos.power<br>Class name: power<br>Method or attribute name: wakeupDevice||@ohos.power.d.ts|
|Deleted|Module name: ohos.power<br>Class name: power<br>Method or attribute name: suspendDevice||@ohos.power.d.ts|
|Deprecated version changed|Method or attribute name: rebootDevice<br>Deprecated version: N/A|Method or attribute name: rebootDevice<br>Deprecated version: 9<br>New API: {@link power|@ohos.power.d.ts|
|Deprecated version changed|Method or attribute name: isScreenOn<br>Deprecated version: N/A|Method or attribute name: isScreenOn<br>Deprecated version: 9<br>New API: {@link power|@ohos.power.d.ts|
|Deprecated version changed|Method or attribute name: isScreenOn<br>Deprecated version: N/A|Method or attribute name: isScreenOn<br>Deprecated version: 9|@ohos.power.d.ts|
|Deprecated version changed|Method or attribute name: lock<br>Deprecated version: N/A|Method or attribute name: lock<br>Deprecated version: 9<br>New API: {@link RunningLock|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: isUsed<br>Deprecated version: N/A|Method or attribute name: isUsed<br>Deprecated version: 9<br>New API: {@link RunningLock|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: unlock<br>Deprecated version: N/A|Method or attribute name: unlock<br>Deprecated version: 9<br>New API: {@link RunningLock|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: isRunningLockTypeSupported<br>Deprecated version: N/A|Method or attribute name: isRunningLockTypeSupported<br>Deprecated version: 9<br>New API: {@link RunningLock|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: isRunningLockTypeSupported<br>Deprecated version: N/A|Method or attribute name: isRunningLockTypeSupported<br>Deprecated version: 9|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: createRunningLock<br>Deprecated version: N/A|Method or attribute name: createRunningLock<br>Deprecated version: 9<br>New API: {@link RunningLock|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: createRunningLock<br>Deprecated version: N/A|Method or attribute name: createRunningLock<br>Deprecated version: 9|@ohos.runningLock.d.ts|
|Deprecated version changed|Method or attribute name: subscribeThermalLevel<br>Deprecated version: N/A|Method or attribute name: subscribeThermalLevel<br>Deprecated version: 9<br>New API: {@link thermal|@ohos.thermal.d.ts|
|Deprecated version changed|Method or attribute name: unsubscribeThermalLevel<br>Deprecated version: N/A|Method or attribute name: unsubscribeThermalLevel<br>Deprecated version: 9<br>New API: {@link thermal|@ohos.thermal.d.ts|
|Deprecated version changed|Method or attribute name: getThermalLevel<br>Deprecated version: N/A|Method or attribute name: getThermalLevel<br>Deprecated version: 9<br>New API: {@link thermal|@ohos.thermal.d.ts|
|Deprecated version changed|Class name: BatteryResponse<br>Deprecated version: 9|Class name: BatteryResponse<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: charging<br>Deprecated version: 9|Method or attribute name: charging<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: level<br>Deprecated version: 9|Method or attribute name: level<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Class name: GetStatusOptions<br>Deprecated version: 9|Class name: GetStatusOptions<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Class name: Battery<br>Deprecated version: 9|Class name: Battery<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Method or attribute name: getStatus<br>Deprecated version: 9|Method or attribute name: getStatus<br>Deprecated version: 6|@system.battery.d.ts|
|Deprecated version changed|Class name: BrightnessResponse<br>Deprecated version: 9|Class name: BrightnessResponse<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: value<br>Deprecated version: 9|Method or attribute name: value<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: GetBrightnessOptions<br>Deprecated version: 9|Class name: GetBrightnessOptions<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: SetBrightnessOptions<br>Deprecated version: 9|Class name: SetBrightnessOptions<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: value<br>Deprecated version: 9|Method or attribute name: value<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: BrightnessModeResponse<br>Deprecated version: 9|Class name: BrightnessModeResponse<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: mode<br>Deprecated version: 9|Method or attribute name: mode<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: GetBrightnessModeOptions<br>Deprecated version: 9|Class name: GetBrightnessModeOptions<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: SetBrightnessModeOptions<br>Deprecated version: 9|Class name: SetBrightnessModeOptions<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: mode<br>Deprecated version: 9|Method or attribute name: mode<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: SetKeepScreenOnOptions<br>Deprecated version: 9|Class name: SetKeepScreenOnOptions<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: keepScreenOn<br>Deprecated version: 9|Method or attribute name: keepScreenOn<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: 9|Method or attribute name: success<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: 9|Method or attribute name: fail<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: 9|Method or attribute name: complete<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Class name: Brightness<br>Deprecated version: 9|Class name: Brightness<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: getValue<br>Deprecated version: 9|Method or attribute name: getValue<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: setValue<br>Deprecated version: 9|Method or attribute name: setValue<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: getMode<br>Deprecated version: 9|Method or attribute name: getMode<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: setMode<br>Deprecated version: 9|Method or attribute name: setMode<br>Deprecated version: 7|@system.brightness.d.ts|
|Deprecated version changed|Method or attribute name: setKeepScreenOn<br>Deprecated version: 9|Method or attribute name: setKeepScreenOn<br>Deprecated version: 7|@system.brightness.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: setDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: setDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: getDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: getDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: deleteDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.appControl<br>Class name: appControl<br>Method or attribute name: deleteDisposedStatus|@ohos.bundle.appControl.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_HAP_MODULE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_ABILITY|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_EXTENSION_ABILITY|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_REQUESTED_PERMISSION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_INFO_WITH_SIGNATURE_INFO|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ApplicationFlag|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ApplicationFlag<br>Method or attribute name: GET_APPLICATION_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ApplicationFlag<br>Method or attribute name: GET_APPLICATION_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ApplicationFlag<br>Method or attribute name: GET_APPLICATION_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ApplicationFlag<br>Method or attribute name: GET_APPLICATION_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityFlag<br>Method or attribute name: GET_ABILITY_INFO_ONLY_SYSTEM_APP|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityFlag|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityFlag<br>Method or attribute name: GET_EXTENSION_ABILITY_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityFlag<br>Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityFlag<br>Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityFlag<br>Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: FORM|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: WORK_SCHEDULER|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: INPUT_METHOD|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: SERVICE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: ACCESSIBILITY|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: DATA_SHARE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: FILE_SHARE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: STATIC_SUBSCRIBER|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: WALLPAPER|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: BACKUP|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: WINDOW|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: ENTERPRISE_ADMIN|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: THUMBNAIL|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: PREVIEW|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: ExtensionAbilityType<br>Method or attribute name: UNSPECIFIED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: PermissionGrantState|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: PermissionGrantState<br>Method or attribute name: PERMISSION_DENIED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: PermissionGrantState<br>Method or attribute name: PERMISSION_GRANTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: SupportWindowMode|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: SupportWindowMode<br>Method or attribute name: FULL_SCREEN|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: SupportWindowMode<br>Method or attribute name: SPLIT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: SupportWindowMode<br>Method or attribute name: FLOATING|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: LaunchType|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: LaunchType<br>Method or attribute name: SINGLETON|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: LaunchType<br>Method or attribute name: STANDARD|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: LaunchType<br>Method or attribute name: SPECIFIED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityType|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityType<br>Method or attribute name: PAGE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityType<br>Method or attribute name: SERVICE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: AbilityType<br>Method or attribute name: DATA|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: UNSPECIFIED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: LANDSCAPE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: PORTRAIT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: FOLLOW_RECENT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: LANDSCAPE_INVERTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: PORTRAIT_INVERTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_LANDSCAPE|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_PORTRAIT|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_RESTRICTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_LANDSCAPE_RESTRICTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_PORTRAIT_RESTRICTED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: DisplayOrientation<br>Method or attribute name: LOCKED|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfoForSelf|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfoForSelf|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleNameByUid|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleNameByUid|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleArchiveInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleArchiveInfo|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: cleanBundleCacheFiles|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: cleanBundleCacheFiles|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: setApplicationEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: setApplicationEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: setAbilityEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: setAbilityEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: isApplicationEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: isApplicationEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: isAbilityEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: isAbilityEnabled|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getProfileByAbility|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getProfileByAbility|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getProfileByExtensionAbility|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getProfileByExtensionAbility|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getPermissionDef|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getPermissionDef|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAbilityLabel|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAbilityLabel|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAbilityIcon|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getAbilityIcon|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getApplicationInfoSync|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getApplicationInfoSync|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfoSync|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleManager<br>Class name: bundleManager<br>Method or attribute name: getBundleInfoSync|@ohos.bundle.bundleManager.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: BundleChangedInfo|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: BundleChangedInfo<br>Method or attribute name: bundleName|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: BundleChangedInfo<br>Method or attribute name: userId|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: on_add|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: on_update|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: on_remove|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: off_add|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: off_update|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.bundleMonitor<br>Class name: bundleMonitor<br>Method or attribute name: off_remove|@ohos.bundle.bundleMonitor.d.ts|
|Added||Module name: ohos.bundle.defaultAppManager<br>Class name: ApplicationType|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: BROWSER<br>Function name: BROWSER = "Web Browser"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: IMAGE<br>Function name: IMAGE = "Image Gallery"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: AUDIO<br>Function name: AUDIO = "Audio Player"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: VIDEO<br>Function name: VIDEO = "Video Player"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: PDF<br>Function name: PDF = "PDF Viewer"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: WORD<br>Function name: WORD = "Word Viewer"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: EXCEL<br>Function name: EXCEL = "Excel Viewer"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Method or attribute name: PPT<br>Function name: PPT = "PPT Viewer"|@ohos.bundle.defaultAppManager.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.distributedBundle<br>Class name: distributedBundle<br>Method or attribute name: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: UpgradeFlag|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: UpgradeFlag<br>Method or attribute name: NOT_UPGRADE|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: UpgradeFlag<br>Method or attribute name: SINGLE_UPGRADE|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: UpgradeFlag<br>Method or attribute name: RELATION_UPGRADE|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: BundlePackFlag|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: BundlePackFlag<br>Method or attribute name: GET_PACK_INFO_ALL|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: BundlePackFlag<br>Method or attribute name: GET_PACKAGES|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: BundlePackFlag<br>Method or attribute name: GET_BUNDLE_SUMMARY|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: BundlePackFlag<br>Method or attribute name: GET_MODULE_SUMMARY|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: setHapModuleUpgradeFlag|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: setHapModuleUpgradeFlag|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: isHapModuleRemovable|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: isHapModuleRemovable|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: getBundlePackInfo|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: getBundlePackInfo|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: getDispatchInfo|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.freeInstall<br>Class name: freeInstall<br>Method or attribute name: getDispatchInfo|@ohos.bundle.freeInstall.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: installer|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: installer<br>Method or attribute name: getBundleInstaller|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: installer<br>Method or attribute name: getBundleInstaller|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: BundleInstaller|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: BundleInstaller<br>Method or attribute name: install|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: BundleInstaller<br>Method or attribute name: uninstall|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: BundleInstaller<br>Method or attribute name: recover|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: HashParam|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: HashParam<br>Method or attribute name: moduleName|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: HashParam<br>Method or attribute name: hashValue|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam<br>Method or attribute name: userId|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam<br>Method or attribute name: installFlag|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam<br>Method or attribute name: isKeepData|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam<br>Method or attribute name: hashParams|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.installer<br>Class name: InstallParam<br>Method or attribute name: crowdtestDeadline|@ohos.bundle.installer.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getAllLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getAllLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getShortcutInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.bundle.launcherBundleManager<br>Class name: launcherBundleManager<br>Method or attribute name: getShortcutInfo|@ohos.bundle.launcherBundleManager.d.ts|
|Added||Module name: ohos.zlib<br>Class name: zlib<br>Method or attribute name: compressFile|@ohos.zlib.d.ts|
|Added||Module name: ohos.zlib<br>Class name: zlib<br>Method or attribute name: compressFile|@ohos.zlib.d.ts|
|Added||Module name: ohos.zlib<br>Class name: zlib<br>Method or attribute name: decompressFile|@ohos.zlib.d.ts|
|Added||Module name: ohos.zlib<br>Class name: zlib<br>Method or attribute name: decompressFile|@ohos.zlib.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: type|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: orientation|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: launchType|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: metadata|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: supportWindowModes|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: windowSize|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: maxWindowRatio|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: minWindowRatio|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: maxWindowWidth|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: minWindowWidth|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: maxWindowHeight|abilityInfo.d.ts|
|Added||Module name: abilityInfo<br>Class name: WindowSize<br>Method or attribute name: minWindowHeight|abilityInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: labelId|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: iconId|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: metadata|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: iconResource|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: labelResource|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: descriptionResource|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: appDistributionType|applicationInfo.d.ts|
|Added||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: appProvisionType|applicationInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: BundleInfo<br>Method or attribute name: hapModulesInfo|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: BundleInfo<br>Method or attribute name: permissionGrantStates|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: BundleInfo<br>Method or attribute name: signatureInfo|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: ReqPermissionDetail<br>Method or attribute name: reasonId|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: SignatureInfo|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: SignatureInfo<br>Method or attribute name: appId|bundleInfo.d.ts|
|Added||Module name: bundleInfo<br>Class name: SignatureInfo<br>Method or attribute name: fingerprint|bundleInfo.d.ts|
|Added||Module name: dispatchInfo<br>Class name: DispatchInfo|dispatchInfo.d.ts|
|Added||Module name: dispatchInfo<br>Class name: DispatchInfo<br>Method or attribute name: version|dispatchInfo.d.ts|
|Added||Module name: dispatchInfo<br>Class name: DispatchInfo<br>Method or attribute name: dispatchAPIVersion|dispatchInfo.d.ts|
|Added||Module name: elementName<br>Class name: ElementName<br>Method or attribute name: moduleName|elementName.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: bundleName|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: moduleName|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: name|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: labelId|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: descriptionId|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: iconId|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: isVisible|extensionAbilityInfo.d.ts|
|Added||Method or attribute name: extensionAbilityType<br>Function name: readonly extensionAbilityType: bundleManager.ExtensionAbilityType;|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: permissions|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: applicationInfo|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: metadata|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: enabled|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: readPermission|extensionAbilityInfo.d.ts|
|Added||Module name: extensionAbilityInfo<br>Class name: ExtensionAbilityInfo<br>Method or attribute name: writePermission|extensionAbilityInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: mainElementName|hapModuleInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: abilitiesInfo|hapModuleInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: extensionAbilitiesInfo|hapModuleInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: metadata|hapModuleInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: hashValue|hapModuleInfo.d.ts|
|Added||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: moduleSourceDir|hapModuleInfo.d.ts|
|Added||Module name: metadata<br>Class name: Metadata<br>Method or attribute name: name|metadata.d.ts|
|Added||Module name: metadata<br>Class name: Metadata<br>Method or attribute name: value|metadata.d.ts|
|Added||Module name: metadata<br>Class name: Metadata<br>Method or attribute name: resource|metadata.d.ts|
|Added||Module name: packInfo<br>Class name: BundlePackInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: BundlePackInfo<br>Method or attribute name: packages|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: BundlePackInfo<br>Method or attribute name: summary|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageConfig|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageConfig<br>Method or attribute name: deviceTypes|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageConfig<br>Method or attribute name: name|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageConfig<br>Method or attribute name: moduleType|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageConfig<br>Method or attribute name: deliveryWithInstall|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageSummary|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageSummary<br>Method or attribute name: app|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: PackageSummary<br>Method or attribute name: modules|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: BundleConfigInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: BundleConfigInfo<br>Method or attribute name: bundleName|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: BundleConfigInfo<br>Method or attribute name: version|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ExtensionAbility|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ExtensionAbility<br>Method or attribute name: name|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ExtensionAbility<br>Method or attribute name: forms|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: mainAbility|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: apiVersion|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: deviceTypes|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: distro|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: abilities|packInfo.d.ts|
|Added||Method or attribute name: extensionAbilities<br>Function name: readonly extensionAbilities: Array<ExtensionAbility>;|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleDistroInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleDistroInfo<br>Method or attribute name: deliveryWithInstall|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleDistroInfo<br>Method or attribute name: installationFree|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleDistroInfo<br>Method or attribute name: moduleName|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleDistroInfo<br>Method or attribute name: moduleType|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleAbilityInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleAbilityInfo<br>Method or attribute name: name|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleAbilityInfo<br>Method or attribute name: label|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleAbilityInfo<br>Method or attribute name: visible|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ModuleAbilityInfo<br>Method or attribute name: forms|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo<br>Method or attribute name: name|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo<br>Method or attribute name: type|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo<br>Method or attribute name: updateEnabled|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo<br>Method or attribute name: scheduledUpdateTime|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: AbilityFormInfo<br>Method or attribute name: updateDuration|packInfo.d.ts|
|Added||Method or attribute name: supportDimensions<br>Function name: readonly supportDimensions: Array<string>;|packInfo.d.ts|
|Added||Method or attribute name: defaultDimension<br>Function name: readonly defaultDimension: string;|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: Version|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: Version<br>Method or attribute name: minCompatibleVersionCode|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: Version<br>Method or attribute name: name|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: Version<br>Method or attribute name: code|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ApiVersion|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ApiVersion<br>Method or attribute name: releaseType|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ApiVersion<br>Method or attribute name: compatible|packInfo.d.ts|
|Added||Module name: packInfo<br>Class name: ApiVersion<br>Method or attribute name: target|packInfo.d.ts|
|Added||Module name: permissionDef<br>Class name: PermissionDef|permissionDef.d.ts|
|Added||Module name: permissionDef<br>Class name: PermissionDef<br>Method or attribute name: permissionName|permissionDef.d.ts|
|Added||Module name: permissionDef<br>Class name: PermissionDef<br>Method or attribute name: grantMode|permissionDef.d.ts|
|Added||Module name: permissionDef<br>Class name: PermissionDef<br>Method or attribute name: labelId|permissionDef.d.ts|
|Added||Module name: permissionDef<br>Class name: PermissionDef<br>Method or attribute name: descriptionId|permissionDef.d.ts|
|Added||Method or attribute name: moduleName<br>Function name: readonly moduleName: string;|shortcutInfo.d.ts|
|Added||Module name: shortcutInfo<br>Class name: ShortcutWant<br>Method or attribute name: targetModule|shortcutInfo.d.ts|
|Added||Module name: shortcutInfo<br>Class name: ShortcutWant<br>Method or attribute name: targetAbility|shortcutInfo.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_WITH_EXTENSION_ABILITY||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: BundleFlag<br>Method or attribute name: GET_BUNDLE_WITH_HASH_VALUE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: BundleFlag<br>Method or attribute name: GET_APPLICATION_INFO_WITH_CERTIFICATE_FINGERPRINT||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionFlag||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionFlag<br>Method or attribute name: GET_EXTENSION_INFO_DEFAULT||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionFlag<br>Method or attribute name: GET_EXTENSION_INFO_WITH_PERMISSION||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionFlag<br>Method or attribute name: GET_EXTENSION_INFO_WITH_APPLICATION||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionFlag<br>Method or attribute name: GET_EXTENSION_INFO_WITH_METADATA||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: LANDSCAPE_INVERTED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: PORTRAIT_INVERTED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_LANDSCAPE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_PORTRAIT||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_RESTRICTED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_LANDSCAPE_RESTRICTED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: AUTO_ROTATION_PORTRAIT_RESTRICTED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: DisplayOrientation<br>Method or attribute name: LOCKED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: FORM||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: WORK_SCHEDULER||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: INPUT_METHOD||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: SERVICE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: ACCESSIBILITY||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: DATA_SHARE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: FILE_SHARE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: STATIC_SUBSCRIBER||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: WALLPAPER||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: BACKUP||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: WINDOW||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: ENTERPRISE_ADMIN||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: THUMBNAIL||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: PREVIEW||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: ExtensionAbilityType<br>Method or attribute name: UNSPECIFIED||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: UpgradeFlag||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: UpgradeFlag<br>Method or attribute name: NOT_UPGRADE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: UpgradeFlag<br>Method or attribute name: SINGLE_UPGRADE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: UpgradeFlag<br>Method or attribute name: RELATION_UPGRADE||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: SupportWindowMode||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: SupportWindowMode<br>Method or attribute name: FULL_SCREEN||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: SupportWindowMode<br>Method or attribute name: SPLIT||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: SupportWindowMode<br>Method or attribute name: FLOATING||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: queryExtensionAbilityInfos||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: queryExtensionAbilityInfos||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: queryExtensionAbilityInfos||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: setModuleUpgradeFlag||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: setModuleUpgradeFlag||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: isModuleRemovable||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: isModuleRemovable||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getBundlePackInfo||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getBundlePackInfo||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getDispatcherVersion||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getDispatcherVersion||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getProfileByAbility||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getProfileByAbility||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getProfileByExtensionAbility||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getProfileByExtensionAbility||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: setDisposedStatus||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: setDisposedStatus||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getDisposedStatus||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getDisposedStatus||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getApplicationInfoSync||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getApplicationInfoSync||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getBundleInfoSync||@ohos.bundle.d.ts|
|Deleted||Module name: ohos.bundle<br>Class name: bundle<br>Method or attribute name: getBundleInfoSync||@ohos.bundle.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: supportWindowMode||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: maxWindowRatio||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: minWindowRatio||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: maxWindowWidth||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: minWindowWidth||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: maxWindowHeight||abilityInfo.d.ts|
|Deleted||Module name: abilityInfo<br>Class name: AbilityInfo<br>Method or attribute name: minWindowHeight||abilityInfo.d.ts|
|Deleted||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: labelIndex||applicationInfo.d.ts|
|Deleted||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: iconIndex||applicationInfo.d.ts|
|Deleted||Module name: applicationInfo<br>Class name: ApplicationInfo<br>Method or attribute name: fingerprint||applicationInfo.d.ts|
|Deleted||Module name: bundleInfo<br>Class name: BundleInfo<br>Method or attribute name: extensionAbilityInfo||bundleInfo.d.ts|
|Deleted||Module name: bundleInstaller<br>Class name: HashParam||bundleInstaller.d.ts|
|Deleted||Module name: bundleInstaller<br>Class name: HashParam<br>Method or attribute name: moduleName||bundleInstaller.d.ts|
|Deleted||Module name: bundleInstaller<br>Class name: HashParam<br>Method or attribute name: hashValue||bundleInstaller.d.ts|
|Deleted||Module name: bundleInstaller<br>Class name: InstallParam<br>Method or attribute name: hashParams||bundleInstaller.d.ts|
|Deleted||Module name: bundleInstaller<br>Class name: InstallParam<br>Method or attribute name: crowdtestDeadline||bundleInstaller.d.ts|
|Deleted||Module name: dispatchInfo<br>Class name: DispatchInfo<br>Method or attribute name: dispatchAPI||dispatchInfo.d.ts|
|Deleted||Module name: hapModuleInfo<br>Class name: HapModuleInfo<br>Method or attribute name: extensionAbilityInfo||hapModuleInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: PackageConfig<br>Method or attribute name: deviceType||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: ExtensionAbilities||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: ExtensionAbilities<br>Method or attribute name: name||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: ExtensionAbilities<br>Method or attribute name: forms||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: ModuleConfigInfo<br>Method or attribute name: deviceType||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: ModuleDistroInfo<br>Method or attribute name: mainAbility||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: BundlePackFlag||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: BundlePackFlag<br>Method or attribute name: GET_PACK_INFO_ALL||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: BundlePackFlag<br>Method or attribute name: GET_PACKAGES||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: BundlePackFlag<br>Method or attribute name: GET_BUNDLE_SUMMARY||packInfo.d.ts|
|Deleted||Module name: packInfo<br>Class name: BundlePackFlag<br>Method or attribute name: GET_MODULE_SUMMARY||packInfo.d.ts|
|Deprecated version changed|Class name: bundle<br>Deprecated version: N/A|Class name: bundle<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: BundleFlag<br>Deprecated version: N/A|Class name: BundleFlag<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts|
|Deprecated version changed|Class name: ColorMode<br>Deprecated version: N/A|Class name: ColorMode<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: GrantStatus<br>Deprecated version: N/A|Class name: GrantStatus<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.PermissionGrantState |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: AbilityType<br>Deprecated version: N/A|Class name: AbilityType<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: AbilitySubType<br>Deprecated version: N/A|Class name: AbilitySubType<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: DisplayOrientation<br>Deprecated version: N/A|Class name: DisplayOrientation<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: LaunchMode<br>Deprecated version: N/A|Class name: LaunchMode<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.LaunchType |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: BundleOptions<br>Deprecated version: N/A|Class name: BundleOptions<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager |@ohos.bundle.d.ts|
|Deprecated version changed|Class name: InstallErrorCode<br>Deprecated version: N/A|Class name: InstallErrorCode<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager |@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleInfo<br>Deprecated version: N/A|Method or attribute name: getBundleInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleInfo<br>Deprecated version: N/A|Method or attribute name: getBundleInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleInfo<br>Deprecated version: N/A|Method or attribute name: getBundleInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleInstaller<br>Deprecated version: N/A|Method or attribute name: getBundleInstaller<br>Deprecated version: 9<br>New API: ohos.bundle.installer|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleInstaller<br>Deprecated version: N/A|Method or attribute name: getBundleInstaller<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityInfo<br>Deprecated version: N/A|Method or attribute name: getAbilityInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityInfo<br>Deprecated version: N/A|Method or attribute name: getAbilityInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getApplicationInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getApplicationInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getApplicationInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: queryAbilityByWant<br>Deprecated version: N/A|Method or attribute name: queryAbilityByWant<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: queryAbilityByWant<br>Deprecated version: N/A|Method or attribute name: queryAbilityByWant<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: queryAbilityByWant<br>Deprecated version: N/A|Method or attribute name: queryAbilityByWant<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllBundleInfo<br>Deprecated version: N/A|Method or attribute name: getAllBundleInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllBundleInfo<br>Deprecated version: N/A|Method or attribute name: getAllBundleInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllBundleInfo<br>Deprecated version: N/A|Method or attribute name: getAllBundleInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getAllApplicationInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getAllApplicationInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAllApplicationInfo<br>Deprecated version: N/A|Method or attribute name: getAllApplicationInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getNameForUid<br>Deprecated version: N/A|Method or attribute name: getNameForUid<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getNameForUid<br>Deprecated version: N/A|Method or attribute name: getNameForUid<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleArchiveInfo<br>Deprecated version: N/A|Method or attribute name: getBundleArchiveInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getBundleArchiveInfo<br>Deprecated version: N/A|Method or attribute name: getBundleArchiveInfo<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getLaunchWantForBundle<br>Deprecated version: N/A|Method or attribute name: getLaunchWantForBundle<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getLaunchWantForBundle<br>Deprecated version: N/A|Method or attribute name: getLaunchWantForBundle<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: cleanBundleCacheFiles<br>Deprecated version: N/A|Method or attribute name: cleanBundleCacheFiles<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: cleanBundleCacheFiles<br>Deprecated version: N/A|Method or attribute name: cleanBundleCacheFiles<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: setApplicationEnabled<br>Deprecated version: N/A|Method or attribute name: setApplicationEnabled<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: setApplicationEnabled<br>Deprecated version: N/A|Method or attribute name: setApplicationEnabled<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: setAbilityEnabled<br>Deprecated version: N/A|Method or attribute name: setAbilityEnabled<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: setAbilityEnabled<br>Deprecated version: N/A|Method or attribute name: setAbilityEnabled<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getPermissionDef<br>Deprecated version: N/A|Method or attribute name: getPermissionDef<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getPermissionDef<br>Deprecated version: N/A|Method or attribute name: getPermissionDef<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityLabel<br>Deprecated version: N/A|Method or attribute name: getAbilityLabel<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityLabel<br>Deprecated version: N/A|Method or attribute name: getAbilityLabel<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityIcon<br>Deprecated version: N/A|Method or attribute name: getAbilityIcon<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: getAbilityIcon<br>Deprecated version: N/A|Method or attribute name: getAbilityIcon<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: isAbilityEnabled<br>Deprecated version: N/A|Method or attribute name: isAbilityEnabled<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: isAbilityEnabled<br>Deprecated version: N/A|Method or attribute name: isAbilityEnabled<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: isApplicationEnabled<br>Deprecated version: N/A|Method or attribute name: isApplicationEnabled<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager|@ohos.bundle.d.ts|
|Deprecated version changed|Method or attribute name: isApplicationEnabled<br>Deprecated version: N/A|Method or attribute name: isApplicationEnabled<br>Deprecated version: 9|@ohos.bundle.d.ts|
|Deprecated version changed|Class name: innerBundleManager<br>Deprecated version: N/A|Class name: innerBundleManager<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager |@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getLauncherAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getLauncherAbilityInfos<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getLauncherAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getLauncherAbilityInfos<br>Deprecated version: 9|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: on_BundleStatusChange<br>Deprecated version: N/A|Method or attribute name: on_BundleStatusChange<br>Deprecated version: 9<br>New API: ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: on_BundleStatusChange<br>Deprecated version: N/A|Method or attribute name: on_BundleStatusChange<br>Deprecated version: 9|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: off_BundleStatusChange<br>Deprecated version: N/A|Method or attribute name: off_BundleStatusChange<br>Deprecated version: 9<br>New API: ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: off_BundleStatusChange<br>Deprecated version: N/A|Method or attribute name: off_BundleStatusChange<br>Deprecated version: 9|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getAllLauncherAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getAllLauncherAbilityInfos<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getAllLauncherAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getAllLauncherAbilityInfos<br>Deprecated version: 9|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getShortcutInfos<br>Deprecated version: N/A|Method or attribute name: getShortcutInfos<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Method or attribute name: getShortcutInfos<br>Deprecated version: N/A|Method or attribute name: getShortcutInfos<br>Deprecated version: 9|@ohos.bundle.innerBundleManager.d.ts|
|Deprecated version changed|Class name: distributedBundle<br>Deprecated version: N/A|Class name: distributedBundle<br>Deprecated version: 9<br>New API: ohos.bundle.distributeBundle |@ohos.distributedBundle.d.ts|
|Deprecated version changed|Method or attribute name: getRemoteAbilityInfo<br>Deprecated version: N/A|Method or attribute name: getRemoteAbilityInfo<br>Deprecated version: 9<br>New API: ohos.bundle.distributeBundle|@ohos.distributedBundle.d.ts|
|Deprecated version changed|Method or attribute name: getRemoteAbilityInfo<br>Deprecated version: N/A|Method or attribute name: getRemoteAbilityInfo<br>Deprecated version: 9|@ohos.distributedBundle.d.ts|
|Deprecated version changed|Method or attribute name: getRemoteAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getRemoteAbilityInfos<br>Deprecated version: 9<br>New API: ohos.bundle.distributeBundle|@ohos.distributedBundle.d.ts|
|Deprecated version changed|Method or attribute name: getRemoteAbilityInfos<br>Deprecated version: N/A|Method or attribute name: getRemoteAbilityInfos<br>Deprecated version: 9|@ohos.distributedBundle.d.ts|
|Deprecated version changed|Class name: ErrorCode<br>Deprecated version: N/A|Class name: ErrorCode<br>Deprecated version: 9|@ohos.zlib.d.ts|
|Deprecated version changed|Method or attribute name: zipFile<br>Deprecated version: N/A|Method or attribute name: zipFile<br>Deprecated version: 9<br>New API: ohos.zlib|@ohos.zlib.d.ts|
|Deprecated version changed|Method or attribute name: unzipFile<br>Deprecated version: N/A|Method or attribute name: unzipFile<br>Deprecated version: 9<br>New API: ohos.zlib|@ohos.zlib.d.ts|
|Deprecated version changed|Class name: CheckPackageHasInstalledResponse<br>Deprecated version: N/A|Class name: CheckPackageHasInstalledResponse<br>Deprecated version: 9|@system.package.d.ts|
|Deprecated version changed|Class name: CheckPackageHasInstalledOptions<br>Deprecated version: N/A|Class name: CheckPackageHasInstalledOptions<br>Deprecated version: 9|@system.package.d.ts|
|Deprecated version changed|Class name: Package<br>Deprecated version: N/A|Class name: Package<br>Deprecated version: 9|@system.package.d.ts|
|Deprecated version changed|Method or attribute name: hasInstalled<br>Deprecated version: N/A|Method or attribute name: hasInstalled<br>Deprecated version: 9|@system.package.d.ts|
|Deprecated version changed|Class name: AbilityInfo<br>Deprecated version: N/A|Class name: AbilityInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts|
|Deprecated version changed|Class name: ApplicationInfo<br>Deprecated version: N/A|Class name: ApplicationInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts|
|Deprecated version changed|Class name: UsedScene<br>Deprecated version: N/A|Class name: UsedScene<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.UsedScene |bundleInfo.d.ts|
|Deprecated version changed|Class name: ReqPermissionDetail<br>Deprecated version: N/A|Class name: ReqPermissionDetail<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts|
|Deprecated version changed|Class name: BundleInfo<br>Deprecated version: N/A|Class name: BundleInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts|
|Deprecated version changed|Class name: InstallParam<br>Deprecated version: N/A|Class name: InstallParam<br>Deprecated version: 9<br>New API: ohos.bundle.installer|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: userId<br>Deprecated version: N/A|Method or attribute name: userId<br>Deprecated version: 9<br>New API: ohos.bundle.installer.InstallParam|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: installFlag<br>Deprecated version: N/A|Method or attribute name: installFlag<br>Deprecated version: 9<br>New API: ohos.bundle.installer.InstallParam|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: isKeepData<br>Deprecated version: N/A|Method or attribute name: isKeepData<br>Deprecated version: 9<br>New API: ohos.bundle.installer.InstallParam|bundleInstaller.d.ts|
|Deprecated version changed|Class name: InstallStatus<br>Deprecated version: N/A|Class name: InstallStatus<br>Deprecated version: 9|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: status<br>Deprecated version: N/A|Method or attribute name: status<br>Deprecated version: 9|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: statusMessage<br>Deprecated version: N/A|Method or attribute name: statusMessage<br>Deprecated version: 9|bundleInstaller.d.ts|
|Deprecated version changed|Class name: BundleInstaller<br>Deprecated version: N/A|Class name: BundleInstaller<br>Deprecated version: 9<br>New API: ohos.bundle.installer|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: install<br>Deprecated version: N/A|Method or attribute name: install<br>Deprecated version: 9<br>New API: ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: uninstall<br>Deprecated version: N/A|Method or attribute name: uninstall<br>Deprecated version: 9<br>New API: ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts|
|Deprecated version changed|Method or attribute name: recover<br>Deprecated version: N/A|Method or attribute name: recover<br>Deprecated version: 9<br>New API: ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts|
|Deprecated version changed|Class name: BundleStatusCallback<br>Deprecated version: N/A|Class name: BundleStatusCallback<br>Deprecated version: 9|bundleStatusCallback.d.ts|
|Deprecated version changed|Class name: CustomizeData<br>Deprecated version: N/A|Class name: CustomizeData<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.Metadata |customizeData.d.ts|
|Deprecated version changed|Class name: ElementName<br>Deprecated version: N/A|Class name: ElementName<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.ElementName |elementName.d.ts|
|Deprecated version changed|Class name: HapModuleInfo<br>Deprecated version: N/A|Class name: HapModuleInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts|
|Deprecated version changed|Class name: LauncherAbilityInfo<br>Deprecated version: N/A|Class name: LauncherAbilityInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts|
|Deprecated version changed|Class name: ModuleInfo<br>Deprecated version: N/A|Class name: ModuleInfo<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.HapModuleInfo |moduleInfo.d.ts|
|Deprecated version changed|Class name: PermissionDef<br>Deprecated version: N/A|Class name: PermissionDef<br>Deprecated version: 9<br>New API: ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts|
|Deprecated version changed|Class name: RemoteAbilityInfo<br>Deprecated version: N/A|Class name: RemoteAbilityInfo<br>Deprecated version: 9<br>New API: ohos.bundle.distributedBundle.RemoteAbilityInfo |remoteAbilityInfo.d.ts|
|Deprecated version changed|Class name: ShortcutWant<br>Deprecated version: N/A|Class name: ShortcutWant<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager.ShortcutWant |shortcutInfo.d.ts|
|Deprecated version changed|Class name: ShortcutInfo<br>Deprecated version: N/A|Class name: ShortcutInfo<br>Deprecated version: 9<br>New API: ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts|
|Error code added||Method or attribute name: isDefaultApplication<br>Error code: 401, 801|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: isDefaultApplication<br>Error code: 401, 801|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: getDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700023, 17700025|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: getDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700023, 17700025|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: setDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700025, 17700028|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: setDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700025, 17700028|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: resetDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700025|@ohos.bundle.defaultAppManager.d.ts|
|Error code added||Method or attribute name: resetDefaultApplication<br>Error code: 201, 401, 801, 17700004, 17700025|@ohos.bundle.defaultAppManager.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.net.connection<br>Class name: connection<br>Method or attribute name: isDefaultNetMetered|@ohos.net.connection.d.ts|
|Added||Module name: ohos.net.connection<br>Class name: connection<br>Method or attribute name: isDefaultNetMetered|@ohos.net.connection.d.ts|
|Added||Module name: ohos.net.connection<br>Class name: NetHandle<br>Method or attribute name: bindSocket|@ohos.net.connection.d.ts|
|Added||Module name: ohos.net.connection<br>Class name: NetHandle<br>Method or attribute name: bindSocket|@ohos.net.connection.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: getIfaceConfig|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: getIfaceConfig|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: setIfaceConfig|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: setIfaceConfig|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: isIfaceActive|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: isIfaceActive|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: getAllActiveIfaces|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: ethernet<br>Method or attribute name: getAllActiveIfaces|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: mode|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: ipAddr|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: route|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: gateway|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: netMask|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: InterfaceConfiguration<br>Method or attribute name: dnsServers|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: IPSetMode|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: IPSetMode<br>Method or attribute name: STATIC|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.ethernet<br>Class name: IPSetMode<br>Method or attribute name: DHCP|@ohos.net.ethernet.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpRequestOptions<br>Method or attribute name: expectDataType|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpRequestOptions<br>Method or attribute name: usingCache|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpRequestOptions<br>Method or attribute name: priority|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpRequestOptions<br>Method or attribute name: usingProtocol|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpProtocol|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpProtocol<br>Method or attribute name: HTTP1_1|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpProtocol<br>Method or attribute name: HTTP2|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpDataType|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpDataType<br>Method or attribute name: STRING|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpDataType<br>Method or attribute name: OBJECT|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpDataType<br>Method or attribute name: ARRAY_BUFFER|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponse<br>Method or attribute name: resultType|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: http<br>Method or attribute name: createHttpResponseCache|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponseCache|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponseCache<br>Method or attribute name: flush|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponseCache<br>Method or attribute name: flush|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponseCache<br>Method or attribute name: delete|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.http<br>Class name: HttpResponseCache<br>Method or attribute name: delete|@ohos.net.http.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: socket<br>Method or attribute name: constructTLSSocketInstance|@ohos.net.socket.d.ts|
|Added||Method or attribute name: socketLinger<br>Function name: socketLinger?: {on: boolean, linger: number};|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: bind|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: bind|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getRemoteAddress|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getRemoteAddress|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getState|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getState|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: setExtraOptions|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: setExtraOptions|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: on_message|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: off_message|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: on_connect|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: on_close|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: off_connect|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: off_close|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: on_error|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: off_error|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getCertificate|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getCertificate|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getRemoteCertificate|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getRemoteCertificate|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getProtocol|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getProtocol|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getCipherSuite|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getCipherSuite|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getSignatureAlgorithms|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: getSignatureAlgorithms|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: connect|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: connect|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: send|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: send|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: close|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSocket<br>Method or attribute name: close|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: ca|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: cert|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: key|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: passwd|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: protocols|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: useRemoteCipherPrefer|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: signatureAlgorithms|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSSecureOptions<br>Method or attribute name: cipherSuite|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSConnectOptions|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSConnectOptions<br>Method or attribute name: address|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSConnectOptions<br>Method or attribute name: secureOptions|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: TLSConnectOptions<br>Method or attribute name: ALPNProtocols|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: Protocol|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: Protocol<br>Method or attribute name: TLSv12|@ohos.net.socket.d.ts|
|Added||Module name: ohos.net.socket<br>Class name: Protocol<br>Method or attribute name: TLSv13|@ohos.net.socket.d.ts|
|Added||Method or attribute name: NDEF_FORMATABLE<br>Function name: const NDEF_FORMATABLE = 7;|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_EMPTY|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_WELL_KNOWN|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_MEDIA|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_ABSOLUTE_URI|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_EXT_APP|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_UNKNOWN|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: TnfType<br>Method or attribute name: TNF_UNCHANGED|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_1|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_2|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_3|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_4|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NfcForumType<br>Method or attribute name: MIFARE_CLASSIC|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: RTD_TEXT|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: RTD_URI|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicType|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_UNKNOWN|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_CLASSIC|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_PLUS|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_PRO|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicSize|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicSize<br>Method or attribute name: MC_SIZE_MINI|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicSize<br>Method or attribute name: MC_SIZE_1K|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicSize<br>Method or attribute name: MC_SIZE_2K|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareClassicSize<br>Method or attribute name: MC_SIZE_4K|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareUltralightType|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_UNKNOWN|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_ULTRALIGHT|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_ULTRALIGHT_C|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getIsoDep|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getNdef|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getMifareClassic|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getMifareUltralight|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getNdefFormatable|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getTagInfo|@ohos.nfc.tag.d.ts|
|Added||Method or attribute name: uid<br>Function name: uid: number[];|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NdefRecord|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NdefRecord<br>Method or attribute name: tnf|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NdefRecord<br>Method or attribute name: rtdType|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NdefRecord<br>Method or attribute name: id|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: NdefRecord<br>Method or attribute name: payload|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: makeUriRecord|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: makeTextRecord|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: makeMimeRecord|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: makeExternalRecord|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: createNdefMessage|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: createNdefMessage|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.nfc.tag<br>Class name: ndef<br>Method or attribute name: messageToBytes|@ohos.nfc.tag.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: CHECK_PARAM_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: OS_MMAP_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: OS_IOCTL_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: WRITE_TO_ASHMEM_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: READ_FROM_ASHMEM_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: ONLY_PROXY_OBJECT_PERMITTED_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: ONLY_REMOTE_OBJECT_PERMITTED_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: COMMUNICATION_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: PROXY_OR_REMOTE_OBJECT_INVALID_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: WRITE_DATA_TO_MESSAGE_SEQUENCE_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: READ_DATA_FROM_MESSAGE_SEQUENCE_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: PARCEL_MEMORY_ALLOC_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: CALL_JS_METHOD_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: ErrorCode<br>Method or attribute name: OS_DUP_ERROR|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: create|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: reclaim|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeRemoteObject|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readRemoteObject|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeInterfaceToken|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readInterfaceToken|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getSize|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getCapacity|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: setSize|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: setCapacity|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getWritableBytes|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getReadableBytes|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getReadPosition|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getWritePosition|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: rewindRead|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: rewindWrite|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeNoException|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readException|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeByte|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeShort|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeInt|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeLong|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeFloat|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeDouble|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeBoolean|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeChar|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeString|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeParcelable|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeByteArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeShortArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeIntArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeLongArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeFloatArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeDoubleArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeBooleanArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeCharArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeStringArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeParcelableArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeRemoteObjectArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readByte|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readShort|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readInt|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readLong|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readFloat|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readDouble|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readBoolean|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readChar|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readString|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readParcelable|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readByteArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readByteArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readShortArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readShortArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readIntArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readIntArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readLongArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readLongArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readFloatArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readFloatArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readDoubleArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readDoubleArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readBooleanArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readBooleanArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readCharArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readCharArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readStringArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readStringArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readParcelableArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readRemoteObjectArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readRemoteObjectArray|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: closeFileDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: dupFileDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: containFileDescriptors|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeFileDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readFileDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: getRawDataCapacity|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: writeRawData|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageSequence<br>Method or attribute name: readRawData|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Parcelable|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Parcelable<br>Method or attribute name: marshalling|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Parcelable<br>Method or attribute name: unmarshalling|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RequestResult|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RequestResult<br>Method or attribute name: errCode|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RequestResult<br>Method or attribute name: code|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RequestResult<br>Method or attribute name: data|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RequestResult<br>Method or attribute name: reply|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: getLocalInterface|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: registerDeathRecipient|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: unregisterDeathRecipient|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: getDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageOption<br>Method or attribute name: ructor(async?|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageOption<br>Method or attribute name: isAsync|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: MessageOption<br>Method or attribute name: setAsync|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: getLocalInterface|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: getDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: onRemoteMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: modifyLocalInterface|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: getLocalInterface|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: registerDeathRecipient|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: unregisterDeathRecipient|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: getDescriptor|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: sendMessageRequest|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IPCSkeleton<br>Method or attribute name: flushCmdBuffer|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: IPCSkeleton<br>Method or attribute name: restoreCallingIdentity|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: create|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: create|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: mapTypedAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: mapReadWriteAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: mapReadonlyAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: setProtectionType|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: writeAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.rpc<br>Class name: Ashmem<br>Method or attribute name: readAshmem|@ohos.rpc.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: enableWifi|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: disableWifi|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: isWifiActive|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: scan|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getScanResults|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getScanResults|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getScanResultsSync|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: addDeviceConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: addDeviceConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: addCandidateConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: addCandidateConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: removeCandidateConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: removeCandidateConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getCandidateConfigs|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: connectToCandidateConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: connectToNetwork|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: connectToDevice|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: disconnect|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getSignalLevel|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: isConnected|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getSupportedFeatures|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: isFeatureSupported|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getDeviceMacAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getIpInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getCountryCode|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: reassociate|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: reconnect|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getDeviceConfigs|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: updateNetwork|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: disableNetwork|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: removeAllNetwork|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: removeDevice|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: enableHotspot|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: disableHotspot|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: isHotspotDualBandSupported|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: isHotspotActive|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: setHotspotConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getHotspotConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getStations|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getCurrentGroup|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getCurrentGroup|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pPeerDevices|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pPeerDevices|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pLocalDevice|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pLocalDevice|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: createGroup|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: removeGroup|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: p2pConnect|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: p2pDisconnect|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: startDiscoverDevices|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: stopDiscoverDevices|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: deletePersistentGroup|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pGroups|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: getP2pGroups|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: setDeviceName|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_wifiStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_wifiStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_wifiConnectionChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_wifiConnectionChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_wifiScanStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_wifiScanStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_wifiRssiChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_wifiRssiChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_streamChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_streamChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_deviceConfigChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_deviceConfigChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_hotspotStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_hotspotStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_hotspotStaJoin|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_hotspotStaJoin|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_hotspotStaLeave|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_hotspotStaLeave|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pStateChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pConnectionChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pConnectionChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pDeviceChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pDeviceChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pPeerDeviceChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pPeerDeviceChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pPersistentGroupChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pPersistentGroupChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: on_p2pDiscoveryChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: wifiManager<br>Method or attribute name: off_p2pDiscoveryChange|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_NONE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_PEAP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_TLS|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_TTLS|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_PWD|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_SIM|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_AKA|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_AKA_PRIME|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: EapMethod<br>Method or attribute name: EAP_UNAUTH_TLS|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_NONE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_PAP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSCHAP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSCHAPV2|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_GTC|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_SIM|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA_PRIME|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: phase2Method|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: identity|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: anonymousIdentity|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: password|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: caCertAliases|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: caPath|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: clientCertAliases|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: altSubjectMatch|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: domainSuffixMatch|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: realm|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: plmn|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiEapConfig<br>Method or attribute name: eapSubId|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: ssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: bssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: preSharedKey|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: isHiddenSsid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: securityType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: creatorUid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: disableReason|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: netId|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: randomMacType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: randomMacAddr|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: ipType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: staticIp|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiDeviceConfig<br>Method or attribute name: eapConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig<br>Method or attribute name: ipAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig<br>Method or attribute name: gateway|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig<br>Method or attribute name: prefixLength|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig<br>Method or attribute name: dnsServers|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpConfig<br>Method or attribute name: domains|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiInfoElem|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiInfoElem<br>Method or attribute name: eid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiInfoElem<br>Method or attribute name: content|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_20MHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_40MHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_80MHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_160MHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_80MHZ_PLUS|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_INVALID|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: ssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: bssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: capabilities|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: securityType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: rssi|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: band|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: frequency|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: channelWidth|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: centerFrequency0|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: centerFrequency1|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: infoElems|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiScanInfo<br>Method or attribute name: timestamp|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_INVALID|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_OPEN|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_WEP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_PSK|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_SAE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_EAP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_EAP_SUITE_B|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_OWE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_WAPI_CERT|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_WAPI_PSK|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: ssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: bssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: networkId|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: rssi|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: band|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: linkSpeed|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: frequency|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: isHidden|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: isRestricted|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: chload|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: snr|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: macType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: macAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: ipAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: suppState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiLinkedInfo<br>Method or attribute name: connState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: ipAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: gateway|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: netmask|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: primaryDns|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: secondDns|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: serverIp|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpInfo<br>Method or attribute name: leaseDuration|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig<br>Method or attribute name: ssid|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig<br>Method or attribute name: securityType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig<br>Method or attribute name: band|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig<br>Method or attribute name: preSharedKey|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: HotspotConfig<br>Method or attribute name: maxConn|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: StationInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: StationInfo<br>Method or attribute name: name|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: StationInfo<br>Method or attribute name: macAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: StationInfo<br>Method or attribute name: ipAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpType<br>Method or attribute name: STATIC|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpType<br>Method or attribute name: DHCP|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: IpType<br>Method or attribute name: UNKNOWN|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: DISCONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: INTERFACE_DISABLED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: INACTIVE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: SCANNING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: AUTHENTICATING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: ASSOCIATING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: ASSOCIATED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: FOUR_WAY_HANDSHAKE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: GROUP_HANDSHAKE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: COMPLETED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: UNINITIALIZED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: SuppState<br>Method or attribute name: INVALID|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: SCANNING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: CONNECTING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: AUTHENTICATING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: OBTAINING_IPADDR|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: CONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: DISCONNECTING|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: DISCONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: ConnState<br>Method or attribute name: UNKNOWN|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice<br>Method or attribute name: deviceName|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice<br>Method or attribute name: deviceAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice<br>Method or attribute name: primaryDeviceType|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice<br>Method or attribute name: deviceStatus|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pDevice<br>Method or attribute name: groupCapabilities|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig<br>Method or attribute name: deviceAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig<br>Method or attribute name: netId|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig<br>Method or attribute name: passphrase|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig<br>Method or attribute name: groupName|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2PConfig<br>Method or attribute name: goBand|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: isP2pGo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: ownerInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: passphrase|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: interface|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: groupName|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: networkId|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: frequency|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: clientDevices|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pGroupInfo<br>Method or attribute name: goIpAddress|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pConnectState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pConnectState<br>Method or attribute name: DISCONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pConnectState<br>Method or attribute name: CONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pLinkedInfo|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pLinkedInfo<br>Method or attribute name: connectState|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pLinkedInfo<br>Method or attribute name: isGroupOwner|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: WifiP2pLinkedInfo<br>Method or attribute name: groupOwnerAddr|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus<br>Method or attribute name: CONNECTED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus<br>Method or attribute name: INVITED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus<br>Method or attribute name: FAILED|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus<br>Method or attribute name: AVAILABLE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: P2pDeviceStatus<br>Method or attribute name: UNAVAILABLE|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: GroupOwnerBand|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: GroupOwnerBand<br>Method or attribute name: GO_BAND_AUTO|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: GroupOwnerBand<br>Method or attribute name: GO_BAND_2GHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManager<br>Class name: GroupOwnerBand<br>Method or attribute name: GO_BAND_5GHZ|@ohos.wifiManager.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: enableHotspot|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: disableHotspot|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: getSupportedPowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: getSupportedPowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: getPowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: getPowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: wifiManagerExt<br>Method or attribute name: setPowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: PowerMode|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: PowerMode<br>Method or attribute name: SLEEPING|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: PowerMode<br>Method or attribute name: GENERAL|@ohos.wifiManagerExt.d.ts|
|Added||Module name: ohos.wifiManagerExt<br>Class name: PowerMode<br>Method or attribute name: THROUGH_WALL|@ohos.wifiManagerExt.d.ts|
|Added||Method or attribute name: getHistoricalBytes<br>Function name: getHistoricalBytes(): number[];|nfctech.d.ts|
|Added||Method or attribute name: getHiLayerResponse<br>Function name: getHiLayerResponse(): number[];|nfctech.d.ts|
|Added||Method or attribute name: getNdefRecords<br>Function name: getNdefRecords(): tag.NdefRecord[];|nfctech.d.ts|
|Added||Method or attribute name: getNdefTagType<br>Function name: getNdefTagType(): tag.NfcForumType;|nfctech.d.ts|
|Added||Method or attribute name: isNdefWritable<br>Function name: isNdefWritable(): boolean;|nfctech.d.ts|
|Added||Method or attribute name: writeNdef<br>Function name: writeNdef(msg: NdefMessage): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: writeNdef<br>Function name: writeNdef(msg: NdefMessage, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: canSetReadOnly<br>Function name: canSetReadOnly(): boolean;|nfctech.d.ts|
|Added||Method or attribute name: setReadOnly<br>Function name: setReadOnly(): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: setReadOnly<br>Function name: setReadOnly(callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: getNdefTagTypeString<br>Function name: getNdefTagTypeString(type: tag.NfcForumType): string;|nfctech.d.ts|
|Added||Method or attribute name: authenticateSector<br>Function name: authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: authenticateSector<br>Function name: authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: number): Promise<number[]>;|nfctech.d.ts|
|Added||Method or attribute name: readSingleBlock<br>Function name: readSingleBlock(blockIndex: number, callback: AsyncCallback<number[]>): void;|nfctech.d.ts|
|Added||Method or attribute name: writeSingleBlock<br>Function name: writeSingleBlock(blockIndex: number, data: number[]): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: writeSingleBlock<br>Function name: writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: number, value: number): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: incrementBlock<br>Function name: incrementBlock(blockIndex: number, value: number, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: number, value: number): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: decrementBlock<br>Function name: decrementBlock(blockIndex: number, value: number, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: number): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: transferToBlock<br>Function name: transferToBlock(blockIndex: number, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: restoreFromBlock<br>Function name: restoreFromBlock(blockIndex: number): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: restoreFromBlock<br>Function name: restoreFromBlock(blockIndex: number, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: getType<br>Function name: getType(): tag.MifareClassicType;|nfctech.d.ts|
|Added||Method or attribute name: readMultiplePages<br>Function name: readMultiplePages(pageIndex: number): Promise<number[]>;|nfctech.d.ts|
|Added||Method or attribute name: readMultiplePages<br>Function name: readMultiplePages(pageIndex: number, callback: AsyncCallback<number[]>): void;|nfctech.d.ts|
|Added||Module name: nfctech<br>Class name: MifareUltralightTag<br>Method or attribute name: writeSinglePage|nfctech.d.ts|
|Added||Module name: nfctech<br>Class name: MifareUltralightTag<br>Method or attribute name: writeSinglePage|nfctech.d.ts|
|Added||Method or attribute name: getType<br>Function name: getType(): tag.MifareUltralightType;|nfctech.d.ts|
|Added||Method or attribute name: format<br>Function name: format(message: NdefMessage): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: format<br>Function name: format(message: NdefMessage, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Added||Method or attribute name: formatReadOnly<br>Function name: formatReadOnly(message: NdefMessage): Promise<void>;|nfctech.d.ts|
|Added||Method or attribute name: formatReadOnly<br>Function name: formatReadOnly(message: NdefMessage, callback: AsyncCallback<void>): void;|nfctech.d.ts|
|Deleted|Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getIsoDepTag||@ohos.nfc.tag.d.ts|
|Deleted|Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getNdefTag||@ohos.nfc.tag.d.ts|
|Deleted|Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getMifareClassicTag||@ohos.nfc.tag.d.ts|
|Deleted|Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getMifareUltralightTag||@ohos.nfc.tag.d.ts|
|Deleted|Module name: ohos.nfc.tag<br>Class name: tag<br>Method or attribute name: getNdefFormatableTag||@ohos.nfc.tag.d.ts|
|Deleted|Module name: ohos.rpc<br>Class name: IRemoteObject<br>Method or attribute name: sendRequestAsync||@ohos.rpc.d.ts|
|Deleted|Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: onRemoteRequestEx||@ohos.rpc.d.ts|
|Deleted|Module name: ohos.rpc<br>Class name: RemoteObject<br>Method or attribute name: sendRequestAsync||@ohos.rpc.d.ts|
|Deleted|Module name: ohos.rpc<br>Class name: RemoteProxy<br>Method or attribute name: sendRequestAsync||@ohos.rpc.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getScanInfosSync||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: addCandidateConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: addCandidateConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: removeCandidateConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: removeCandidateConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getCandidateConfigs||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: connectToCandidateConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getP2pLocalDevice||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getP2pLocalDevice||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getP2pGroups||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: getP2pGroups||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: on_deviceConfigChange||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: wifi<br>Method or attribute name: off_deviceConfigChange||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_NONE||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_PEAP||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_TLS||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_TTLS||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_PWD||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_SIM||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_AKA||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_AKA_PRIME||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: EapMethod<br>Method or attribute name: EAP_UNAUTH_TLS||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_NONE||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_PAP||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSCHAP||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_MSCHAPV2||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_GTC||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_SIM||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: Phase2Method<br>Method or attribute name: PHASE2_AKA_PRIME||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: eapMethod||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: phase2Method||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: identity||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: anonymousIdentity||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: password||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: caCertAliases||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: caPath||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: clientCertAliases||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: altSubjectMatch||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: domainSuffixMatch||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: realm||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: plmn||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiEapConfig<br>Method or attribute name: eapSubId||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiDeviceConfig<br>Method or attribute name: eapConfig||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiInfoElem||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiInfoElem<br>Method or attribute name: eid||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiInfoElem<br>Method or attribute name: content||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_20MHZ||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_40MHZ||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_80MHZ||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_160MHZ||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_80MHZ_PLUS||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiChannelWidth<br>Method or attribute name: WIDTH_INVALID||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiScanInfo<br>Method or attribute name: centerFrequency0||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiScanInfo<br>Method or attribute name: centerFrequency1||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiScanInfo<br>Method or attribute name: infoElems||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_EAP||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_EAP_SUITE_B||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_OWE||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_WAPI_CERT||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiSecurityType<br>Method or attribute name: WIFI_SEC_TYPE_WAPI_PSK||@ohos.wifi.d.ts|
|Deleted|Module name: ohos.wifi<br>Class name: WifiLinkedInfo<br>Method or attribute name: macType||@ohos.wifi.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefRecord||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefRecord<br>Method or attribute name: tnf||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefRecord<br>Method or attribute name: rtdType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefRecord<br>Method or attribute name: id||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefRecord<br>Method or attribute name: payload||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_EMPTY||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_WELL_KNOWN||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_MEDIA||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_ABSOLUTE_URI||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_EXT_APP||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_UNKNOWN||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: TnfType<br>Method or attribute name: TNF_UNCHANGED||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: RtdType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: RtdType<br>Method or attribute name: RTD_TEXT||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: RtdType<br>Method or attribute name: RTD_URI||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefMessage<br>Method or attribute name: makeUriRecord||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefMessage<br>Method or attribute name: makeTextRecord||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefMessage<br>Method or attribute name: makeMimeRecord||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefMessage<br>Method or attribute name: makeExternalRecord||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefMessage<br>Method or attribute name: messageToString||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_1||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_2||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_3||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType<br>Method or attribute name: NFC_FORUM_TYPE_4||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NfcForumType<br>Method or attribute name: MIFARE_CLASSIC||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefTag<br>Method or attribute name: createNdefMessage||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: NdefTag<br>Method or attribute name: createNdefMessage||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareClassicType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_UNKNOWN||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_CLASSIC||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_PLUS||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareClassicType<br>Method or attribute name: TYPE_PRO||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareTagSize||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareTagSize<br>Method or attribute name: MC_SIZE_MINI||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareTagSize<br>Method or attribute name: MC_SIZE_1K||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareTagSize<br>Method or attribute name: MC_SIZE_2K||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareTagSize<br>Method or attribute name: MC_SIZE_4K||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightType||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_UNKOWN||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_ULTRALIGHT||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightType<br>Method or attribute name: TYPE_ULTRALIGHT_C||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightTag<br>Method or attribute name: writeSinglePages||nfctech.d.ts|
|Deleted|Module name: nfctech<br>Class name: MifareUltralightTag<br>Method or attribute name: writeSinglePages||nfctech.d.ts|
|Deprecated version changed|Class name: MessageParcel<br>Deprecated version: N/A|Class name: MessageParcel<br>Deprecated version: 9<br>New API: ohos.rpc.MessageSequence |@ohos.rpc.d.ts|
|Deprecated version changed|Class name: Sequenceable<br>Deprecated version: N/A|Class name: Sequenceable<br>Deprecated version: 9<br>New API: ohos.rpc.Parcelable |@ohos.rpc.d.ts|
|Deprecated version changed|Class name: SendRequestResult<br>Deprecated version: N/A|Class name: SendRequestResult<br>Deprecated version: 9<br>New API: ohos.rpc.RequestResult |@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: queryLocalInterface<br>Deprecated version: N/A|Method or attribute name: queryLocalInterface<br>Deprecated version: 9<br>New API: ohos.rpc.IRemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: sendRequest<br>Deprecated version: 8|Method or attribute name: sendRequest<br>Deprecated version: 9|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: sendRequest<br>Deprecated version: N/A|Method or attribute name: sendRequest<br>Deprecated version: 9<br>New API: ohos.rpc.IRemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: addDeathRecipient<br>Deprecated version: N/A|Method or attribute name: addDeathRecipient<br>Deprecated version: 9<br>New API: ohos.rpc.IRemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: removeDeathRecipient<br>Deprecated version: N/A|Method or attribute name: removeDeathRecipient<br>Deprecated version: 9<br>New API: ohos.rpc.IRemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: N/A|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: 9<br>New API: ohos.rpc.IRemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: queryLocalInterface<br>Deprecated version: N/A|Method or attribute name: queryLocalInterface<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: N/A|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: sendRequest<br>Deprecated version: N/A|Method or attribute name: sendRequest<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: attachLocalInterface<br>Deprecated version: N/A|Method or attribute name: attachLocalInterface<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteObject|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: queryLocalInterface<br>Deprecated version: N/A|Method or attribute name: queryLocalInterface<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteProxy|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: addDeathRecipient<br>Deprecated version: N/A|Method or attribute name: addDeathRecipient<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteProxy|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: removeDeathRecipient<br>Deprecated version: N/A|Method or attribute name: removeDeathRecipient<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteProxy|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: N/A|Method or attribute name: getInterfaceDescriptor<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteProxy|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: sendRequest<br>Deprecated version: N/A|Method or attribute name: sendRequest<br>Deprecated version: 9<br>New API: ohos.rpc.RemoteProxy|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: flushCommands<br>Deprecated version: N/A|Method or attribute name: flushCommands<br>Deprecated version: 9<br>New API: ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: setCallingIdentity<br>Deprecated version: N/A|Method or attribute name: setCallingIdentity<br>Deprecated version: 9<br>New API: ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: createAshmem<br>Deprecated version: N/A|Method or attribute name: createAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: createAshmemFromExisting<br>Deprecated version: N/A|Method or attribute name: createAshmemFromExisting<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: mapAshmem<br>Deprecated version: N/A|Method or attribute name: mapAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: mapReadAndWriteAshmem<br>Deprecated version: N/A|Method or attribute name: mapReadAndWriteAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: mapReadOnlyAshmem<br>Deprecated version: N/A|Method or attribute name: mapReadOnlyAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: setProtection<br>Deprecated version: N/A|Method or attribute name: setProtection<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: writeToAshmem<br>Deprecated version: N/A|Method or attribute name: writeToAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: readFromAshmem<br>Deprecated version: N/A|Method or attribute name: readFromAshmem<br>Deprecated version: 9<br>New API: ohos.rpc.Ashmem|@ohos.rpc.d.ts|
|Deprecated version changed|Method or attribute name: enableWifi<br>Deprecated version: N/A|Method or attribute name: enableWifi<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.enableWifi |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: disableWifi<br>Deprecated version: N/A|Method or attribute name: disableWifi<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.disableWifi |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: isWifiActive<br>Deprecated version: N/A|Method or attribute name: isWifiActive<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.isWifiActive |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: scan<br>Deprecated version: N/A|Method or attribute name: scan<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.scan |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getScanInfos<br>Deprecated version: N/A|Method or attribute name: getScanInfos<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getScanResults |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getScanInfos<br>Deprecated version: N/A|Method or attribute name: getScanInfos<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: addDeviceConfig<br>Deprecated version: N/A|Method or attribute name: addDeviceConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.addDeviceConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: addDeviceConfig<br>Deprecated version: N/A|Method or attribute name: addDeviceConfig<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: connectToNetwork<br>Deprecated version: N/A|Method or attribute name: connectToNetwork<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.connectToNetwork |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: connectToDevice<br>Deprecated version: N/A|Method or attribute name: connectToDevice<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.connectToDevice |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: disconnect<br>Deprecated version: N/A|Method or attribute name: disconnect<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.disconnect |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getSignalLevel<br>Deprecated version: N/A|Method or attribute name: getSignalLevel<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getSignalLevel |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getLinkedInfo<br>Deprecated version: N/A|Method or attribute name: getLinkedInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getLinkedInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getLinkedInfo<br>Deprecated version: N/A|Method or attribute name: getLinkedInfo<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: isConnected<br>Deprecated version: N/A|Method or attribute name: isConnected<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.isConnected |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getSupportedFeatures<br>Deprecated version: N/A|Method or attribute name: getSupportedFeatures<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getSupportedFeatures |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: isFeatureSupported<br>Deprecated version: N/A|Method or attribute name: isFeatureSupported<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.isFeatureSupported |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceMacAddress<br>Deprecated version: N/A|Method or attribute name: getDeviceMacAddress<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getDeviceMacAddress |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getIpInfo<br>Deprecated version: N/A|Method or attribute name: getIpInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getIpInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getCountryCode<br>Deprecated version: N/A|Method or attribute name: getCountryCode<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getCountryCode |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: reassociate<br>Deprecated version: N/A|Method or attribute name: reassociate<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.reassociate |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: reconnect<br>Deprecated version: N/A|Method or attribute name: reconnect<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.reconnect |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceConfigs<br>Deprecated version: N/A|Method or attribute name: getDeviceConfigs<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getDeviceConfigs |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: updateNetwork<br>Deprecated version: N/A|Method or attribute name: updateNetwork<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.updateNetwork |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: disableNetwork<br>Deprecated version: N/A|Method or attribute name: disableNetwork<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.disableNetwork |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: removeAllNetwork<br>Deprecated version: N/A|Method or attribute name: removeAllNetwork<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.removeAllNetwork |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: removeDevice<br>Deprecated version: N/A|Method or attribute name: removeDevice<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.removeDevice |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: enableHotspot<br>Deprecated version: N/A|Method or attribute name: enableHotspot<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.enableHotspot |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: disableHotspot<br>Deprecated version: N/A|Method or attribute name: disableHotspot<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.disableHotspot |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: isHotspotDualBandSupported<br>Deprecated version: N/A|Method or attribute name: isHotspotDualBandSupported<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.isHotspotDualBandSupported |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: isHotspotActive<br>Deprecated version: N/A|Method or attribute name: isHotspotActive<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.isHotspotActive |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: setHotspotConfig<br>Deprecated version: N/A|Method or attribute name: setHotspotConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.setHotspotConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getHotspotConfig<br>Deprecated version: N/A|Method or attribute name: getHotspotConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getHotspotConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getStations<br>Deprecated version: N/A|Method or attribute name: getStations<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getStations |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getP2pLinkedInfo<br>Deprecated version: N/A|Method or attribute name: getP2pLinkedInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getP2pLinkedInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getP2pLinkedInfo<br>Deprecated version: N/A|Method or attribute name: getP2pLinkedInfo<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getCurrentGroup<br>Deprecated version: N/A|Method or attribute name: getCurrentGroup<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getCurrentGroup |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getCurrentGroup<br>Deprecated version: N/A|Method or attribute name: getCurrentGroup<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getP2pPeerDevices<br>Deprecated version: N/A|Method or attribute name: getP2pPeerDevices<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.getP2pPeerDevices |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: getP2pPeerDevices<br>Deprecated version: N/A|Method or attribute name: getP2pPeerDevices<br>Deprecated version: 9|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: createGroup<br>Deprecated version: N/A|Method or attribute name: createGroup<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.createGroup |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: removeGroup<br>Deprecated version: N/A|Method or attribute name: removeGroup<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.removeGroup |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: p2pConnect<br>Deprecated version: N/A|Method or attribute name: p2pConnect<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.p2pConnect |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: p2pCancelConnect<br>Deprecated version: N/A|Method or attribute name: p2pCancelConnect<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.p2pDisonnect |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: startDiscoverDevices<br>Deprecated version: N/A|Method or attribute name: startDiscoverDevices<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.startDiscoverDevices |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: stopDiscoverDevices<br>Deprecated version: N/A|Method or attribute name: stopDiscoverDevices<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.stopDiscoverDevices |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: deletePersistentGroup<br>Deprecated version: N/A|Method or attribute name: deletePersistentGroup<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.deletePersistentGroup |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: setDeviceName<br>Deprecated version: N/A|Method or attribute name: setDeviceName<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.setDeviceName |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_wifiStateChange<br>Deprecated version: N/A|Method or attribute name: on_wifiStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_wifiStateChange<br>Deprecated version: N/A|Method or attribute name: off_wifiStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_wifiConnectionChange<br>Deprecated version: N/A|Method or attribute name: on_wifiConnectionChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_wifiConnectionChange<br>Deprecated version: N/A|Method or attribute name: off_wifiConnectionChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_wifiScanStateChange<br>Deprecated version: N/A|Method or attribute name: on_wifiScanStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_wifiScanStateChange<br>Deprecated version: N/A|Method or attribute name: off_wifiScanStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_wifiRssiChange<br>Deprecated version: N/A|Method or attribute name: on_wifiRssiChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_wifiRssiChange<br>Deprecated version: N/A|Method or attribute name: off_wifiRssiChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_streamChange<br>Deprecated version: N/A|Method or attribute name: on_streamChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_streamChange<br>Deprecated version: N/A|Method or attribute name: off_streamChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_hotspotStateChange<br>Deprecated version: N/A|Method or attribute name: on_hotspotStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_hotspotStateChange<br>Deprecated version: N/A|Method or attribute name: off_hotspotStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_hotspotStaJoin<br>Deprecated version: N/A|Method or attribute name: on_hotspotStaJoin<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_hotspotStaJoin<br>Deprecated version: N/A|Method or attribute name: off_hotspotStaJoin<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_hotspotStaLeave<br>Deprecated version: N/A|Method or attribute name: on_hotspotStaLeave<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_hotspotStaLeave<br>Deprecated version: N/A|Method or attribute name: off_hotspotStaLeave<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pStateChange<br>Deprecated version: N/A|Method or attribute name: on_p2pStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pStateChange<br>Deprecated version: N/A|Method or attribute name: off_p2pStateChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pConnectionChange<br>Deprecated version: N/A|Method or attribute name: on_p2pConnectionChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pConnectionChange<br>Deprecated version: N/A|Method or attribute name: off_p2pConnectionChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pDeviceChange<br>Deprecated version: N/A|Method or attribute name: on_p2pDeviceChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pDeviceChange<br>Deprecated version: N/A|Method or attribute name: off_p2pDeviceChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pPeerDeviceChange<br>Deprecated version: N/A|Method or attribute name: on_p2pPeerDeviceChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pPeerDeviceChange<br>Deprecated version: N/A|Method or attribute name: off_p2pPeerDeviceChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pPersistentGroupChange<br>Deprecated version: N/A|Method or attribute name: on_p2pPersistentGroupChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pPersistentGroupChange<br>Deprecated version: N/A|Method or attribute name: off_p2pPersistentGroupChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: on_p2pDiscoveryChange<br>Deprecated version: N/A|Method or attribute name: on_p2pDiscoveryChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: off_p2pDiscoveryChange<br>Deprecated version: N/A|Method or attribute name: off_p2pDiscoveryChange<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiDeviceConfig<br>Deprecated version: N/A|Class name: WifiDeviceConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: IpConfig<br>Deprecated version: N/A|Class name: IpConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiScanInfo<br>Deprecated version: N/A|Class name: WifiScanInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiSecurityType<br>Deprecated version: N/A|Class name: WifiSecurityType<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiLinkedInfo<br>Deprecated version: N/A|Class name: WifiLinkedInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: IpInfo<br>Deprecated version: N/A|Class name: IpInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: HotspotConfig<br>Deprecated version: N/A|Class name: HotspotConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: StationInfo<br>Deprecated version: N/A|Class name: StationInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: IpType<br>Deprecated version: N/A|Class name: IpType<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: SuppState<br>Deprecated version: N/A|Class name: SuppState<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: ConnState<br>Deprecated version: N/A|Class name: ConnState<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiP2pDevice<br>Deprecated version: N/A|Class name: WifiP2pDevice<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiP2PConfig<br>Deprecated version: N/A|Class name: WifiP2PConfig<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiP2pGroupInfo<br>Deprecated version: N/A|Class name: WifiP2pGroupInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: P2pConnectState<br>Deprecated version: N/A|Class name: P2pConnectState<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.P2pConnectState |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: WifiP2pLinkedInfo<br>Deprecated version: N/A|Class name: WifiP2pLinkedInfo<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: P2pDeviceStatus<br>Deprecated version: N/A|Class name: P2pDeviceStatus<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts|
|Deprecated version changed|Class name: GroupOwnerBand<br>Deprecated version: N/A|Class name: GroupOwnerBand<br>Deprecated version: 9<br>New API: ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts|
|Deprecated version changed|Method or attribute name: enableHotspot<br>Deprecated version: N/A|Method or attribute name: enableHotspot<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.enableHotspot |@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: disableHotspot<br>Deprecated version: N/A|Method or attribute name: disableHotspot<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.disableHotspot |@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: getSupportedPowerModel<br>Deprecated version: N/A|Method or attribute name: getSupportedPowerModel<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.getSupportedPowerMode |@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: getSupportedPowerModel<br>Deprecated version: N/A|Method or attribute name: getSupportedPowerModel<br>Deprecated version: 9|@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: getPowerModel<br>Deprecated version: N/A|Method or attribute name: getPowerModel<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.getPowerMode |@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: getPowerModel<br>Deprecated version: N/A|Method or attribute name: getPowerModel<br>Deprecated version: 9|@ohos.wifiext.d.ts|
|Deprecated version changed|Method or attribute name: setPowerModel<br>Deprecated version: N/A|Method or attribute name: setPowerModel<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.setPowerMode |@ohos.wifiext.d.ts|
|Deprecated version changed|Class name: PowerModel<br>Deprecated version: N/A|Class name: PowerModel<br>Deprecated version: 9<br>New API: ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts|
|Permission deleted|Method or attribute name: getNdefMessage<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getNdefMessage<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: getSectorCount<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getSectorCount<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: getBlockCountInSector<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getBlockCountInSector<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: getTagSize<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getTagSize<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: isEmulatedTag<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: isEmulatedTag<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: getBlockIndex<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getBlockIndex<br>Permission: N/A|nfctech.d.ts|
|Permission deleted|Method or attribute name: getSectorIndex<br>Permission: ohos.permission.NFC_TAG|Method or attribute name: getSectorIndex<br>Permission: N/A|nfctech.d.ts|
|Error code added||Method or attribute name: isExtendedApduSupported<br>Error code: 201, 401, 3100201|nfctech.d.ts|
|Error code added||Method or attribute name: readNdef<br>Error code: 201, 401, 3100201|nfctech.d.ts|
|Error code added||Method or attribute name: getBlockCountInSector<br>Error code: 401|nfctech.d.ts|
|Error code added||Method or attribute name: getBlockIndex<br>Error code: 401|nfctech.d.ts|
|Error code added||Method or attribute name: getSectorIndex<br>Error code: 401|nfctech.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.convertxml<br>Class name: ConvertXML<br>Method or attribute name: convertToJSObject|@ohos.convertxml.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: isAppUid|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: getUidForName|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: getThreadPriority|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: getSystemConfig|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: getEnvironmentVar|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: exit|@ohos.process.d.ts|
|Added||Module name: ohos.process<br>Class name: ProcessManager<br>Method or attribute name: kill|@ohos.process.d.ts|
|Added||Module name: ohos.uri<br>Class name: URI<br>Method or attribute name: equalsTo|@ohos.uri.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: string, key: string, searchParams: this) => void, thisArg?: Object): void;|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: ructor(init?|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: append|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: delete|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: getAll|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: entries|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: forEach|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: get|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: has|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: set|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: sort|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: keys|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: values|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: [Symbol.iterator]|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URLParams<br>Method or attribute name: toString|@ohos.url.d.ts|
|Added||Module name: ohos.url<br>Class name: URL<br>Method or attribute name: parseURL|@ohos.url.d.ts|
|Added||Method or attribute name: replaceAllElements<br>Function name: replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => T,<br><br> thisArg?: Object): void;|@ohos.util.ArrayList.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.ArrayList.d.ts|
|Added||Module name: ohos.util<br>Class name: util<br>Method or attribute name: format|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: util<br>Method or attribute name: errnoToString|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: TextDecoder<br>Method or attribute name: create|@ohos.util.d.ts|
|Added||Method or attribute name: encodeInto<br>Function name: encodeInto(input?: string): Uint8Array;|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: TextEncoder<br>Method or attribute name: encodeIntoUint8Array|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: RationalNumber<br>Method or attribute name: parseRationalNumber|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: RationalNumber<br>Method or attribute name: compare|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: RationalNumber<br>Method or attribute name: getCommonFactor|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: ructor(capacity?|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: updateCapacity|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: toString|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: length|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getCapacity|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: clear|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getCreateCount|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getMissCount|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getRemovalCount|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getMatchCount|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: getPutCount|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: isEmpty|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: get|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: put|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: values|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: keys|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: remove|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: afterRemoval|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: contains|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: createDefault|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: entries|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: LRUCache<br>Method or attribute name: [Symbol.iterator]|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: ructor(lowerObj|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: toString|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: intersect|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: intersect|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: getUpper|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: getLower|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: expand|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: expand|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: expand|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: contains|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: contains|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: ScopeHelper<br>Method or attribute name: clamp|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: encodeSync|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: encodeToStringSync|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: decodeSync|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: encode|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: encodeToString|@ohos.util.d.ts|
|Added||Module name: ohos.util<br>Class name: Base64Helper<br>Method or attribute name: decode|@ohos.util.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, deque?: Deque<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.Deque.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: V, key?: K, map?: HashMap<K, V>) => void,<br><br> thisArg?: Object): void;|@ohos.util.HashMap.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: T, key?: T, set?: HashSet<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.HashSet.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void,<br><br> thisArg?: Object): void;|@ohos.util.LightWeightMap.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.LightWeightSet.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, LinkedList?: LinkedList<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.LinkedList.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, List?: List<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.List.d.ts|
|Added||Method or attribute name: replaceAllElements<br>Function name: replaceAllElements(callbackFn: (value: T, index?: number, list?: List<T>) => T,<br><br> thisArg?: Object): void;|@ohos.util.List.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.PlainArray.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, Queue?: Queue<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.Queue.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, stack?: Stack<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.Stack.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void,<br><br> thisArg?: Object): void;|@ohos.util.TreeMap.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value?: T, key?: T, set?: TreeSet<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.TreeSet.d.ts|
|Added||Method or attribute name: replaceAllElements<br>Function name: replaceAllElements(callbackFn: (value: T, index?: number, vector?: Vector<T>) => T,<br><br> thisArg?: Object): void;|@ohos.util.Vector.d.ts|
|Added||Method or attribute name: forEach<br>Function name: forEach(callbackFn: (value: T, index?: number, vector?: Vector<T>) => void,<br><br> thisArg?: Object): void;|@ohos.util.Vector.d.ts|
|Added||Module name: ohos.worker<br>Class name: MessageEvents|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: MessageEvents<br>Method or attribute name: data|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventListener<br>Method or attribute name: WorkerEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventTarget|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventTarget<br>Method or attribute name: addEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventTarget<br>Method or attribute name: dispatchEvent|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventTarget<br>Method or attribute name: removeEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: WorkerEventTarget<br>Method or attribute name: removeAllListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: GlobalScope|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: GlobalScope<br>Method or attribute name: name|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: GlobalScope<br>Method or attribute name: onerror|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: GlobalScope<br>Method or attribute name: self|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope<br>Method or attribute name: onmessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope<br>Method or attribute name: onmessageerror|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope<br>Method or attribute name: close|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope<br>Method or attribute name: postMessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorkerGlobalScope<br>Method or attribute name: postMessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: ructor(scriptURL|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: onexit|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: onerror|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: onmessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: onmessageerror|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: postMessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: postMessage|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: on|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: once|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: off|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: terminate|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: addEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: dispatchEvent|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: removeEventListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: ThreadWorker<br>Method or attribute name: removeAllListener|@ohos.worker.d.ts|
|Added||Module name: ohos.worker<br>Class name: worker<br>Method or attribute name: workerPort|@ohos.worker.d.ts|
|Deleted |Module name: ohos.worker<br>Class name: Worker<br>Method or attribute name: addEventListener||@ohos.worker.d.ts|
|Deleted |Module name: ohos.worker<br>Class name: Worker<br>Method or attribute name: dispatchEvent||@ohos.worker.d.ts|
|Deleted |Module name: ohos.worker<br>Class name: Worker<br>Method or attribute name: removeEventListener||@ohos.worker.d.ts|
|Deleted |Module name: ohos.worker<br>Class name: Worker<br>Method or attribute name: removeAllListener||@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: convert<br>Deprecated version: N/A|Method or attribute name: convert<br>Deprecated version:9<br>New API:ohos.convertxml.ConvertXML.convertToJSObject |@ohos.convertxml.d.ts|
|Deprecated version changed|Method or attribute name: isAppUid<br>Deprecated version: N/A|Method or attribute name: isAppUid<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.isAppUid |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: getUidForName<br>Deprecated version: N/A|Method or attribute name: getUidForName<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.getUidForName |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: getThreadPriority<br>Deprecated version: N/A|Method or attribute name: getThreadPriority<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.getThreadPriority |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: getSystemConfig<br>Deprecated version: N/A|Method or attribute name: getSystemConfig<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.getSystemConfig |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: getEnvironmentVar<br>Deprecated version: N/A|Method or attribute name: getEnvironmentVar<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.getEnvironmentVar |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: exit<br>Deprecated version: N/A|Method or attribute name: exit<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.exit |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: kill<br>Deprecated version: N/A|Method or attribute name: kill<br>Deprecated version:9<br>New API:ohos.process.ProcessManager.kill |@ohos.process.d.ts|
|Deprecated version changed|Method or attribute name: equals<br>Deprecated version: N/A|Method or attribute name: equals<br>Deprecated version:9<br>New API:ohos.uri.URI.equalsTo |@ohos.uri.d.ts|
|Deprecated version changed|Class name:URLSearchParams<br>Deprecated version: N/A|Class name:URLSearchParams<br>Deprecated version:9<br>New API:ohos.url.URLParams |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: ructor(init?<br>Deprecated version: N/A|Method or attribute name: ructor(init?<br>Deprecated version:9<br>New API:ohos.url.URLParams.constructor |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: append<br>Deprecated version: N/A|Method or attribute name: append<br>Deprecated version:9<br>New API:ohos.url.URLParams.append |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: delete<br>Deprecated version: N/A|Method or attribute name: delete<br>Deprecated version:9<br>New API:ohos.url.URLParams.delete |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: getAll<br>Deprecated version: N/A|Method or attribute name: getAll<br>Deprecated version:9<br>New API:ohos.url.URLParams.getAll |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: entries<br>Deprecated version: N/A|Method or attribute name: entries<br>Deprecated version:9<br>New API:ohos.url.URLParams.entries |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: get<br>Deprecated version: N/A|Method or attribute name: get<br>Deprecated version:9<br>New API:ohos.url.URLParams.get |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: has<br>Deprecated version: N/A|Method or attribute name: has<br>Deprecated version:9<br>New API:ohos.url.URLParams.has |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: set<br>Deprecated version: N/A|Method or attribute name: set<br>Deprecated version:9<br>New API:ohos.url.URLParams.set |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: sort<br>Deprecated version: N/A|Method or attribute name: sort<br>Deprecated version:9<br>New API:ohos.url.URLParams.sort |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: keys<br>Deprecated version: N/A|Method or attribute name: keys<br>Deprecated version:9<br>New API:ohos.url.URLParams.keys |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: values<br>Deprecated version: N/A|Method or attribute name: values<br>Deprecated version:9<br>New API:ohos.url.URLParams.values |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: [Symbol.iterator]<br>Deprecated version: N/A|Method or attribute name: [Symbol.iterator]<br>Deprecated version:9<br>New API:ohos.url.URLParams.|@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: toString<br>Deprecated version: N/A|Method or attribute name: toString<br>Deprecated version:9<br>New API:ohos.url.URLParams.toString |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: ructor(url<br>Deprecated version: N/A|Method or attribute name: ructor(url<br>Deprecated version:9<br>New API:ohos.URL.constructor |@ohos.url.d.ts|
|Deprecated version changed|Method or attribute name: printf<br>Deprecated version: N/A|Method or attribute name: printf<br>Deprecated version:9<br>New API:ohos.util.format |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getErrorString<br>Deprecated version: N/A|Method or attribute name: getErrorString<br>Deprecated version:9<br>New API:ohos.util.errnoToString |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: ructor(<br><br> encoding?<br>Deprecated version: N/A|Method or attribute name: ructor(<br><br> encoding?<br>Deprecated version:9<br>New API:ohos.util.constructor |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: decode<br>Deprecated version: N/A|Method or attribute name: decode<br>Deprecated version:9<br>New API:ohos.util.decodeWithStream |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encode<br>Deprecated version: N/A|Method or attribute name: encode<br>Deprecated version:9<br>New API:ohos.util.encodeInto |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encodeInto<br>Deprecated version: N/A|Method or attribute name: encodeInto<br>Deprecated version:9<br>New API:ohos.util.encodeIntoUint8Array |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: ructor(numerator<br>Deprecated version: N/A|Method or attribute name: ructor(numerator<br>Deprecated version:9<br>New API:ohos.util.constructor |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: compareTo<br>Deprecated version: N/A|Method or attribute name: compareTo<br>Deprecated version:9<br>New API:ohos.util.compare |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getCommonDivisor<br>Deprecated version: N/A|Method or attribute name: getCommonDivisor<br>Deprecated version:9<br>New API:ohos.util.getCommonFactor |@ohos.util.d.ts|
|Deprecated version changed|Class name:LruBuffer<br>Deprecated version: N/A|Class name:LruBuffer<br>Deprecated version:9<br>New API:ohos.util.LRUCache |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: updateCapacity<br>Deprecated version: N/A|Method or attribute name: updateCapacity<br>Deprecated version:9<br>New API:ohos.util.LRUCache.updateCapacity |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getCapacity<br>Deprecated version: N/A|Method or attribute name: getCapacity<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getCapacity |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: clear<br>Deprecated version: N/A|Method or attribute name: clear<br>Deprecated version:9<br>New API:ohos.util.LRUCache.clear |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getCreateCount<br>Deprecated version: N/A|Method or attribute name: getCreateCount<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getCreateCount |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getMissCount<br>Deprecated version: N/A|Method or attribute name: getMissCount<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getMissCount |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getRemovalCount<br>Deprecated version: N/A|Method or attribute name: getRemovalCount<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getRemovalCount |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getMatchCount<br>Deprecated version: N/A|Method or attribute name: getMatchCount<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getMatchCount |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getPutCount<br>Deprecated version: N/A|Method or attribute name: getPutCount<br>Deprecated version:9<br>New API:ohos.util.LRUCache.getPutCount |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: isEmpty<br>Deprecated version: N/A|Method or attribute name: isEmpty<br>Deprecated version:9<br>New API:ohos.util.LRUCache.isEmpty |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: get<br>Deprecated version: N/A|Method or attribute name: get<br>Deprecated version:9<br>New API:ohos.util.LRUCache.get |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: put<br>Deprecated version: N/A|Method or attribute name: put<br>Deprecated version:9<br>New API:ohos.util.LRUCache.put |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: values<br>Deprecated version: N/A|Method or attribute name: values<br>Deprecated version:9<br>New API:ohos.util.LRUCache.values |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: keys<br>Deprecated version: N/A|Method or attribute name: keys<br>Deprecated version:9<br>New API:ohos.util.LRUCache.keys |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version:9<br>New API:ohos.util.LRUCache.remove |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: afterRemoval<br>Deprecated version: N/A|Method or attribute name: afterRemoval<br>Deprecated version:9<br>New API:ohos.util.LRUCache.afterRemoval |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: contains<br>Deprecated version: N/A|Method or attribute name: contains<br>Deprecated version:9<br>New API:ohos.util.LRUCache.contains |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: createDefault<br>Deprecated version: N/A|Method or attribute name: createDefault<br>Deprecated version:9<br>New API:ohos.util.LRUCache.createDefault |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: entries<br>Deprecated version: N/A|Method or attribute name: entries<br>Deprecated version:9<br>New API:ohos.util.LRUCache.entries |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: [Symbol.iterator]<br>Deprecated version: N/A|Method or attribute name: [Symbol.iterator]<br>Deprecated version:9<br>New API:ohos.util.LRUCache.|@ohos.util.d.ts|
|Deprecated version changed|Class name:Scope<br>Deprecated version: N/A|Class name:Scope<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: ructor(lowerObj<br>Deprecated version: N/A|Method or attribute name: ructor(lowerObj<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.constructor |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: toString<br>Deprecated version: N/A|Method or attribute name: toString<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.toString |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: intersect<br>Deprecated version: N/A|Method or attribute name: intersect<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: intersect<br>Deprecated version: N/A|Method or attribute name: intersect<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getUpper<br>Deprecated version: N/A|Method or attribute name: getUpper<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.getUpper |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: getLower<br>Deprecated version: N/A|Method or attribute name: getLower<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.getLower |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: expand<br>Deprecated version: N/A|Method or attribute name: expand<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.expand |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: expand<br>Deprecated version: N/A|Method or attribute name: expand<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.expand |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: expand<br>Deprecated version: N/A|Method or attribute name: expand<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.expand |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: contains<br>Deprecated version: N/A|Method or attribute name: contains<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.contains |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: contains<br>Deprecated version: N/A|Method or attribute name: contains<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.contains |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: clamp<br>Deprecated version: N/A|Method or attribute name: clamp<br>Deprecated version:9<br>New API:ohos.util.ScopeHelper.clamp |@ohos.util.d.ts|
|Deprecated version changed|Class name:Base64<br>Deprecated version: N/A|Class name:Base64<br>Deprecated version:9<br>New API:ohos.util.Base64Helper |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encodeSync<br>Deprecated version: N/A|Method or attribute name: encodeSync<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.encodeSync |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encodeToStringSync<br>Deprecated version: N/A|Method or attribute name: encodeToStringSync<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.encodeToStringSync |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: decodeSync<br>Deprecated version: N/A|Method or attribute name: decodeSync<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.decodeSync |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encode<br>Deprecated version: N/A|Method or attribute name: encode<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.encode |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: encodeToString<br>Deprecated version: N/A|Method or attribute name: encodeToString<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.encodeToString |@ohos.util.d.ts|
|Deprecated version changed|Method or attribute name: decode<br>Deprecated version: N/A|Method or attribute name: decode<br>Deprecated version:9<br>New API:ohos.util.Base64Helper.decode |@ohos.util.d.ts|
|Deprecated version changed|Class name:Vector<br>Deprecated version: N/A|Class name:Vector<br>Deprecated version:9<br>New API:ohos.util.ArrayList |@ohos.util.Vector.d.ts|
|Deprecated version changed|Class name:EventListener<br>Deprecated version: N/A|Class name:EventListener<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventListener |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: EventListener<br>Deprecated version: N/A|Method or attribute name: EventListener<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventListener.|@ohos.worker.d.ts|
|Deprecated version changed|Class name:EventTarget<br>Deprecated version: N/A|Class name:EventTarget<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventTarget |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: addEventListener<br>Deprecated version: N/A|Method or attribute name: addEventListener<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventTarget.addEventListener |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: dispatchEvent<br>Deprecated version: N/A|Method or attribute name: dispatchEvent<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventTarget.dispatchEvent |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: removeEventListener<br>Deprecated version: N/A|Method or attribute name: removeEventListener<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventTarget.removeEventListener |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: removeAllListener<br>Deprecated version: N/A|Method or attribute name: removeAllListener<br>Deprecated version:9<br>New API:ohos.worker.WorkerEventTarget.removeAllListener |@ohos.worker.d.ts|
|Deprecated version changed|Class name:WorkerGlobalScope<br>Deprecated version: N/A|Class name:WorkerGlobalScope<br>Deprecated version:9<br>New API:ohos.worker.GlobalScope |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: name<br>Deprecated version: N/A|Method or attribute name: name<br>Deprecated version:9<br>New API:ohos.worker.GlobalScope.name |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onerror<br>Deprecated version: N/A|Method or attribute name: onerror<br>Deprecated version:9<br>New API:ohos.worker.GlobalScope.onerror |@ohos.worker.d.ts|
|Deprecated version changed|Class name:DedicatedWorkerGlobalScope<br>Deprecated version: N/A|Class name:DedicatedWorkerGlobalScope<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorkerGlobalScope |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onmessage<br>Deprecated version: N/A|Method or attribute name: onmessage<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorkerGlobalScope.onmessage |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onmessageerror<br>Deprecated version: N/A|Method or attribute name: onmessageerror<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorkerGlobalScope.onmessageerror |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: close<br>Deprecated version: N/A|Method or attribute name: close<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorkerGlobalScope.close |@ohos.worker.d.ts|
|Deprecated version changed|Class name:Worker<br>Deprecated version: N/A|Class name:Worker<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: ructor(scriptURL<br>Deprecated version: N/A|Method or attribute name: ructor(scriptURL<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.constructor |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onexit<br>Deprecated version: N/A|Method or attribute name: onexit<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.onexit |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onerror<br>Deprecated version: N/A|Method or attribute name: onerror<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.onerror |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onmessage<br>Deprecated version: N/A|Method or attribute name: onmessage<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.onmessage |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: onmessageerror<br>Deprecated version: N/A|Method or attribute name: onmessageerror<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.onmessageerror |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: postMessage<br>Deprecated version: N/A|Method or attribute name: postMessage<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.postMessage |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: postMessage<br>Deprecated version: N/A|Method or attribute name: postMessage<br>Deprecated version:9|@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: on<br>Deprecated version: N/A|Method or attribute name: on<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.on |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.once |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: off<br>Deprecated version: N/A|Method or attribute name: off<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.off |@ohos.worker.d.ts|
|Deprecated version changed|Method or attribute name: terminate<br>Deprecated version: N/A|Method or attribute name: terminate<br>Deprecated version:9<br>New API:ohos.worker.ThreadWorker.terminate |@ohos.worker.d.ts|
|Initial version changed|Class name:RationalNumber<br>Initial version: 7|Class name:RationalNumber<br>Initial version: 8|@ohos.util.d.ts|
|Initial version changed|Class name:LruBuffer<br>Initial version: 7|Class name:LruBuffer<br>Initial version: 8|@ohos.util.d.ts|
|Initial version changed|Class name:Scope<br>Initial version: 7|Class name:Scope<br>Initial version: 8|@ohos.util.d.ts|
|Initial version changed|Class name:Base64<br>Initial version: 7|Class name:Base64<br>Initial version: 8|@ohos.util.d.ts|
|Initial version changed|Class name:types<br>Initial version: 7|Class name:types<br>Initial version: 8|@ohos.util.d.ts|
|Initial version changed|Class name:Vector<br>Initial version: |Class name:Vector<br>Initial version: 8|@ohos.util.Vector.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: EnterpriseInfo|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: EnterpriseInfo<br>Method or attribute name: name|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: EnterpriseInfo<br>Method or attribute name: description|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: AdminType|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: AdminType<br>Method or attribute name: ADMIN_TYPE_NORMAL|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: AdminType<br>Method or attribute name: ADMIN_TYPE_SUPER|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: ManagedEvent|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: ManagedEvent<br>Method or attribute name: MANAGED_EVENT_BUNDLE_ADDED|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: ManagedEvent<br>Method or attribute name: MANAGED_EVENT_BUNDLE_REMOVED|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: enableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: enableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: enableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: disableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: disableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: disableAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: disableSuperAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: disableSuperAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: isAdminEnabled|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: isAdminEnabled|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: isAdminEnabled|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: getEnterpriseInfo|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: getEnterpriseInfo|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: setEnterpriseInfo|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: setEnterpriseInfo|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: isSuperAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: isSuperAdmin|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: subscribeManagedEvent|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: subscribeManagedEvent|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: unsubscribeManagedEvent|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.adminManager<br>Class name: adminManager<br>Method or attribute name: unsubscribeManagedEvent|@ohos.enterprise.adminManager.d.ts|
|Added||Module name: ohos.enterprise.dateTimeManager<br>Class name: dateTimeManager|@ohos.enterprise.dateTimeManager.d.ts|
|Added||Module name: ohos.enterprise.dateTimeManager<br>Class name: dateTimeManager<br>Method or attribute name: setDateTime|@ohos.enterprise.dateTimeManager.d.ts|
|Added||Module name: ohos.enterprise.dateTimeManager<br>Class name: dateTimeManager<br>Method or attribute name: setDateTime|@ohos.enterprise.dateTimeManager.d.ts|
|Added||Module name: ohos.enterprise.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts|
|Added||Module name: ohos.enterprise.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onAdminEnabled|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts|
|Added||Module name: ohos.enterprise.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onAdminDisabled|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts|
|Added||Module name: ohos.enterprise.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onBundleAdded|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts|
|Added||Module name: ohos.enterprise.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onBundleRemoved|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts|
|Deleted|Module name: ohos.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility||@ohos.EnterpriseAdminExtensionAbility.d.ts|
|Deleted|Module name: ohos.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onAdminEnabled||@ohos.EnterpriseAdminExtensionAbility.d.ts|
|Deleted|Module name: ohos.EnterpriseAdminExtensionAbility<br>Class name: EnterpriseAdminExtensionAbility<br>Method or attribute name: onAdminDisabled||@ohos.EnterpriseAdminExtensionAbility.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: EnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: EnterpriseInfo<br>Method or attribute name: name||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: EnterpriseInfo<br>Method or attribute name: description||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: AdminType||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: AdminType<br>Method or attribute name: ADMIN_TYPE_NORMAL||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: AdminType<br>Method or attribute name: ADMIN_TYPE_SUPER||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: enableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: enableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: enableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: disableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: disableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: disableAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: disableSuperAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: disableSuperAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: getEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: getEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: setEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: setEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: isSuperAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: isSuperAdmin||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: getDeviceSettingsManager||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: ohos.enterpriseDeviceManager<br>Class name: enterpriseDeviceManager<br>Method or attribute name: getDeviceSettingsManager||@ohos.enterpriseDeviceManager.d.ts|
|Deleted|Module name: DeviceSettingsManager<br>Class name: DeviceSettingsManager||DeviceSettingsManager.d.ts|
|Deleted|Module name: DeviceSettingsManager<br>Class name: DeviceSettingsManager<br>Method or attribute name: setDateTime||DeviceSettingsManager.d.ts|
|Deleted|Module name: DeviceSettingsManager<br>Class name: DeviceSettingsManager<br>Method or attribute name: setDateTime||DeviceSettingsManager.d.ts|
|Access level changed|Class name: configPolicy<br>Access level: public API|Class name: configPolicy<br>Access level: system API|@ohos.configPolicy.d.ts|
|Error code added||Method or attribute name: getOneCfgFile<br>Error code: 401|@ohos.configPolicy.d.ts|
|Error code added||Method or attribute name: getCfgFiles<br>Error code: 401|@ohos.configPolicy.d.ts|
|Error code added||Method or attribute name: getCfgDirList<br>Error code: 401|@ohos.configPolicy.d.ts|
|Access level changed|Class name: configPolicy<br>Access level: public API|Class name: configPolicy<br>Access level: system API|@ohos.configPolicy.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.faultLogger<br>Class name: FaultLogger<br>Method or attribute name: query|@ohos.faultLogger.d.ts|
|Added||Module name: ohos.faultLogger<br>Class name: FaultLogger<br>Method or attribute name: query|@ohos.faultLogger.d.ts|
|Added||Module name: ohos.hichecker<br>Class name: hichecker<br>Method or attribute name: addCheckRule|@ohos.hichecker.d.ts|
|Added||Module name: ohos.hichecker<br>Class name: hichecker<br>Method or attribute name: removeCheckRule|@ohos.hichecker.d.ts|
|Added||Module name: ohos.hichecker<br>Class name: hichecker<br>Method or attribute name: containsCheckRule|@ohos.hichecker.d.ts|
|Added||Module name: ohos.hidebug<br>Class name: hidebug<br>Method or attribute name: startJsCpuProfiling|@ohos.hidebug.d.ts|
|Added||Module name: ohos.hidebug<br>Class name: hidebug<br>Method or attribute name: stopJsCpuProfiling|@ohos.hidebug.d.ts|
|Added||Module name: ohos.hidebug<br>Class name: hidebug<br>Method or attribute name: dumpJsHeapData|@ohos.hidebug.d.ts|
|Added||Method or attribute name: getServiceDump<br>Function name: function getServiceDump(serviceid : number, fd : number, args : Array<string>) : void;|@ohos.hidebug.d.ts|
|Added||Method or attribute name: onQuery<br>Function name: onQuery: (infos: SysEventInfo[]) => void;|@ohos.hiSysEvent.d.ts|
|Added||Method or attribute name: addWatcher<br>Function name: function addWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts|
|Added||Method or attribute name: removeWatcher<br>Function name: function removeWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts|
|Added||Method or attribute name: query<br>Function name: function query(queryArg: QueryArg, rules: QueryRule[], querier: Querier): void;|@ohos.hiSysEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: EventType|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: EventType<br>Method or attribute name: FAULT|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: EventType<br>Method or attribute name: STATISTIC|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: EventType<br>Method or attribute name: SECURITY|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: EventType<br>Method or attribute name: BEHAVIOR|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Event|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Event<br>Method or attribute name: USER_LOGIN|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Event<br>Method or attribute name: USER_LOGOUT|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Event<br>Method or attribute name: DISTRIBUTED_SERVICE_START|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Param|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Param<br>Method or attribute name: USER_ID|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Param<br>Method or attribute name: DISTRIBUTED_SERVICE_NAME|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Param<br>Method or attribute name: DISTRIBUTED_SERVICE_INSTANCE_ID|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: configure|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: ConfigOption|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: ConfigOption<br>Method or attribute name: disable|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: ConfigOption<br>Method or attribute name: maxStorage|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventInfo|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: domain|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: name|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: eventType|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: params|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: write|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: write|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackage|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: packageId|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: row|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: size|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: data|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackageHolder|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: ructor(watcherName|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: setSize|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: takeNext|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: TriggerCondition|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: row|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: size|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: timeOut|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventFilter|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventFilter<br>Method or attribute name: domain|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: AppEventFilter<br>Method or attribute name: eventTypes|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Watcher|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: name|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: triggerCondition|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: appEventFilters|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: onTrigger|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: addWatcher|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: removeWatcher|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Added||Module name: ohos.hiviewdfx.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: clearData|@ohos.hiviewdfx.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventInfo||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: domain||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: name||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: eventType||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventInfo<br>Method or attribute name: params||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackage||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: packageId||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: row||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: size||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackage<br>Method or attribute name: data||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackageHolder||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: ructor(watcherName||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: setSize||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventPackageHolder<br>Method or attribute name: takeNext||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: TriggerCondition||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: row||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: size||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: TriggerCondition<br>Method or attribute name: timeOut||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventFilter||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventFilter<br>Method or attribute name: domain||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: AppEventFilter<br>Method or attribute name: eventTypes||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: Watcher||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: name||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: triggerCondition||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: appEventFilters||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: Watcher<br>Method or attribute name: onTrigger||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: addWatcher||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: removeWatcher||@ohos.hiAppEvent.d.ts|
|Deleted |Module name: ohos.hiAppEvent<br>Class name: hiAppEvent<br>Method or attribute name: clearData||@ohos.hiAppEvent.d.ts|
|Deprecated version changed|Class name: bytrace<br>Deprecated version: N/A|Class name: bytrace<br>Deprecated version: 8<br>New API: ohos.hiTraceMeter |@ohos.bytrace.d.ts|
|Deprecated version changed|Method or attribute name: startTrace<br>Deprecated version: N/A|Method or attribute name: startTrace<br>Deprecated version: 8<br>New API: ohos.hiTraceMeter.startTrace |@ohos.bytrace.d.ts|
|Deprecated version changed|Method or attribute name: finishTrace<br>Deprecated version: N/A|Method or attribute name: finishTrace<br>Deprecated version: 8<br>New API: ohos.hiTraceMeter.finishTrace |@ohos.bytrace.d.ts|
|Deprecated version changed|Method or attribute name: traceByValue<br>Deprecated version: N/A|Method or attribute name: traceByValue<br>Deprecated version: 8<br>New API: ohos.hiTraceMeter.traceByValue |@ohos.bytrace.d.ts|
|Deprecated version changed|Method or attribute name: querySelfFaultLog<br>Deprecated version: N/A|Method or attribute name: querySelfFaultLog<br>Deprecated version: 9<br>New API: ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts|
|Deprecated version changed|Method or attribute name: querySelfFaultLog<br>Deprecated version: N/A|Method or attribute name: querySelfFaultLog<br>Deprecated version: 9<br>New API: ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts|
|Deprecated version changed|Class name: hiAppEvent<br>Deprecated version: N/A|Class name: hiAppEvent<br>Deprecated version: 9<br>New API: ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts|
|Deprecated version changed|Method or attribute name: write<br>Deprecated version: 9|Method or attribute name: write<br>Deprecated version: N/A<br>New API: ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts|
|Deprecated version changed|Method or attribute name: write<br>Deprecated version: 9|Method or attribute name: write<br>Deprecated version: N/A|@ohos.hiAppEvent.d.ts|
|Deprecated version changed|Method or attribute name: addRule<br>Deprecated version: N/A|Method or attribute name: addRule<br>Deprecated version: 9<br>New API: ohos.hichecker/hichecker|@ohos.hichecker.d.ts|
|Deprecated version changed|Method or attribute name: removeRule<br>Deprecated version: N/A|Method or attribute name: removeRule<br>Deprecated version: 9<br>New API: ohos.hichecker/hichecker|@ohos.hichecker.d.ts|
|Deprecated version changed|Method or attribute name: contains<br>Deprecated version: N/A|Method or attribute name: contains<br>Deprecated version: 9<br>New API: ohos.hichecker/hichecker|@ohos.hichecker.d.ts|
|Deprecated version changed|Method or attribute name: startProfiling<br>Deprecated version: N/A|Method or attribute name: startProfiling<br>Deprecated version: 9<br>New API: ohos.hidebug/hidebug.startJsCpuProfiling |@ohos.hidebug.d.ts|
|Deprecated version changed|Method or attribute name: stopProfiling<br>Deprecated version: N/A|Method or attribute name: stopProfiling<br>Deprecated version: 9<br>New API: ohos.hidebug/hidebug.stopJsCpuProfiling |@ohos.hidebug.d.ts|
|Deprecated version changed|Method or attribute name: dumpHeapData<br>Deprecated version: N/A|Method or attribute name: dumpHeapData<br>Deprecated version: 9<br>New API: ohos.hidebug/hidebug.dumpJsHeapData |@ohos.hidebug.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.data.distributedDataObject<br>Class name: distributedDataObject<br>Method or attribute name: create|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: setSessionId|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: setSessionId|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: setSessionId|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: on_change|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: off_change|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: on_status|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: off_status|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: save|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: save|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: revokeSave|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedDataObject<br>Class name: DistributedObjectV9<br>Method or attribute name: revokeSave|@ohos.data.distributedDataObject.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: distributedKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManagerConfig|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManagerConfig<br>Method or attribute name: bundleName|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManagerConfig<br>Method or attribute name: context|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_KEY_LENGTH|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_VALUE_LENGTH|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_KEY_LENGTH_DEVICE|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_STORE_ID_LENGTH|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_QUERY_LENGTH|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Constants<br>Method or attribute name: MAX_BATCH_SIZE|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: STRING|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: INTEGER|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: FLOAT|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: BYTE_ARRAY|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: BOOLEAN|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ValueType<br>Method or attribute name: DOUBLE|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Value|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Value<br>Method or attribute name: type|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Value<br>Method or attribute name: value|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Entry|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Entry<br>Method or attribute name: key|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Entry<br>Method or attribute name: value|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ChangeNotification|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ChangeNotification<br>Method or attribute name: insertEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ChangeNotification<br>Method or attribute name: updateEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ChangeNotification<br>Method or attribute name: deleteEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: ChangeNotification<br>Method or attribute name: deviceId|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SyncMode|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SyncMode<br>Method or attribute name: PULL_ONLY|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SyncMode<br>Method or attribute name: PUSH_ONLY|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SyncMode<br>Method or attribute name: PUSH_PULL|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SubscribeType|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SubscribeType<br>Method or attribute name: SUBSCRIBE_TYPE_LOCAL|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SubscribeType<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SubscribeType<br>Method or attribute name: SUBSCRIBE_TYPE_ALL|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreType|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreType<br>Method or attribute name: DEVICE_COLLABORATION|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreType<br>Method or attribute name: SINGLE_VERSION|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SecurityLevel|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SecurityLevel<br>Method or attribute name: S1|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SecurityLevel<br>Method or attribute name: S2|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SecurityLevel<br>Method or attribute name: S3|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SecurityLevel<br>Method or attribute name: S4|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: createIfMissing|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: encrypt|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: backup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: autoSync|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: kvStoreType|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: securityLevel|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Options<br>Method or attribute name: schema|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Schema|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Schema<br>Method or attribute name: root|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Schema<br>Method or attribute name: indexes|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Schema<br>Method or attribute name: mode|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Schema<br>Method or attribute name: skip|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode<br>Method or attribute name: ructor(name|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode<br>Method or attribute name: appendChild|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode<br>Method or attribute name: default|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode<br>Method or attribute name: nullable|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: FieldNode<br>Method or attribute name: type|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: getCount|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: getPosition|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: moveToFirst|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: moveToLast|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: moveToNext|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: moveToPrevious|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: move|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: moveToPosition|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: isFirst|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: isLast|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: isBeforeFirst|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: isAfterLast|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVStoreResultSet<br>Method or attribute name: getEntry|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: reset|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: equalTo|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: notEqualTo|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: greaterThan|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: lessThan|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: greaterThanOrEqualTo|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: lessThanOrEqualTo|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: isNull|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: inNumber|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: inString|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: notInNumber|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: notInString|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: like|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: unlike|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: and|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: or|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: orderByAsc|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: orderByDesc|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: limit|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: isNotNull|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: beginGroup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: endGroup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: prefixKey|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: setSuggestIndex|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: deviceId|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: Query<br>Method or attribute name: getSqlLike|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: put|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: put|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: putBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: putBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: putBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: putBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: delete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: delete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: delete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: delete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: deleteBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: deleteBatch|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: removeDeviceData|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: removeDeviceData|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: closeResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: closeResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: backup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: backup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: restore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: restore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: deleteBackup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: deleteBackup|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: startTransaction|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: startTransaction|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: commit|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: commit|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: rollback|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: rollback|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: enableSync|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: enableSync|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: setSyncRange|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: setSyncRange|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: setSyncParam|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: setSyncParam|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: sync|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: sync|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: on_dataChange|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: on_syncComplete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: off_dataChange|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: off_syncComplete|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getSecurityLevel|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: SingleKVStore<br>Method or attribute name: getSecurityLevel|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: get|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getEntries|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSet|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: DeviceKVStore<br>Method or attribute name: getResultSize|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: distributedKVStore<br>Method or attribute name: createKVManager|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: distributedKVStore<br>Method or attribute name: createKVManager|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: getKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: getKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: closeKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: closeKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: deleteKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: deleteKVStore|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: getAllKVStoreId|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: getAllKVStoreId|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: on_distributedDataServiceDie|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.distributedKVStore<br>Class name: KVManager<br>Method or attribute name: off_distributedDataServiceDie|@ohos.data.distributedKVStore.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: rdb<br>Method or attribute name: getRdbStoreV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: rdb<br>Method or attribute name: getRdbStoreV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: rdb<br>Method or attribute name: deleteRdbStoreV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: rdb<br>Method or attribute name: deleteRdbStoreV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: SecurityLevel|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: SecurityLevel<br>Method or attribute name: S1|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: SecurityLevel<br>Method or attribute name: S2|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: SecurityLevel<br>Method or attribute name: S3|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: SecurityLevel<br>Method or attribute name: S4|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: insert|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: insert|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: batchInsert|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: batchInsert|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: update|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: update|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: update|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: update|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: delete|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: delete|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: delete|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: delete|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: query|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: query|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: query|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: query|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: remoteQuery|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: remoteQuery|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: querySql|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: querySql|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: executeSql|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: executeSql|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: beginTransaction|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: commit|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: rollBack|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: backup|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: backup|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: restore|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: restore|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: setDistributedTables|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: setDistributedTables|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: obtainDistributedTableName|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: obtainDistributedTableName|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: sync|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: sync|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: on_dataChange|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbStoreV9<br>Method or attribute name: off_dataChange|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: StoreConfigV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: StoreConfigV9<br>Method or attribute name: name|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: StoreConfigV9<br>Method or attribute name: securityLevel|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: StoreConfigV9<br>Method or attribute name: encrypt|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: ructor(name|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: inDevices|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: inAllDevices|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: equalTo|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: notEqualTo|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: beginWrap|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: endWrap|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: or|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: and|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: contains|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: beginsWith|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: endsWith|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: isNull|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: isNotNull|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: like|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: glob|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: between|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: notBetween|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: greaterThan|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: lessThan|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: greaterThanOrEqualTo|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: lessThanOrEqualTo|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: orderByAsc|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: orderByDesc|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: distinct|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: limitAs|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: offsetAs|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: groupBy|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: indexedBy|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: in|@ohos.data.rdb.d.ts|
|Added||Module name: ohos.data.rdb<br>Class name: RdbPredicatesV9<br>Method or attribute name: notIn|@ohos.data.rdb.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: columnNames|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: columnCount|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: rowCount|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: rowIndex|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isAtFirstRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isAtLastRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isEnded|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isStarted|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isClosed|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getColumnIndex|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getColumnName|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goTo|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goToRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goToFirstRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goToLastRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goToNextRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: goToPreviousRow|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getBlob|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getString|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getLong|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: getDouble|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: isColumnNull|resultSet.d.ts|
|Added||Module name: resultSet<br>Class name: ResultSetV9<br>Method or attribute name: close|resultSet.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVManagerConfig<br>Method or attribute name: context||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: backup||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: backup||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: restore||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: restore||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: deleteBackup||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedData<br>Class name: KVStore<br>Method or attribute name: deleteBackup||@ohos.data.distributedData.d.ts|
|Deleted|Module name: ohos.data.distributedDataObject<br>Class name: DistributedObject<br>Method or attribute name: save||@ohos.data.distributedDataObject.d.ts|
|Deleted|Module name: ohos.data.distributedDataObject<br>Class name: DistributedObject<br>Method or attribute name: save||@ohos.data.distributedDataObject.d.ts|
|Deleted|Module name: ohos.data.distributedDataObject<br>Class name: DistributedObject<br>Method or attribute name: revokeSave||@ohos.data.distributedDataObject.d.ts|
|Deleted|Module name: ohos.data.distributedDataObject<br>Class name: DistributedObject<br>Method or attribute name: revokeSave||@ohos.data.distributedDataObject.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: remoteQuery||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: remoteQuery||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: backup||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: backup||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: restore||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: RdbStore<br>Method or attribute name: restore||@ohos.data.rdb.d.ts|
|Deleted|Module name: ohos.data.rdb<br>Class name: StoreConfig<br>Method or attribute name: encrypt||@ohos.data.rdb.d.ts|
|Model changed|Class name: dataShare<br>model:|Class name: dataShare<br>model: @Stage Model Only|@ohos.data.dataShare.d.ts|
|Access level changed |Class name: dataShare<br>Access level: public API|Class name: dataShare<br>Access level: system API|@ohos.data.dataShare.d.ts|
|Deprecated version changed|Class name: distributedData<br>Deprecated version: N/A|Class name: distributedData<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: KVManagerConfig<br>Deprecated version: N/A|Class name: KVManagerConfig<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManagerConfig |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: userInfo<br>Deprecated version: N/A|Method or attribute name: userInfo<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManagerConfig |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: bundleName<br>Deprecated version: N/A|Method or attribute name: bundleName<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManagerConfig|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: UserInfo<br>Deprecated version: N/A|Class name: UserInfo<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: userId<br>Deprecated version: N/A|Method or attribute name: userId<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: userType<br>Deprecated version: N/A|Method or attribute name: userType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: UserType<br>Deprecated version: N/A|Class name: UserType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: SAME_USER_ID<br>Deprecated version: N/A|Method or attribute name: SAME_USER_ID<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Constants<br>Deprecated version: N/A|Class name: Constants<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_KEY_LENGTH<br>Deprecated version: N/A|Method or attribute name: MAX_KEY_LENGTH<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_VALUE_LENGTH<br>Deprecated version: N/A|Method or attribute name: MAX_VALUE_LENGTH<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_KEY_LENGTH_DEVICE<br>Deprecated version: N/A|Method or attribute name: MAX_KEY_LENGTH_DEVICE<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_STORE_ID_LENGTH<br>Deprecated version: N/A|Method or attribute name: MAX_STORE_ID_LENGTH<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_QUERY_LENGTH<br>Deprecated version: N/A|Method or attribute name: MAX_QUERY_LENGTH<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MAX_BATCH_SIZE<br>Deprecated version: N/A|Method or attribute name: MAX_BATCH_SIZE<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: ValueType<br>Deprecated version: N/A|Class name: ValueType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: STRING<br>Deprecated version: N/A|Method or attribute name: STRING<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: INTEGER<br>Deprecated version: N/A|Method or attribute name: INTEGER<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: FLOAT<br>Deprecated version: N/A|Method or attribute name: FLOAT<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: BYTE_ARRAY<br>Deprecated version: N/A|Method or attribute name: BYTE_ARRAY<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: BOOLEAN<br>Deprecated version: N/A|Method or attribute name: BOOLEAN<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: DOUBLE<br>Deprecated version: N/A|Method or attribute name: DOUBLE<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Value<br>Deprecated version: N/A|Class name: Value<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Value |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: type<br>Deprecated version: N/A|Method or attribute name: type<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: value<br>Deprecated version: N/A|Method or attribute name: value<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Entry<br>Deprecated version: N/A|Class name: Entry<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Entry |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: key<br>Deprecated version: N/A|Method or attribute name: key<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: value<br>Deprecated version: N/A|Method or attribute name: value<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: ChangeNotification<br>Deprecated version: N/A|Class name: ChangeNotification<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ChangeNotification |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: insertEntries<br>Deprecated version: N/A|Method or attribute name: insertEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: updateEntries<br>Deprecated version: N/A|Method or attribute name: updateEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deleteEntries<br>Deprecated version: N/A|Method or attribute name: deleteEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deviceId<br>Deprecated version: N/A|Method or attribute name: deviceId<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: SyncMode<br>Deprecated version: N/A|Class name: SyncMode<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SyncMode |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: PULL_ONLY<br>Deprecated version: N/A|Method or attribute name: PULL_ONLY<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: PUSH_ONLY<br>Deprecated version: N/A|Method or attribute name: PUSH_ONLY<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: PUSH_PULL<br>Deprecated version: N/A|Method or attribute name: PUSH_PULL<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: SubscribeType<br>Deprecated version: N/A|Class name: SubscribeType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SubscribeType |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: SUBSCRIBE_TYPE_LOCAL<br>Deprecated version: N/A|Method or attribute name: SUBSCRIBE_TYPE_LOCAL<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: SUBSCRIBE_TYPE_REMOTE<br>Deprecated version: N/A|Method or attribute name: SUBSCRIBE_TYPE_REMOTE<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: SUBSCRIBE_TYPE_ALL<br>Deprecated version: N/A|Method or attribute name: SUBSCRIBE_TYPE_ALL<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: KVStoreType<br>Deprecated version: N/A|Class name: KVStoreType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreType |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: DEVICE_COLLABORATION<br>Deprecated version: N/A|Method or attribute name: DEVICE_COLLABORATION<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: SINGLE_VERSION<br>Deprecated version: N/A|Method or attribute name: SINGLE_VERSION<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: MULTI_VERSION<br>Deprecated version: N/A|Method or attribute name: MULTI_VERSION<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreType |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: SecurityLevel<br>Deprecated version: N/A|Class name: SecurityLevel<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: NO_LEVEL<br>Deprecated version: N/A|Method or attribute name: NO_LEVEL<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: S0<br>Deprecated version: N/A|Method or attribute name: S0<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: S1<br>Deprecated version: N/A|Method or attribute name: S1<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: S2<br>Deprecated version: N/A|Method or attribute name: S2<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: S3<br>Deprecated version: N/A|Method or attribute name: S3<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: S4<br>Deprecated version: N/A|Method or attribute name: S4<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Options<br>Deprecated version: N/A|Class name: Options<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: createIfMissing<br>Deprecated version: N/A|Method or attribute name: createIfMissing<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: encrypt<br>Deprecated version: N/A|Method or attribute name: encrypt<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: backup<br>Deprecated version: N/A|Method or attribute name: backup<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: autoSync<br>Deprecated version: N/A|Method or attribute name: autoSync<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: kvStoreType<br>Deprecated version: N/A|Method or attribute name: kvStoreType<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: securityLevel<br>Deprecated version: N/A|Method or attribute name: securityLevel<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: schema<br>Deprecated version: N/A|Method or attribute name: schema<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Schema<br>Deprecated version: N/A|Class name: Schema<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Schema |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: root<br>Deprecated version: N/A|Method or attribute name: root<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: indexes<br>Deprecated version: N/A|Method or attribute name: indexes<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: mode<br>Deprecated version: N/A|Method or attribute name: mode<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: skip<br>Deprecated version: N/A|Method or attribute name: skip<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: FieldNode<br>Deprecated version: N/A|Class name: FieldNode<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: ructor(name<br>Deprecated version: N/A|Method or attribute name: ructor(name<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: appendChild<br>Deprecated version: N/A|Method or attribute name: appendChild<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: default<br>Deprecated version: N/A|Method or attribute name: default<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: nullable<br>Deprecated version: N/A|Method or attribute name: nullable<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: type<br>Deprecated version: N/A|Method or attribute name: type<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: KvStoreResultSet<br>Deprecated version: N/A|Class name: KvStoreResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getCount<br>Deprecated version: N/A|Method or attribute name: getCount<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getPosition<br>Deprecated version: N/A|Method or attribute name: getPosition<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: moveToFirst<br>Deprecated version: N/A|Method or attribute name: moveToFirst<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: moveToLast<br>Deprecated version: N/A|Method or attribute name: moveToLast<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: moveToNext<br>Deprecated version: N/A|Method or attribute name: moveToNext<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: moveToPrevious<br>Deprecated version: N/A|Method or attribute name: moveToPrevious<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: move<br>Deprecated version: N/A|Method or attribute name: move<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: moveToPosition<br>Deprecated version: N/A|Method or attribute name: moveToPosition<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isFirst<br>Deprecated version: N/A|Method or attribute name: isFirst<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isLast<br>Deprecated version: N/A|Method or attribute name: isLast<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isBeforeFirst<br>Deprecated version: N/A|Method or attribute name: isBeforeFirst<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isAfterLast<br>Deprecated version: N/A|Method or attribute name: isAfterLast<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntry<br>Deprecated version: N/A|Method or attribute name: getEntry<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: Query<br>Deprecated version: N/A|Class name: Query<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: reset<br>Deprecated version: N/A|Method or attribute name: reset<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isNull<br>Deprecated version: N/A|Method or attribute name: isNull<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: inNumber<br>Deprecated version: N/A|Method or attribute name: inNumber<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: inString<br>Deprecated version: N/A|Method or attribute name: inString<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: notInNumber<br>Deprecated version: N/A|Method or attribute name: notInNumber<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: notInString<br>Deprecated version: N/A|Method or attribute name: notInString<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: like<br>Deprecated version: N/A|Method or attribute name: like<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: unlike<br>Deprecated version: N/A|Method or attribute name: unlike<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: and<br>Deprecated version: N/A|Method or attribute name: and<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: or<br>Deprecated version: N/A|Method or attribute name: or<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: orderByAsc<br>Deprecated version: N/A|Method or attribute name: orderByAsc<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: orderByDesc<br>Deprecated version: N/A|Method or attribute name: orderByDesc<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: limit<br>Deprecated version: N/A|Method or attribute name: limit<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: isNotNull<br>Deprecated version: N/A|Method or attribute name: isNotNull<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: beginGroup<br>Deprecated version: N/A|Method or attribute name: beginGroup<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: endGroup<br>Deprecated version: N/A|Method or attribute name: endGroup<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: prefixKey<br>Deprecated version: N/A|Method or attribute name: prefixKey<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: setSuggestIndex<br>Deprecated version: N/A|Method or attribute name: setSuggestIndex<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: KVStore<br>Deprecated version: N/A|Class name: KVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: put<br>Deprecated version: N/A|Method or attribute name: put<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: put<br>Deprecated version: N/A|Method or attribute name: put<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: delete<br>Deprecated version: N/A|Method or attribute name: delete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: delete<br>Deprecated version: N/A|Method or attribute name: delete<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_dataChange<br>Deprecated version: N/A|Method or attribute name: on_dataChange<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_syncComplete<br>Deprecated version: N/A|Method or attribute name: on_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: off_syncComplete<br>Deprecated version: N/A|Method or attribute name: off_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: putBatch<br>Deprecated version: N/A|Method or attribute name: putBatch<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: putBatch<br>Deprecated version: N/A|Method or attribute name: putBatch<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deleteBatch<br>Deprecated version: N/A|Method or attribute name: deleteBatch<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deleteBatch<br>Deprecated version: N/A|Method or attribute name: deleteBatch<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: startTransaction<br>Deprecated version: N/A|Method or attribute name: startTransaction<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: startTransaction<br>Deprecated version: N/A|Method or attribute name: startTransaction<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: commit<br>Deprecated version: N/A|Method or attribute name: commit<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: commit<br>Deprecated version: N/A|Method or attribute name: commit<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: rollback<br>Deprecated version: N/A|Method or attribute name: rollback<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: rollback<br>Deprecated version: N/A|Method or attribute name: rollback<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: enableSync<br>Deprecated version: N/A|Method or attribute name: enableSync<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: enableSync<br>Deprecated version: N/A|Method or attribute name: enableSync<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: setSyncRange<br>Deprecated version: N/A|Method or attribute name: setSyncRange<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: setSyncRange<br>Deprecated version: N/A|Method or attribute name: setSyncRange<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: SingleKVStore<br>Deprecated version: N/A|Class name: SingleKVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: get<br>Deprecated version: N/A|Method or attribute name: get<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: get<br>Deprecated version: N/A|Method or attribute name: get<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeResultSet<br>Deprecated version: N/A|Method or attribute name: closeResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeResultSet<br>Deprecated version: N/A|Method or attribute name: closeResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: removeDeviceData<br>Deprecated version: N/A|Method or attribute name: removeDeviceData<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: removeDeviceData<br>Deprecated version: N/A|Method or attribute name: removeDeviceData<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_dataChange<br>Deprecated version: N/A|Method or attribute name: on_dataChange<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_syncComplete<br>Deprecated version: N/A|Method or attribute name: on_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: off_syncComplete<br>Deprecated version: N/A|Method or attribute name: off_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: setSyncParam<br>Deprecated version: N/A|Method or attribute name: setSyncParam<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: setSyncParam<br>Deprecated version: N/A|Method or attribute name: setSyncParam<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getSecurityLevel<br>Deprecated version: N/A|Method or attribute name: getSecurityLevel<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getSecurityLevel<br>Deprecated version: N/A|Method or attribute name: getSecurityLevel<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: DeviceKVStore<br>Deprecated version: N/A|Class name: DeviceKVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getEntries<br>Deprecated version: N/A|Method or attribute name: getEntries<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSet<br>Deprecated version: N/A|Method or attribute name: getResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeResultSet<br>Deprecated version: N/A|Method or attribute name: closeResultSet<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeResultSet<br>Deprecated version: N/A|Method or attribute name: closeResultSet<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getResultSize<br>Deprecated version: N/A|Method or attribute name: getResultSize<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: removeDeviceData<br>Deprecated version: N/A|Method or attribute name: removeDeviceData<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: removeDeviceData<br>Deprecated version: N/A|Method or attribute name: removeDeviceData<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: sync<br>Deprecated version: N/A|Method or attribute name: sync<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_dataChange<br>Deprecated version: N/A|Method or attribute name: on_dataChange<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_syncComplete<br>Deprecated version: N/A|Method or attribute name: on_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: off_syncComplete<br>Deprecated version: N/A|Method or attribute name: off_syncComplete<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: createKVManager<br>Deprecated version: N/A|Method or attribute name: createKVManager<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: createKVManager<br>Deprecated version: N/A|Method or attribute name: createKVManager<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Class name: KVManager<br>Deprecated version: N/A|Class name: KVManager<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager |@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getKVStore<br>Deprecated version: N/A|Method or attribute name: getKVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getKVStore<br>Deprecated version: N/A|Method or attribute name: getKVStore<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeKVStore<br>Deprecated version: N/A|Method or attribute name: closeKVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: closeKVStore<br>Deprecated version: N/A|Method or attribute name: closeKVStore<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deleteKVStore<br>Deprecated version: N/A|Method or attribute name: deleteKVStore<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: deleteKVStore<br>Deprecated version: N/A|Method or attribute name: deleteKVStore<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getAllKVStoreId<br>Deprecated version: N/A|Method or attribute name: getAllKVStoreId<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: getAllKVStoreId<br>Deprecated version: N/A|Method or attribute name: getAllKVStoreId<br>Deprecated version: 9|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: on_distributedDataServiceDie<br>Deprecated version: N/A|Method or attribute name: on_distributedDataServiceDie<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: off_distributedDataServiceDie<br>Deprecated version: N/A|Method or attribute name: off_distributedDataServiceDie<br>Deprecated version: 9<br>New API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
|Deprecated version changed|Method or attribute name: createDistributedObject<br>Deprecated version: N/A|Method or attribute name: createDistributedObject<br>Deprecated version: 9<br>New API: ohos.distributedDataObject.create |@ohos.data.distributedDataObject.d.ts|
|Deprecated version changed|Class name: DistributedObject<br>Deprecated version: N/A|Class name: DistributedObject<br>Deprecated version: 9<br>New API: ohos.distributedDataObject.DistributedObjectV9 |@ohos.data.distributedDataObject.d.ts|
|Deprecated version changed|Method or attribute name: setSessionId<br>Deprecated version: N/A|Method or attribute name: setSessionId<br>Deprecated version: 9<br>New API: ohos.distributedDataObject.DistributedObjectV9.setSessionId |@ohos.data.distributedDataObject.d.ts|
|Deprecated version changed|Method or attribute name: on_change<br>Deprecated version: N/A|Method or attribute name: on_change<br>Deprecated version: 9<br>New API: ohos.distributedDataObject.DistributedObjectV9.on |@ohos.data.distributedDataObject.d.ts|
|Deprecated version changed|Method or attribute name: off_change<br>Deprecated version: N/A|Method or attribute name: off_change<br>Deprecated version: 9<br>New API: ohos.distributedDataObject.DistributedObjectV9.off |@ohos.data.distributedDataObject.d.ts|
|Deprecated version changed|Method or attribute name: getRdbStore<br>Deprecated version: N/A|Method or attribute name: getRdbStore<br>Deprecated version: 9<br>New API: ohos.data.rdb.getRdbStoreV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: getRdbStore<br>Deprecated version: N/A|Method or attribute name: getRdbStore<br>Deprecated version: 9<br>New API: ohos.data.rdb.getRdbStoreV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: deleteRdbStore<br>Deprecated version: N/A|Method or attribute name: deleteRdbStore<br>Deprecated version: 9<br>New API: ohos.data.rdb.deleteRdbStoreV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: deleteRdbStore<br>Deprecated version: N/A|Method or attribute name: deleteRdbStore<br>Deprecated version: 9<br>New API: ohos.data.rdb.deleteRdbStoreV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Class name: RdbStore<br>Deprecated version: N/A|Class name: RdbStore<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: insert<br>Deprecated version: N/A|Method or attribute name: insert<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.insert |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: insert<br>Deprecated version: N/A|Method or attribute name: insert<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.insert |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: batchInsert<br>Deprecated version: N/A|Method or attribute name: batchInsert<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.batchInsert |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: batchInsert<br>Deprecated version: N/A|Method or attribute name: batchInsert<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.batchInsert |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.update |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.update |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: delete<br>Deprecated version: N/A|Method or attribute name: delete<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.delete |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: delete<br>Deprecated version: N/A|Method or attribute name: delete<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.delete |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: query<br>Deprecated version: N/A|Method or attribute name: query<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.query |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: querySql<br>Deprecated version: N/A|Method or attribute name: querySql<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.querySql |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: executeSql<br>Deprecated version: N/A|Method or attribute name: executeSql<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.executeSql |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: setDistributedTables<br>Deprecated version: N/A|Method or attribute name: setDistributedTables<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.setDistributedTables |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: setDistributedTables<br>Deprecated version: N/A|Method or attribute name: setDistributedTables<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.setDistributedTables |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: obtainDistributedTableName<br>Deprecated version: N/A|Method or attribute name: obtainDistributedTableName<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.obtainDistributedTableName |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: obtainDistributedTableName<br>Deprecated version: N/A|Method or attribute name: obtainDistributedTableName<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.obtainDistributedTableName |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: on_dataChange<br>Deprecated version: N/A|Method or attribute name: on_dataChange<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbStoreV9.on |@ohos.data.rdb.d.ts|
|Deprecated version changed|Class name: StoreConfig<br>Deprecated version: N/A|Class name: StoreConfig<br>Deprecated version: 9<br>New API: ohos.data.rdb.StoreConfigV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Class name: RdbPredicates<br>Deprecated version: N/A|Class name: RdbPredicates<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9 |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: ructor(name<br>Deprecated version: N/A|Method or attribute name: ructor(name<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.constructor |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: inDevices<br>Deprecated version: N/A|Method or attribute name: inDevices<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.inDevices |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: inAllDevices<br>Deprecated version: N/A|Method or attribute name: inAllDevices<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.inAllDevices |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: equalTo<br>Deprecated version: N/A|Method or attribute name: equalTo<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.equalTo |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: notEqualTo<br>Deprecated version: N/A|Method or attribute name: notEqualTo<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.notEqualTo |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: beginWrap<br>Deprecated version: N/A|Method or attribute name: beginWrap<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.beginWrap |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: endWrap<br>Deprecated version: N/A|Method or attribute name: endWrap<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.endWrap |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: or<br>Deprecated version: N/A|Method or attribute name: or<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.or |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: and<br>Deprecated version: N/A|Method or attribute name: and<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.and |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: contains<br>Deprecated version: N/A|Method or attribute name: contains<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.contains |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: beginsWith<br>Deprecated version: N/A|Method or attribute name: beginsWith<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.beginsWith |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: endsWith<br>Deprecated version: N/A|Method or attribute name: endsWith<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.endsWith |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: isNull<br>Deprecated version: N/A|Method or attribute name: isNull<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.isNull |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: isNotNull<br>Deprecated version: N/A|Method or attribute name: isNotNull<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.isNotNull |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: like<br>Deprecated version: N/A|Method or attribute name: like<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.like |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: glob<br>Deprecated version: N/A|Method or attribute name: glob<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.glob |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: between<br>Deprecated version: N/A|Method or attribute name: between<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.between |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: notBetween<br>Deprecated version: N/A|Method or attribute name: notBetween<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.notBetween |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: greaterThan<br>Deprecated version: N/A|Method or attribute name: greaterThan<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.greaterThan |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: lessThan<br>Deprecated version: N/A|Method or attribute name: lessThan<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.lessThan |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: greaterThanOrEqualTo<br>Deprecated version: N/A|Method or attribute name: greaterThanOrEqualTo<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.greaterThanOrEqualTo |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: lessThanOrEqualTo<br>Deprecated version: N/A|Method or attribute name: lessThanOrEqualTo<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.lessThanOrEqualTo |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: orderByAsc<br>Deprecated version: N/A|Method or attribute name: orderByAsc<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.orderByAsc |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: orderByDesc<br>Deprecated version: N/A|Method or attribute name: orderByDesc<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.orderByDesc |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: distinct<br>Deprecated version: N/A|Method or attribute name: distinct<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.distinct |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: limitAs<br>Deprecated version: N/A|Method or attribute name: limitAs<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.limitAs |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: offsetAs<br>Deprecated version: N/A|Method or attribute name: offsetAs<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.offsetAs |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: groupBy<br>Deprecated version: N/A|Method or attribute name: groupBy<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.groupBy |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: indexedBy<br>Deprecated version: N/A|Method or attribute name: indexedBy<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.indexedBy |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: in<br>Deprecated version: N/A|Method or attribute name: in<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.in |@ohos.data.rdb.d.ts|
|Deprecated version changed|Method or attribute name: notIn<br>Deprecated version: N/A|Method or attribute name: notIn<br>Deprecated version: 9<br>New API: ohos.data.rdb.RdbPredicatesV9.notIn |@ohos.data.rdb.d.ts|
|Deprecated version changed|Class name: ResultSet<br>Deprecated version: N/A|Class name: ResultSet<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9 |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: columnNames<br>Deprecated version: N/A|Method or attribute name: columnNames<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.columnNames |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: columnCount<br>Deprecated version: N/A|Method or attribute name: columnCount<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.columnCount |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: rowCount<br>Deprecated version: N/A|Method or attribute name: rowCount<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.rowCount |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: rowIndex<br>Deprecated version: N/A|Method or attribute name: rowIndex<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.rowIndex |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isAtFirstRow<br>Deprecated version: N/A|Method or attribute name: isAtFirstRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isAtFirstRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isAtLastRow<br>Deprecated version: N/A|Method or attribute name: isAtLastRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isAtLastRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isEnded<br>Deprecated version: N/A|Method or attribute name: isEnded<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isEnded |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isStarted<br>Deprecated version: N/A|Method or attribute name: isStarted<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isStarted |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isClosed<br>Deprecated version: N/A|Method or attribute name: isClosed<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isClosed |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getColumnIndex<br>Deprecated version: N/A|Method or attribute name: getColumnIndex<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getColumnIndex |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getColumnName<br>Deprecated version: N/A|Method or attribute name: getColumnName<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getColumnName |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goTo<br>Deprecated version: N/A|Method or attribute name: goTo<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goTo |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goToRow<br>Deprecated version: N/A|Method or attribute name: goToRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goToRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goToFirstRow<br>Deprecated version: N/A|Method or attribute name: goToFirstRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goToFirstRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goToLastRow<br>Deprecated version: N/A|Method or attribute name: goToLastRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goToLastRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goToNextRow<br>Deprecated version: N/A|Method or attribute name: goToNextRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goToNextRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: goToPreviousRow<br>Deprecated version: N/A|Method or attribute name: goToPreviousRow<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.goToPreviousRow |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getBlob<br>Deprecated version: N/A|Method or attribute name: getBlob<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getBlob |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getString<br>Deprecated version: N/A|Method or attribute name: getString<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getString |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getLong<br>Deprecated version: N/A|Method or attribute name: getLong<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getLong |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: getDouble<br>Deprecated version: N/A|Method or attribute name: getDouble<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.getDouble |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: isColumnNull<br>Deprecated version: N/A|Method or attribute name: isColumnNull<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.isColumnNull |resultSet.d.ts|
|Deprecated version changed|Method or attribute name: close<br>Deprecated version: N/A|Method or attribute name: close<br>Deprecated version: 9<br>New API: ohos.data.rdb.ResultSetV9.close |resultSet.d.ts|
|Initial version changed|Class name: dataShare<br>Initial version: |Class name: dataShare<br>Initial version: 9|@ohos.data.dataShare.d.ts|
|Initial version changed|Method or attribute name: off_syncComplete<br>Initial version: 9|Method or attribute name: off_syncComplete<br>Initial version: 8|@ohos.data.distributedData.d.ts|
|Initial version changed|Method or attribute name: on_dataChange<br>Initial version: 9|Method or attribute name: on_dataChange<br>Initial version: 8|@ohos.data.distributedData.d.ts|
|Initial version changed|Method or attribute name: on_dataChange<br>Initial version: 9|Method or attribute name: on_dataChange<br>Initial version: 8|@ohos.data.distributedData.d.ts|
|Initial version changed|Method or attribute name: batchInsert<br>Initial version: 9|Method or attribute name: batchInsert<br>Initial version: 7|@ohos.data.rdb.d.ts|
|Initial version changed|Method or attribute name: batchInsert<br>Initial version: 9|Method or attribute name: batchInsert<br>Initial version: 7|@ohos.data.rdb.d.ts|
|Initial version changed|Method or attribute name: executeSql<br>Initial version: 7|Method or attribute name: executeSql<br>Initial version: 8|@ohos.data.rdb.d.ts|
|Permission deleted|Method or attribute name: on_dataChange<br>Permission: ohos.permission.DISTRIBUTED_DATASYNC|Method or attribute name: on_dataChange<br>Permission: N/A|@ohos.data.rdb.d.ts|
|Access level changed |Class name: dataShare<br>Access level: public API|Class name: dataShare<br>Access level: system API|@ohos.data.dataShare.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.distributedHardware.deviceManager<br>Class name: DeviceManager<br>Method or attribute name: setUserOperation|@ohos.distributedHardware.deviceManager.d.ts|
|Added||Module name: ohos.distributedHardware.deviceManager<br>Class name: DeviceManager<br>Method or attribute name: on_uiStateChange|@ohos.distributedHardware.deviceManager.d.ts|
|Added||Module name: ohos.distributedHardware.deviceManager<br>Class name: DeviceManager<br>Method or attribute name: off_uiStateChange|@ohos.distributedHardware.deviceManager.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.file.fs<br>Class name: fileIo|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: READ_ONLY|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: WRITE_ONLY|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: READ_WRITE|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: CREATE|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: TRUNC|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: APPEND|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: NONBLOCK|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: DIR|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: NOFOLLOW|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: OpenMode<br>Method or attribute name: SYNC|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: open|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: open|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: open|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: openSync|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: read|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: read|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: read|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: readSync|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: stat|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: stat|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: statSync|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: truncate|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: truncate|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: truncate|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: truncateSync|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: write|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: write|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: write|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: fileIo<br>Method or attribute name: writeSync|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: File|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: File<br>Method or attribute name: fd|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: ino|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: mode|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: uid|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: gid|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: size|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: atime|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: mtime|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: ctime|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isBlockDevice|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isCharacterDevice|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isDirectory|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isFIFO|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isFile|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isSocket|@ohos.file.fs.d.ts|
|Added||Module name: ohos.file.fs<br>Class name: Stat<br>Method or attribute name: isSymbolicLink|@ohos.file.fs.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: userFileManager|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: userFileManager<br>Method or attribute name: getUserFileMgr|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileType|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileType<br>Method or attribute name: IMAGE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileType<br>Method or attribute name: VIDEO|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileType<br>Method or attribute name: AUDIO|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: uri|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: fileType|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: displayName|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: get|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: set|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: commitModify|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: commitModify|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: open|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: open|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: close|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: close|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: favorite|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FileAsset<br>Method or attribute name: favorite|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: URI|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: TITLE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: ARTIST|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: AUDIOALBUM|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: DURATION|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AudioKey<br>Method or attribute name: FAVORITE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: URI|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: TITLE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: DURATION|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: WIDTH|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: HEIGHT|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_TAKEN|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: ORIENTATION|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: ImageVideoKey<br>Method or attribute name: FAVORITE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey<br>Method or attribute name: URI|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey<br>Method or attribute name: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey<br>Method or attribute name: ALBUM_NAME|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey<br>Method or attribute name: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumKey<br>Method or attribute name: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchOptions|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchOptions<br>Method or attribute name: fetchColumns|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchOptions<br>Method or attribute name: predicates|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumFetchOptions|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AlbumFetchOptions<br>Method or attribute name: predicates|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getCount|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: isAfterLast|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: close|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getFirstObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getFirstObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getNextObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getNextObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getLastObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getLastObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getPositionObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: FetchResult<br>Method or attribute name: getPositionObject|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: albumName|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: albumUri|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: dateModified|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: count|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: coverUri|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: AbsAlbum<br>Method or attribute name: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: Album|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: Album<br>Method or attribute name: commitModify|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: Album<br>Method or attribute name: commitModify|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPhotoAlbums|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPhotoAlbums|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPrivateAlbum|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getPrivateAlbum|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getAudioAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getAudioAssets|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: delete|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: delete|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_deviceChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_albumChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_imageChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_audioChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_videoChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: on_remoteFileChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_deviceChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_albumChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_imageChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_audioChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_videoChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: off_remoteFileChange|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getActivePeers|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getActivePeers|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getAllPeers|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: getAllPeers|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: release|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: UserFileManager<br>Method or attribute name: release|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PeerInfo|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PeerInfo<br>Method or attribute name: deviceName|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PeerInfo<br>Method or attribute name: networkId|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PeerInfo<br>Method or attribute name: isOnline|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbumType|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbumType<br>Method or attribute name: TYPE_FAVORITE|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbumType<br>Method or attribute name: TYPE_TRASH|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbum|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbum<br>Method or attribute name: delete|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbum<br>Method or attribute name: delete|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbum<br>Method or attribute name: recover|@ohos.filemanagement.userFileManager.d.ts|
|Added||Module name: ohos.filemanagement.userFileManager<br>Class name: PrivateAlbum<br>Method or attribute name: recover|@ohos.filemanagement.userFileManager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: userfile_manager||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: userfile_manager<br>Method or attribute name: getUserFileMgr||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: userfile_manager<br>Method or attribute name: getUserFileMgr||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaType||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaType<br>Method or attribute name: FILE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaType<br>Method or attribute name: IMAGE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaType<br>Method or attribute name: VIDEO||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaType<br>Method or attribute name: AUDIO||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: uri||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: mediaType||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: displayName||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isDirectory||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isDirectory||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: commitModify||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: commitModify||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: open||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: open||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: close||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: close||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: favorite||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: favorite||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isFavorite||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isFavorite||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: trash||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: trash||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isTrash||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileAsset<br>Method or attribute name: isTrash||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: URI||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FileKey<br>Method or attribute name: TITLE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: URI||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: TITLE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: ARTIST||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: AUDIOALBUM||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AudioKey<br>Method or attribute name: DURATION||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: URI||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: TITLE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: DURATION||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: WIDTH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: HEIGHT||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: ImageVideoKey<br>Method or attribute name: DATE_TAKEN||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey<br>Method or attribute name: URI||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey<br>Method or attribute name: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey<br>Method or attribute name: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey<br>Method or attribute name: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: AlbumKey<br>Method or attribute name: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaFetchOptions||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaFetchOptions<br>Method or attribute name: selections||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: MediaFetchOptions<br>Method or attribute name: selectionArgs||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getCount||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: isAfterLast||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: close||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getFirstObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getFirstObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getNextObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getNextObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getLastObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getLastObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getPositionObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: FetchFileResult<br>Method or attribute name: getPositionObject||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: albumName||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: albumUri||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: dateModified||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: count||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: relativePath||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: coverUri||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: commitModify||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: commitModify||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Album<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_CAMERA||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_VIDEO||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_IMAGE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_AUDIO||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_DOCUMENTS||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: DirectoryType<br>Method or attribute name: DIR_DOWNLOAD||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getPublicDirectory||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getPublicDirectory||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_deviceChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_albumChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_imageChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_audioChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_videoChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_fileChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: on_remoteFileChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_deviceChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_albumChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_imageChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_audioChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_videoChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_fileChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: off_remoteFileChange||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: createAsset||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: createAsset||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: deleteAsset||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: deleteAsset||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getAlbums||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getAlbums||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getPrivateAlbum||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getPrivateAlbum||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getActivePeers||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getActivePeers||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getAllPeers||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: getAllPeers||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: release||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: UserFileManager<br>Method or attribute name: release||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Size||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Size<br>Method or attribute name: width||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: Size<br>Method or attribute name: height||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: PeerInfo||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: PeerInfo<br>Method or attribute name: deviceName||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: PeerInfo<br>Method or attribute name: networkId||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: PeerInfo<br>Method or attribute name: isOnline||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbumType||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbumType<br>Method or attribute name: TYPE_FAVORITE||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbumType<br>Method or attribute name: TYPE_TRASH||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbum||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbum<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.filemanagement.userfile_manager<br>Class name: VirtualAlbum<br>Method or attribute name: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: listFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: listFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: listFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: getRoot||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: getRoot||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: getRoot||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: createFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: createFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: filemanager<br>Method or attribute name: createFile||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: name||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: path||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: type||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: size||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: addedTime||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: FileInfo<br>Method or attribute name: modifiedTime||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: DevInfo||@ohos.fileManager.d.ts|
|Deleted||Module name: ohos.fileManager<br>Class name: DevInfo<br>Method or attribute name: name||@ohos.fileManager.d.ts|
|Deprecated version changed|Method or attribute name: ftruncate<br>Deprecated version: N/A|Method or attribute name: ftruncate<br>Deprecated version: 9<br>New API: ohos.file.fs.truncate |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: ftruncate<br>Deprecated version: N/A|Method or attribute name: ftruncate<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: ftruncate<br>Deprecated version: N/A|Method or attribute name: ftruncate<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: ftruncateSync<br>Deprecated version: N/A|Method or attribute name: ftruncateSync<br>Deprecated version: 9<br>New API: ohos.file.fs.truncateSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: fstat<br>Deprecated version: N/A|Method or attribute name: fstat<br>Deprecated version: 9<br>New API: ohos.file.fs.stat |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: fstat<br>Deprecated version: N/A|Method or attribute name: fstat<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: fstatSync<br>Deprecated version: N/A|Method or attribute name: fstatSync<br>Deprecated version: 9<br>New API: ohos.file.fs.statSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: N/A|Method or attribute name: open<br>Deprecated version: 9<br>New API: ohos.file.fs.open |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: N/A|Method or attribute name: open<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: N/A|Method or attribute name: open<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: N/A|Method or attribute name: open<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: openSync<br>Deprecated version: N/A|Method or attribute name: openSync<br>Deprecated version: 9<br>New API: ohos.file.fs.openSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: read<br>Deprecated version: N/A|Method or attribute name: read<br>Deprecated version: 9<br>New API: ohos.file.fs.read |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: read<br>Deprecated version: N/A|Method or attribute name: read<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: read<br>Deprecated version: N/A|Method or attribute name: read<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: readSync<br>Deprecated version: N/A|Method or attribute name: readSync<br>Deprecated version: 9<br>New API: ohos.file.fs.readSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: stat<br>Deprecated version: N/A|Method or attribute name: stat<br>Deprecated version: 9<br>New API: ohos.file.fs.stat |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: stat<br>Deprecated version: N/A|Method or attribute name: stat<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: statSync<br>Deprecated version: N/A|Method or attribute name: statSync<br>Deprecated version: 9<br>New API: ohos.file.fs.statSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: truncate<br>Deprecated version: N/A|Method or attribute name: truncate<br>Deprecated version: 9<br>New API: ohos.file.fs.truncate |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: truncate<br>Deprecated version: N/A|Method or attribute name: truncate<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: truncate<br>Deprecated version: N/A|Method or attribute name: truncate<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: truncateSync<br>Deprecated version: N/A|Method or attribute name: truncateSync<br>Deprecated version: 9<br>New API: ohos.file.fs.truncateSync |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: write<br>Deprecated version: N/A|Method or attribute name: write<br>Deprecated version: 9<br>New API: ohos.file.fs.write |@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: write<br>Deprecated version: N/A|Method or attribute name: write<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: write<br>Deprecated version: N/A|Method or attribute name: write<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Deprecated version changed|Method or attribute name: writeSync<br>Deprecated version: N/A|Method or attribute name: writeSync<br>Deprecated version: 9<br>New API: ohos.file.fs.writeSync |@ohos.fileio.d.ts|
|Deprecated version changed|Class name: Stat<br>Deprecated version: N/A|Class name: Stat<br>Deprecated version: 9<br>New API: ohos.file.fs.Stat |@ohos.fileio.d.ts|
|Deprecated version changed|Class name: ReadOut<br>Deprecated version: N/A|Class name: ReadOut<br>Deprecated version: 9|@ohos.fileio.d.ts|
|Permission changed|Method or attribute name: getFileAccessAbilityInfo<br>Permission: ohos.permission.FILE_ACCESS_MANAGER|Method or attribute name: getFileAccessAbilityInfo<br>Permission: ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts|
|Permission changed|Method or attribute name: getFileAccessAbilityInfo<br>Permission: ohos.permission.FILE_ACCESS_MANAGER|Method or attribute name: getFileAccessAbilityInfo<br>Permission: ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts|
|Permission changed|Method or attribute name: createFileAccessHelper<br>Permission: ohos.permission.FILE_ACCESS_MANAGER|Method or attribute name: createFileAccessHelper<br>Permission: ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts|
|Permission changed|Method or attribute name: createFileAccessHelper<br>Permission: ohos.permission.FILE_ACCESS_MANAGER|Method or attribute name: createFileAccessHelper<br>Permission: ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: on_countryCodeChange|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: off_countryCodeChange|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableLocation|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableLocation|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableLocation|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableLocation|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: getCountryCode|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: getCountryCode|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableLocationMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableLocationMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableLocationMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableLocationMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setMockedLocations|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setMockedLocations|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableReverseGeocodingMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: enableReverseGeocodingMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableReverseGeocodingMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: disableReverseGeocodingMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: isLocationPrivacyConfirmed|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: isLocationPrivacyConfirmed|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setLocationPrivacyConfirmStatus|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: geoLocationManager<br>Method or attribute name: setLocationPrivacyConfirmStatus|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeocodingMockInfo<br>Method or attribute name: location|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeocodingMockInfo<br>Method or attribute name: geoAddress|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationMockConfig|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationMockConfig<br>Method or attribute name: timeInterval|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationMockConfig<br>Method or attribute name: locations|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: satellitesNumber|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: satelliteIds|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: carrierToNoiseDensitys|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: altitudes|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: azimuths|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: SatelliteStatusInfo<br>Method or attribute name: carrierFrequencies|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CachedGnssLocationsRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CachedGnssLocationsRequest<br>Method or attribute name: reportingPeriodSec|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CachedGnssLocationsRequest<br>Method or attribute name: wakeUpCacheQueueFull|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeofenceRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeofenceRequest<br>Method or attribute name: priority|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeofenceRequest<br>Method or attribute name: scenario|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeofenceRequest<br>Method or attribute name: geofence|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Geofence|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Geofence<br>Method or attribute name: latitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Geofence<br>Method or attribute name: longitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Geofence<br>Method or attribute name: radius|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Geofence<br>Method or attribute name: expiration|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeoCodeRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeoCodeRequest<br>Method or attribute name: locale|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeoCodeRequest<br>Method or attribute name: latitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeoCodeRequest<br>Method or attribute name: longitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: ReverseGeoCodeRequest<br>Method or attribute name: maxItems|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: locale|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: description|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: maxItems|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: minLatitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: minLongitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: maxLatitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoCodeRequest<br>Method or attribute name: maxLongitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: latitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: longitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: locale|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: placeName|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: countryCode|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: countryName|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: administrativeArea|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: subAdministrativeArea|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: locality|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: subLocality|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: roadName|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: subRoadName|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: premises|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: postalCode|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: phoneNumber|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: addressUrl|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: descriptions|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: descriptionsSize|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: GeoAddress<br>Method or attribute name: isFromMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest<br>Method or attribute name: priority|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest<br>Method or attribute name: scenario|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest<br>Method or attribute name: timeInterval|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest<br>Method or attribute name: distanceInterval|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequest<br>Method or attribute name: maxAccuracy|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CurrentLocationRequest|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CurrentLocationRequest<br>Method or attribute name: priority|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CurrentLocationRequest<br>Method or attribute name: scenario|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CurrentLocationRequest<br>Method or attribute name: maxAccuracy|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CurrentLocationRequest<br>Method or attribute name: timeoutMs|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: latitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: longitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: altitude|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: accuracy|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: speed|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: timeStamp|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: direction|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: timeSinceBoot|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: additions|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: additionSize|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: Location<br>Method or attribute name: isFromMock|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestPriority|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestPriority<br>Method or attribute name: UNSET|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestPriority<br>Method or attribute name: ACCURACY|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestPriority<br>Method or attribute name: LOW_POWER|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestPriority<br>Method or attribute name: FIRST_FIX|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: UNSET|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: NAVIGATION|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: TRAJECTORY_TRACKING|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: CAR_HAILING|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: DAILY_LIFE_SERVICE|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationRequestScenario<br>Method or attribute name: NO_POWER|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationPrivacyType|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationPrivacyType<br>Method or attribute name: OTHERS|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationPrivacyType<br>Method or attribute name: STARTUP|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationPrivacyType<br>Method or attribute name: CORE_LOCATION|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationCommand|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationCommand<br>Method or attribute name: scenario|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: LocationCommand<br>Method or attribute name: command|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCode|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCode<br>Method or attribute name: country|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCode<br>Method or attribute name: type|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCodeType|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_LOCALE|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_SIM|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_LOCATION|@ohos.geoLocationManager.d.ts|
|Added||Module name: ohos.geoLocationManager<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_NETWORK|@ohos.geoLocationManager.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: on_countryCodeChange||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: off_countryCodeChange||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: getCountryCode||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: getCountryCode||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: enableLocationMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: enableLocationMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: disableLocationMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: disableLocationMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setMockedLocations||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setMockedLocations||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: enableReverseGeocodingMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: enableReverseGeocodingMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: disableReverseGeocodingMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: disableReverseGeocodingMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setReverseGeocodingMockInfo||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setReverseGeocodingMockInfo||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: ReverseGeocodingMockInfo||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: ReverseGeocodingMockInfo<br>Method or attribute name: location||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: ReverseGeocodingMockInfo<br>Method or attribute name: geoAddress||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: LocationMockConfig||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: LocationMockConfig<br>Method or attribute name: timeInterval||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: LocationMockConfig<br>Method or attribute name: locations||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: isLocationPrivacyConfirmed||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: isLocationPrivacyConfirmed||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setLocationPrivacyConfirmStatus||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: geolocation<br>Method or attribute name: setLocationPrivacyConfirmStatus||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: GeoAddress<br>Method or attribute name: isFromMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: Location<br>Method or attribute name: isFromMock||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: GeoLocationErrorCode<br>Method or attribute name: NOT_SUPPORTED||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: GeoLocationErrorCode<br>Method or attribute name: QUERY_COUNTRY_CODE_ERROR||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCode||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCode<br>Method or attribute name: country||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCode<br>Method or attribute name: type||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCodeType||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_LOCALE||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_SIM||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_LOCATION||@ohos.geolocation.d.ts|
|Deleted||Module name: ohos.geolocation<br>Class name: CountryCodeType<br>Method or attribute name: COUNTRY_CODE_FROM_NETWORK||@ohos.geolocation.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.i18n<br>Class name: System|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getDisplayCountry|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getDisplayLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getSystemLanguages|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getSystemCountries|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: isSuggested|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getSystemLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: setSystemLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getSystemRegion|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: setSystemRegion|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getSystemLocale|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: setSystemLocale|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: is24HourClock|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: set24HourClock|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: addPreferredLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: removePreferredLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getPreferredLanguageList|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getFirstPreferredLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getAppPreferredLanguage|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: setUsingLocalDigit|@ohos.i18n.d.ts|
|Added||Module name: ohos.i18n<br>Class name: System<br>Method or attribute name: getUsingLocalDigit|@ohos.i18n.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringArrayValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringArrayValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContentBase64|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContentBase64|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getPluralStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getPluralStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringArrayValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getStringArrayValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getPluralStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getPluralStringValue|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContentBase64|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getMediaContentBase64|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getRawFileContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getRawFileContent|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getRawFd|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: getRawFd|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: closeRawFd|@ohos.resourceManager.d.ts|
|Added||Module name: ohos.resourceManager<br>Class name: ResourceManager<br>Method or attribute name: closeRawFd|@ohos.resourceManager.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: getSystemLanguages||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: getSystemCountries||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: isSuggested||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: setSystemLanguage||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: setSystemRegion||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: setSystemLocale||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: getAppPreferredLanguage||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: setUsingLocalDigit||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.i18n<br>Class name: i18n<br>Method or attribute name: getUsingLocalDigit||@ohos.i18n.d.ts|
|Deleted||Module name: ohos.resourceManager<br>Class name: AsyncCallback||@ohos.resourceManager.d.ts|
|Deleted||Module name: ohos.resourceManager<br>Class name: AsyncCallback<br>Method or attribute name: AsyncCallback||@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getDisplayCountry<br>Deprecated version: N/A|Method or attribute name: getDisplayCountry<br>Deprecated version: 9<br>New API: ohos.System.getDisplayCountry |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getDisplayLanguage<br>Deprecated version: N/A|Method or attribute name: getDisplayLanguage<br>Deprecated version: 9<br>New API: ohos.System.getDisplayLanguage |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getSystemLanguage<br>Deprecated version: N/A|Method or attribute name: getSystemLanguage<br>Deprecated version: 9<br>New API: ohos.System.getSystemLanguage |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getSystemRegion<br>Deprecated version: N/A|Method or attribute name: getSystemRegion<br>Deprecated version: 9<br>New API: ohos.System.getSystemRegion |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getSystemLocale<br>Deprecated version: N/A|Method or attribute name: getSystemLocale<br>Deprecated version: 9<br>New API: ohos.System.getSystemLocale |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: is24HourClock<br>Deprecated version: N/A|Method or attribute name: is24HourClock<br>Deprecated version: 9<br>New API: ohos.System.is24HourClock |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: set24HourClock<br>Deprecated version: N/A|Method or attribute name: set24HourClock<br>Deprecated version: 9<br>New API: ohos.System.set24HourClock |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: addPreferredLanguage<br>Deprecated version: N/A|Method or attribute name: addPreferredLanguage<br>Deprecated version: 9<br>New API: ohos.System.addPreferredLanguage |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: removePreferredLanguage<br>Deprecated version: N/A|Method or attribute name: removePreferredLanguage<br>Deprecated version: 9<br>New API: ohos.System.removePreferredLanguage |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getPreferredLanguageList<br>Deprecated version: N/A|Method or attribute name: getPreferredLanguageList<br>Deprecated version: 9<br>New API: ohos.System.getPreferredLanguageList |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getFirstPreferredLanguage<br>Deprecated version: N/A|Method or attribute name: getFirstPreferredLanguage<br>Deprecated version: 9<br>New API: ohos.System.getFirstPreferredLanguage |@ohos.i18n.d.ts|
|Deprecated version changed|Method or attribute name: getString<br>Deprecated version: N/A|Method or attribute name: getString<br>Deprecated version: 9<br>New API: ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getString<br>Deprecated version: N/A|Method or attribute name: getString<br>Deprecated version: 9<br>New API: ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getStringArray<br>Deprecated version: N/A|Method or attribute name: getStringArray<br>Deprecated version: 9<br>New API: ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getStringArray<br>Deprecated version: N/A|Method or attribute name: getStringArray<br>Deprecated version: 9<br>New API: ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getMedia<br>Deprecated version: N/A|Method or attribute name: getMedia<br>Deprecated version: 9<br>New API: ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getMedia<br>Deprecated version: N/A|Method or attribute name: getMedia<br>Deprecated version: 9<br>New API: ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getMediaBase64<br>Deprecated version: N/A|Method or attribute name: getMediaBase64<br>Deprecated version: 9<br>New API: ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getMediaBase64<br>Deprecated version: N/A|Method or attribute name: getMediaBase64<br>Deprecated version: 9<br>New API: ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getPluralString<br>Deprecated version: N/A|Method or attribute name: getPluralString<br>Deprecated version: 9<br>New API: ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getPluralString<br>Deprecated version: N/A|Method or attribute name: getPluralString<br>Deprecated version: 9<br>New API: ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getRawFile<br>Deprecated version: N/A|Method or attribute name: getRawFile<br>Deprecated version: 9<br>New API: ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getRawFile<br>Deprecated version: N/A|Method or attribute name: getRawFile<br>Deprecated version: 9<br>New API: ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getRawFileDescriptor<br>Deprecated version: N/A|Method or attribute name: getRawFileDescriptor<br>Deprecated version: 9<br>New API: ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: getRawFileDescriptor<br>Deprecated version: N/A|Method or attribute name: getRawFileDescriptor<br>Deprecated version: 9<br>New API: ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: closeRawFileDescriptor<br>Deprecated version: N/A|Method or attribute name: closeRawFileDescriptor<br>Deprecated version: 9<br>New API: ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts|
|Deprecated version changed|Method or attribute name: closeRawFileDescriptor<br>Deprecated version: N/A|Method or attribute name: closeRawFileDescriptor<br>Deprecated version: 9<br>New API: ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringArrayByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringArrayByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getMediaByName<br>Error code: 401, 9001003, 9001004|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getMediaByName<br>Error code: 401, 9001003, 9001004|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getMediaBase64ByName<br>Error code: 401, 9001003, 9001004|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getMediaBase64ByName<br>Error code: 401, 9001003, 9001004|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getPluralStringByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getPluralStringByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringSync<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringSync<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getStringByNameSync<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getBoolean<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getBoolean<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getBooleanByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getNumber<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getNumber<br>Error code: 401, 9001001, 9001002, 9001006|@ohos.resourceManager.d.ts|
|Error code added||Method or attribute name: getNumberByName<br>Error code: 401, 9001003, 9001004, 9001006|@ohos.resourceManager.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: getSetting|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: getController|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: switchCurrentInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: switchCurrentInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: getCurrentInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: switchCurrentInputMethodAndSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: inputMethod<br>Method or attribute name: switchCurrentInputMethodAndSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: on_imeChange|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: off_imeChange|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: listInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: listInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: listCurrentInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: listCurrentInputMethodSubtype|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: getInputMethods|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: getInputMethods|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: showOptionalInputMethods|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodSetting<br>Method or attribute name: showOptionalInputMethods|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodController<br>Method or attribute name: stopInputSession|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodController<br>Method or attribute name: stopInputSession|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: name|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: id|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: label|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: icon|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: iconId|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethod<br>Class name: InputMethodProperty<br>Method or attribute name: extra|@ohos.inputmethod.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: inputMethodEngine<br>Method or attribute name: getInputMethodAbility|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: inputMethodEngine<br>Method or attribute name: getKeyboardDelegate|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: KeyboardController<br>Method or attribute name: hide|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: KeyboardController<br>Method or attribute name: hide|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_inputStart|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_inputStart|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_inputStop|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_inputStop|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_setCallingWindow|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_setCallingWindow|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_keyboardShow|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_keyboardHide|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_keyboardShow|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_keyboardHide|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: on_setSubtype|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputMethodAbility<br>Method or attribute name: off_setSubtype|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: sendKeyFunction|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: sendKeyFunction|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: deleteForward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: deleteForward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: deleteBackward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: deleteBackward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: insertText|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: insertText|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getForward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getForward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getBackward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getBackward|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getEditorAttribute|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: getEditorAttribute|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: moveCursor|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodengine<br>Class name: InputClient<br>Method or attribute name: moveCursor|@ohos.inputmethodengine.d.ts|
|Added||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: destroy|@ohos.inputmethodextensioncontext.d.ts|
|Added||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: destroy|@ohos.inputmethodextensioncontext.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: label|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: name|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: id|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: mode|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: locale|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: language|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: icon|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: iconId|@ohos.inputMethodSubtype.d.ts|
|Added||Module name: ohos.inputMethodSubtype<br>Class name: InputMethodSubtype<br>Method or attribute name: extra|@ohos.inputMethodSubtype.d.ts|
|Add||Method or attribute name: createData<br>Function name: function createData(mimeType: string, value: ValueType): PasteData;|@ohos.pasteboard.d.ts|
|Add||Method or attribute name: createRecord<br>Function name: function createRecord(mimeType: string, value: ValueType): PasteDataRecord;|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteDataRecord<br>Method or attribute name: convertToTextV9|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteDataRecord<br>Method or attribute name: convertToTextV9|@ohos.pasteboard.d.ts|
|Add||Method or attribute name: addRecord<br>Function name: addRecord(mimeType: string, value: ValueType): void;|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteData<br>Method or attribute name: getRecord|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteData<br>Method or attribute name: hasType|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteData<br>Method or attribute name: removeRecord|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: PasteData<br>Method or attribute name: replaceRecord|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: clearData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: clearData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: getData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: getData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: hasData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: hasData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: setData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.pasteboard<br>Class name: SystemPasteboard<br>Method or attribute name: setData|@ohos.pasteboard.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_PERMISSION|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_PARAMCHECK|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_UNSUPPORTED|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_FILEIO|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_FILEPATH|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_SERVICE|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: EXCEPTION_OTHERS|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: ERROR_OFFLINE|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: ERROR_UNSUPPORTED_NETWORK_TYPE|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: downloadFile|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: downloadFile|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: uploadFile|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: request<br>Method or attribute name: uploadFile|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: delete|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: delete|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: suspend|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: suspend|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: restore|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: restore|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: getTaskInfo|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: getTaskInfo|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: getTaskMimeType|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: DownloadTask<br>Method or attribute name: getTaskMimeType|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: UploadTask<br>Method or attribute name: delete|@ohos.request.d.ts|
|Added||Module name: ohos.request<br>Class name: UploadTask<br>Method or attribute name: delete|@ohos.request.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: isLocked|@ohos.screenLock.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: isSecure|@ohos.screenLock.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: unlock|@ohos.screenLock.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: unlock|@ohos.screenLock.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: lock|@ohos.screenLock.d.ts|
|Added||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: lock|@ohos.screenLock.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getColorsSync|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getIdSync|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getFileSync|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getMinHeightSync|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getMinWidthSync|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: isChangeAllowed|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: isUserChangeAllowed|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: restore|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: restore|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: setImage|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: setImage|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getImage|@ohos.wallpaper.d.ts|
|Added||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: getImage|@ohos.wallpaper.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: InputMethodEngine<br>Method or attribute name: on_inputStop||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: InputMethodEngine<br>Method or attribute name: off_inputStop||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: InputMethodEngine<br>Method or attribute name: on_setCallingWindow||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: InputMethodEngine<br>Method or attribute name: off_setCallingWindow||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: TextInputClient<br>Method or attribute name: moveCursor||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodengine<br>Class name: TextInputClient<br>Method or attribute name: moveCursor||@ohos.inputmethodengine.d.ts|
|Deleted||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: startAbility||@ohos.inputmethodextensioncontext.d.ts|
|Deleted||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: startAbility||@ohos.inputmethodextensioncontext.d.ts|
|Deleted||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: startAbility||@ohos.inputmethodextensioncontext.d.ts|
|Deleted||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: terminateSelf||@ohos.inputmethodextensioncontext.d.ts|
|Deleted||Module name: ohos.inputmethodextensioncontext<br>Class name: InputMethodExtensionContext<br>Method or attribute name: terminateSelf||@ohos.inputmethodextensioncontext.d.ts|
|Deleted||Module name: ohos.pasteboard<br>Class name: pasteboard<br>Method or attribute name: createPixelMapData||@ohos.pasteboard.d.ts|
|Deleted||Module name: ohos.pasteboard<br>Class name: pasteboard<br>Method or attribute name: createPixelMapRecord||@ohos.pasteboard.d.ts|
|Deleted||Module name: ohos.pasteboard<br>Class name: PasteData<br>Method or attribute name: addPixelMapRecord||@ohos.pasteboard.d.ts|
|Deleted||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: lockScreen||@ohos.screenLock.d.ts|
|Deleted||Module name: ohos.screenLock<br>Class name: screenLock<br>Method or attribute name: lockScreen||@ohos.screenLock.d.ts|
|Deleted||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: screenshotLiveWallpaper||@ohos.wallpaper.d.ts|
|Deleted||Module name: ohos.wallpaper<br>Class name: wallpaper<br>Method or attribute name: screenshotLiveWallpaper||@ohos.wallpaper.d.ts|
|Model changed|Method or attribute name: switchInputMethod<br>model: @Stage Model Only|Method or attribute name: switchInputMethod<br>model:|@ohos.inputmethod.d.ts|
|Model changed|Method or attribute name: switchInputMethod<br>model: @Stage Model Only|Method or attribute name: switchInputMethod<br>model:|@ohos.inputmethod.d.ts|
|Model changed|Method or attribute name: getCurrentInputMethod<br>model: @Stage Model Only|Method or attribute name: getCurrentInputMethod<br>model:|@ohos.inputmethod.d.ts|
|Model changed|Class name: InputMethodExtensionAbility<br>model: @Stage Model Only|Class name: InputMethodExtensionAbility<br>model:|@ohos.inputmethodextensionability.d.ts|
|Model changed|Method or attribute name: context<br>model: @Stage Model Only|Method or attribute name: context<br>model:|@ohos.inputmethodextensionability.d.ts|
|Model changed|Method or attribute name: onCreate<br>model: @Stage Model Only|Method or attribute name: onCreate<br>model:|@ohos.inputmethodextensionability.d.ts|
|Model changed|Method or attribute name: onDestroy<br>model: @Stage Model Only|Method or attribute name: onDestroy<br>model:|@ohos.inputmethodextensionability.d.ts|
|Model changed|Class name: InputMethodExtensionContext<br>model: @Stage Model Only|Class name: InputMethodExtensionContext<br>model:|@ohos.inputmethodextensioncontext.d.ts|
|Deprecated version changed|Method or attribute name: getInputMethodSetting<br>Deprecated version: N/A|Method or attribute name: getInputMethodSetting<br>Deprecated version: 9<br>New API: ohos.inputmethod.getController |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: getInputMethodController<br>Deprecated version: N/A|Method or attribute name: getInputMethodController<br>Deprecated version: 9<br>New API: ohos.inputmethod.getController |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: listInputMethod<br>Deprecated version: N/A|Method or attribute name: listInputMethod<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodSetting.getInputMethods |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: listInputMethod<br>Deprecated version: N/A|Method or attribute name: listInputMethod<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodSetting.getInputMethods |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: displayOptionalInputMethod<br>Deprecated version: N/A|Method or attribute name: displayOptionalInputMethod<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodSetting.showOptionalInputMethods |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: displayOptionalInputMethod<br>Deprecated version: N/A|Method or attribute name: displayOptionalInputMethod<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodSetting.showOptionalInputMethods |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: stopInput<br>Deprecated version: N/A|Method or attribute name: stopInput<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodController.stopInputSession |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: stopInput<br>Deprecated version: N/A|Method or attribute name: stopInput<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodController.stopInputSession |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: packageName<br>Deprecated version: N/A|Method or attribute name: packageName<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodProperty.name |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: methodId<br>Deprecated version: N/A|Method or attribute name: methodId<br>Deprecated version: 9<br>New API: ohos.inputmethod.InputMethodProperty.id |@ohos.inputmethod.d.ts|
|Deprecated version changed|Method or attribute name: getInputMethodEngine<br>Deprecated version: N/A|Method or attribute name: getInputMethodEngine<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.getInputMethodAbility |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: createKeyboardDelegate<br>Deprecated version: N/A|Method or attribute name: createKeyboardDelegate<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.getKeyboardDelegate |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: hideKeyboard<br>Deprecated version: N/A|Method or attribute name: hideKeyboard<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.KeyboardController.hide |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: hideKeyboard<br>Deprecated version: N/A|Method or attribute name: hideKeyboard<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.KeyboardController.hide |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Class name: TextInputClient<br>Deprecated version: N/A|Class name: TextInputClient<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: sendKeyFunction<br>Deprecated version: N/A|Method or attribute name: sendKeyFunction<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.sendKeyFunction |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: sendKeyFunction<br>Deprecated version: N/A|Method or attribute name: sendKeyFunction<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.sendKeyFunction |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: deleteForward<br>Deprecated version: N/A|Method or attribute name: deleteForward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.deleteForward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: deleteForward<br>Deprecated version: N/A|Method or attribute name: deleteForward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.deleteForward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: deleteBackward<br>Deprecated version: N/A|Method or attribute name: deleteBackward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.deleteBackward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: deleteBackward<br>Deprecated version: N/A|Method or attribute name: deleteBackward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.deleteBackward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: insertText<br>Deprecated version: N/A|Method or attribute name: insertText<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.insertText |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: insertText<br>Deprecated version: N/A|Method or attribute name: insertText<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.insertText |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getForward<br>Deprecated version: N/A|Method or attribute name: getForward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getForward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getForward<br>Deprecated version: N/A|Method or attribute name: getForward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getForward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getBackward<br>Deprecated version: N/A|Method or attribute name: getBackward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getBackward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getBackward<br>Deprecated version: N/A|Method or attribute name: getBackward<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getBackward |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getEditorAttribute<br>Deprecated version: N/A|Method or attribute name: getEditorAttribute<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getEditorAttribute |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: getEditorAttribute<br>Deprecated version: N/A|Method or attribute name: getEditorAttribute<br>Deprecated version: 9<br>New API: ohos.inputmethodengine.InputClient.getEditorAttribute |@ohos.inputmethodengine.d.ts|
|Deprecated version changed|Method or attribute name: createHtmlData<br>Deprecated version: N/A|Method or attribute name: createHtmlData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createWantData<br>Deprecated version: N/A|Method or attribute name: createWantData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createPlainTextData<br>Deprecated version: N/A|Method or attribute name: createPlainTextData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createUriData<br>Deprecated version: N/A|Method or attribute name: createUriData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createHtmlTextRecord<br>Deprecated version: N/A|Method or attribute name: createHtmlTextRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createWantRecord<br>Deprecated version: N/A|Method or attribute name: createWantRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createPlainTextRecord<br>Deprecated version: N/A|Method or attribute name: createPlainTextRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: createUriRecord<br>Deprecated version: N/A|Method or attribute name: createUriRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: convertToText<br>Deprecated version: N/A|Method or attribute name: convertToText<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: convertToText<br>Deprecated version: N/A|Method or attribute name: convertToText<br>Deprecated version: 9|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: addHtmlRecord<br>Deprecated version: N/A|Method or attribute name: addHtmlRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: addWantRecord<br>Deprecated version: N/A|Method or attribute name: addWantRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: addTextRecord<br>Deprecated version: N/A|Method or attribute name: addTextRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: addUriRecord<br>Deprecated version: N/A|Method or attribute name: addUriRecord<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: getRecordAt<br>Deprecated version: N/A|Method or attribute name: getRecordAt<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: hasMimeType<br>Deprecated version: N/A|Method or attribute name: hasMimeType<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: removeRecordAt<br>Deprecated version: N/A|Method or attribute name: removeRecordAt<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: replaceRecordAt<br>Deprecated version: N/A|Method or attribute name: replaceRecordAt<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: clear<br>Deprecated version: N/A|Method or attribute name: clear<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: clear<br>Deprecated version: N/A|Method or attribute name: clear<br>Deprecated version: 9|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: getPasteData<br>Deprecated version: N/A|Method or attribute name: getPasteData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: getPasteData<br>Deprecated version: N/A|Method or attribute name: getPasteData<br>Deprecated version: 9|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: hasPasteData<br>Deprecated version: N/A|Method or attribute name: hasPasteData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: hasPasteData<br>Deprecated version: N/A|Method or attribute name: hasPasteData<br>Deprecated version: 9|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: setPasteData<br>Deprecated version: N/A|Method or attribute name: setPasteData<br>Deprecated version: 9<br>New API: ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: setPasteData<br>Deprecated version: N/A|Method or attribute name: setPasteData<br>Deprecated version: 9|@ohos.pasteboard.d.ts|
|Deprecated version changed|Method or attribute name: download<br>Deprecated version: N/A|Method or attribute name: download<br>Deprecated version: 9<br>New API: ohos.request.downloadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: download<br>Deprecated version: N/A|Method or attribute name: download<br>Deprecated version: 9<br>New API: ohos.request.downloadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: download<br>Deprecated version: N/A|Method or attribute name: download<br>Deprecated version: 9<br>New API: ohos.request.downloadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: download<br>Deprecated version: N/A|Method or attribute name: download<br>Deprecated version: 9<br>New API: ohos.request.downloadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: upload<br>Deprecated version: N/A|Method or attribute name: upload<br>Deprecated version: 9<br>New API: ohos.request.uploadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: upload<br>Deprecated version: N/A|Method or attribute name: upload<br>Deprecated version: 9<br>New API: ohos.request.uploadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: upload<br>Deprecated version: N/A|Method or attribute name: upload<br>Deprecated version: 9<br>New API: ohos.request.uploadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: upload<br>Deprecated version: N/A|Method or attribute name: upload<br>Deprecated version: 9<br>New API: ohos.request.uploadFile |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.request.delete |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.request.delete |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: pause<br>Deprecated version: N/A|Method or attribute name: pause<br>Deprecated version: 9<br>New API: ohos.request.suspend |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: pause<br>Deprecated version: N/A|Method or attribute name: pause<br>Deprecated version: 9<br>New API: ohos.request.suspend |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: resume<br>Deprecated version: N/A|Method or attribute name: resume<br>Deprecated version: 9<br>New API: ohos.request.restore |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: resume<br>Deprecated version: N/A|Method or attribute name: resume<br>Deprecated version: 9<br>New API: ohos.request.restore |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: query<br>Deprecated version: N/A|Method or attribute name: query<br>Deprecated version: 9<br>New API: ohos.request.getTaskInfo |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: query<br>Deprecated version: N/A|Method or attribute name: query<br>Deprecated version: 9<br>New API: ohos.request.getTaskInfo |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: queryMimeType<br>Deprecated version: N/A|Method or attribute name: queryMimeType<br>Deprecated version: 9<br>New API: ohos.request.getTaskMimeType |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: queryMimeType<br>Deprecated version: N/A|Method or attribute name: queryMimeType<br>Deprecated version: 9<br>New API: ohos.request.getTaskMimeType |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.request.delete |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.request.delete |@ohos.request.d.ts|
|Deprecated version changed|Method or attribute name: isScreenLocked<br>Deprecated version: N/A|Method or attribute name: isScreenLocked<br>Deprecated version: 9<br>New API: ohos.screenLock.isLocked |@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: isScreenLocked<br>Deprecated version: N/A|Method or attribute name: isScreenLocked<br>Deprecated version: 9|@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: isSecureMode<br>Deprecated version: N/A|Method or attribute name: isSecureMode<br>Deprecated version: 9<br>New API: ohos.screenLock.isSecure |@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: isSecureMode<br>Deprecated version: N/A|Method or attribute name: isSecureMode<br>Deprecated version: 9|@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: unlockScreen<br>Deprecated version: N/A|Method or attribute name: unlockScreen<br>Deprecated version: 9<br>New API: ohos.screenLock.unlock |@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: unlockScreen<br>Deprecated version: N/A|Method or attribute name: unlockScreen<br>Deprecated version: 9|@ohos.screenLock.d.ts|
|Deprecated version changed|Method or attribute name: getColors<br>Deprecated version: N/A|Method or attribute name: getColors<br>Deprecated version: 9<br>New API: ohos.wallpaper.getColorsSync |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getColors<br>Deprecated version: N/A|Method or attribute name: getColors<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getId<br>Deprecated version: N/A|Method or attribute name: getId<br>Deprecated version: 9<br>New API: ohos.wallpaper.getIdSync |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getId<br>Deprecated version: N/A|Method or attribute name: getId<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getFile<br>Deprecated version: N/A|Method or attribute name: getFile<br>Deprecated version: 9<br>New API: ohos.wallpaper.getFileSync |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getFile<br>Deprecated version: N/A|Method or attribute name: getFile<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getMinHeight<br>Deprecated version: N/A|Method or attribute name: getMinHeight<br>Deprecated version: 9<br>New API: ohos.wallpaper.getMinHeightSync |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getMinHeight<br>Deprecated version: N/A|Method or attribute name: getMinHeight<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getMinWidth<br>Deprecated version: N/A|Method or attribute name: getMinWidth<br>Deprecated version: 9<br>New API: ohos.wallpaper.getMinWidthSync |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getMinWidth<br>Deprecated version: N/A|Method or attribute name: getMinWidth<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: isChangePermitted<br>Deprecated version: N/A|Method or attribute name: isChangePermitted<br>Deprecated version: 9<br>New API: ohos.wallpaper.isChangeAllowed |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: isChangePermitted<br>Deprecated version: N/A|Method or attribute name: isChangePermitted<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: isOperationAllowed<br>Deprecated version: N/A|Method or attribute name: isOperationAllowed<br>Deprecated version: 9<br>New API: ohos.wallpaper.isUserChangeAllowed |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: isOperationAllowed<br>Deprecated version: N/A|Method or attribute name: isOperationAllowed<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: reset<br>Deprecated version: N/A|Method or attribute name: reset<br>Deprecated version: 9<br>New API: ohos.wallpaper.recovery |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: reset<br>Deprecated version: N/A|Method or attribute name: reset<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: setWallpaper<br>Deprecated version: N/A|Method or attribute name: setWallpaper<br>Deprecated version: 9<br>New API: ohos.wallpaper.setImage |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: setWallpaper<br>Deprecated version: N/A|Method or attribute name: setWallpaper<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getPixelMap<br>Deprecated version: N/A|Method or attribute name: getPixelMap<br>Deprecated version: 9<br>New API: ohos.wallpaper.getImage |@ohos.wallpaper.d.ts|
|Deprecated version changed|Method or attribute name: getPixelMap<br>Deprecated version: N/A|Method or attribute name: getPixelMap<br>Deprecated version: 9|@ohos.wallpaper.d.ts|
|Deprecated version changed|Class name: UploadResponse<br>Deprecated version: N/A|Class name: UploadResponse<br>Deprecated version: 9<br>New API: ohos.request |@system.request.d.ts|
|Deprecated version changed|Method or attribute name: code<br>Deprecated version: N/A|Method or attribute name: code<br>Deprecated version: 9<br>New API: ohos.request |@system.request.d.ts|
|Deprecated version changed|Method or attribute name: data<br>Deprecated version: N/A|Method or attribute name: data<br>Deprecated version: 9<br>New API: ohos.request |@system.request.d.ts|
|Deprecated version changed|Method or attribute name: headers<br>Deprecated version: N/A|Method or attribute name: headers<br>Deprecated version: 9<br>New API: ohos.request |@system.request.d.ts|
|Deprecated version changed|Class name: DownloadResponse<br>Deprecated version: N/A|Class name: DownloadResponse<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: token<br>Deprecated version: N/A|Method or attribute name: token<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: OnDownloadCompleteResponse<br>Deprecated version: N/A|Class name: OnDownloadCompleteResponse<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: uri<br>Deprecated version: N/A|Method or attribute name: uri<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: RequestFile<br>Deprecated version: N/A|Class name: RequestFile<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: filename<br>Deprecated version: N/A|Method or attribute name: filename<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: name<br>Deprecated version: N/A|Method or attribute name: name<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: uri<br>Deprecated version: N/A|Method or attribute name: uri<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: type<br>Deprecated version: N/A|Method or attribute name: type<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: RequestData<br>Deprecated version: N/A|Class name: RequestData<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: name<br>Deprecated version: N/A|Method or attribute name: name<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: value<br>Deprecated version: N/A|Method or attribute name: value<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: UploadRequestOptions<br>Deprecated version: N/A|Class name: UploadRequestOptions<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: url<br>Deprecated version: N/A|Method or attribute name: url<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: data<br>Deprecated version: N/A|Method or attribute name: data<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: files<br>Deprecated version: N/A|Method or attribute name: files<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: header<br>Deprecated version: N/A|Method or attribute name: header<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: method<br>Deprecated version: N/A|Method or attribute name: method<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: N/A|Method or attribute name: success<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: N/A|Method or attribute name: fail<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: N/A|Method or attribute name: complete<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: DownloadRequestOptions<br>Deprecated version: N/A|Class name: DownloadRequestOptions<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: url<br>Deprecated version: N/A|Method or attribute name: url<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: filename<br>Deprecated version: N/A|Method or attribute name: filename<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: header<br>Deprecated version: N/A|Method or attribute name: header<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: description<br>Deprecated version: N/A|Method or attribute name: description<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: N/A|Method or attribute name: success<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: N/A|Method or attribute name: fail<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: N/A|Method or attribute name: complete<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: OnDownloadCompleteOptions<br>Deprecated version: N/A|Class name: OnDownloadCompleteOptions<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: token<br>Deprecated version: N/A|Method or attribute name: token<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: success<br>Deprecated version: N/A|Method or attribute name: success<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: fail<br>Deprecated version: N/A|Method or attribute name: fail<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: complete<br>Deprecated version: N/A|Method or attribute name: complete<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Class name: Request<br>Deprecated version: N/A|Class name: Request<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: upload<br>Deprecated version: N/A|Method or attribute name: upload<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: download<br>Deprecated version: N/A|Method or attribute name: download<br>Deprecated version: 9|@system.request.d.ts|
|Deprecated version changed|Method or attribute name: onDownloadComplete<br>Deprecated version: N/A|Method or attribute name: onDownloadComplete<br>Deprecated version: 9|@system.request.d.ts|
|Initial version changed|Class name: inputMethod<br>Initial version: |Class name: inputMethod<br>Initial version: 6|@ohos.inputmethod.d.ts|
|Initial version changed|Method or attribute name: getFile<br>Initial version: 9|Method or attribute name: getFile<br>Initial version: 8|@ohos.wallpaper.d.ts|
|Initial version changed|Method or attribute name: getFile<br>Initial version: 9|Method or attribute name: getFile<br>Initial version: 8|@ohos.wallpaper.d.ts|
|Initial version changed|Method or attribute name: on_colorChange<br>Initial version: 7|Method or attribute name: on_colorChange<br>Initial version: 9|@ohos.wallpaper.d.ts|
|Initial version changed|Method or attribute name: off_colorChange<br>Initial version: 7|Method or attribute name: off_colorChange<br>Initial version: 9|@ohos.wallpaper.d.ts|
|Error code added||Method or attribute name: setProperty<br>Error code: 401|@ohos.pasteboard.d.ts|
|Error code added||Method or attribute name: on_update<br>Error code: 401|@ohos.pasteboard.d.ts|
|Error code added||Method or attribute name: off_update<br>Error code: 401|@ohos.pasteboard.d.ts|
|Permission added|Method or attribute name: switchInputMethod<br>Permission: N/A|Method or attribute name: switchInputMethod<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
|Permission added|Method or attribute name: switchInputMethod<br>Permission: N/A|Method or attribute name: switchInputMethod<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
|Permission added|Method or attribute name: showSoftKeyboard<br>Permission: N/A|Method or attribute name: showSoftKeyboard<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
|Permission added|Method or attribute name: showSoftKeyboard<br>Permission: N/A|Method or attribute name: showSoftKeyboard<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
|Permission added|Method or attribute name: hideSoftKeyboard<br>Permission: N/A|Method or attribute name: hideSoftKeyboard<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
|Permission added|Method or attribute name: hideSoftKeyboard<br>Permission: N/A|Method or attribute name: hideSoftKeyboard<br>Permission: ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.stationary<br>Class name: stationary|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityResponse|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityResponse<br>Method or attribute name: state|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityEvent|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityEvent<br>Method or attribute name: ENTER|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityEvent<br>Method or attribute name: EXIT|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityEvent<br>Method or attribute name: ENTER_EXIT|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityState|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityState<br>Method or attribute name: ENTER|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: ActivityState<br>Method or attribute name: EXIT|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: stationary<br>Method or attribute name: on|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: stationary<br>Method or attribute name: once|@ohos.stationary.d.ts|
|Added||Module name: ohos.stationary<br>Class name: stationary<br>Method or attribute name: off|@ohos.stationary.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added|Module name: ohos.multimodalInput.inputDevice<br>Class name: inputDevice<br>Method or attribute name: getDeviceList|@ohos.multimodalInput.inputDevice.d.ts|
|Added|Module name: ohos.multimodalInput.inputDevice<br>Class name: inputDevice<br>Method or attribute name: getDeviceList|@ohos.multimodalInput.inputDevice.d.ts|
|Added|Module name: ohos.multimodalInput.inputDevice<br>Class name: inputDevice<br>Method or attribute name: getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts|
|Added|Module name: ohos.multimodalInput.inputDevice<br>Class name: inputDevice<br>Method or attribute name: getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts|
|Added||Method or attribute name: supportKeys<br>Function name: function supportKeys(deviceId: number, keys: Array<KeyCode>, callback: AsyncCallback<Array<boolean>>): void;|@ohos.multimodalInput.inputDevice.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg<br>Method or attribute name: MSG_COOPERATE_INFO_START|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg<br>Method or attribute name: MSG_COOPERATE_INFO_SUCCESS|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg<br>Method or attribute name: MSG_COOPERATE_INFO_FAIL|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg<br>Method or attribute name: MSG_COOPERATE_STATE_ON|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Added|Module name: ohos.multimodalInput.inputDeviceCooperate<br>Class name: EventMsg<br>Method or attribute name: MSG_COOPERATE_STATE_OFF|@ohos.multimodalInput.inputDeviceCooperate.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceIds<br>Deprecated version: N/A|Method or attribute name: getDeviceIds<br>Deprecated version: 9<br>New API: ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceIds<br>Deprecated version: N/A|Method or attribute name: getDeviceIds<br>Deprecated version: 9<br>New API: ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts|
|Deprecated version changed|Method or attribute name: getDevice<br>Deprecated version: N/A|Method or attribute name: getDevice<br>Deprecated version: 9<br>New API: ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts|
|Deprecated version changed|Method or attribute name: getDevice<br>Deprecated version: N/A|Method or attribute name: getDevice<br>Deprecated version: 9<br>New API: ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.multimedia.audio<br>Class name: audio|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_INVALID_PARAM|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_NO_MEMORY|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_ILLEGAL_STATE|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_UNSUPPORTED|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_TIMEOUT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_STREAM_LIMIT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioErrors<br>Method or attribute name: ERROR_SYSTEM|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: audio<br>Method or attribute name: DEFAULT_VOLUME_GROUP_ID|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: audio<br>Method or attribute name: DEFAULT_INTERRUPT_GROUP_ID|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: audio<br>Method or attribute name: createTonePlayer|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: audio<br>Method or attribute name: createTonePlayer|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: CommunicationDeviceType|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: CommunicationDeviceType<br>Method or attribute name: SPEAKER|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: StreamUsage<br>Method or attribute name: STREAM_USAGE_VOICE_ASSISTANT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptRequestType|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptRequestType<br>Method or attribute name: INTERRUPT_REQUEST_TYPE_DEFAULT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptMode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptMode<br>Method or attribute name: SHARE_MODE|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptMode<br>Method or attribute name: INDEPENDENT_MODE|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: getVolumeManager|@ohos.multimedia.audio.d.ts|
|Added||Method or attribute name: getStreamManager<br>Function name: getStreamManager(): AudioStreamManager;|@ohos.multimedia.audio.d.ts|
|Added||Method or attribute name: getRoutingManager<br>Function name: getRoutingManager(): AudioRoutingManager;|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptRequestResultType|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptRequestResultType<br>Method or attribute name: INTERRUPT_REQUEST_GRANT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptRequestResultType<br>Method or attribute name: INTERRUPT_REQUEST_REJECT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptResult|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptResult<br>Method or attribute name: requestResult|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: InterruptResult<br>Method or attribute name: interruptNode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: setCommunicationDevice|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: setCommunicationDevice|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: isCommunicationDeviceActive|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: isCommunicationDeviceActive|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: selectInputDevice|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRoutingManager<br>Method or attribute name: selectInputDevice|@ohos.multimedia.audio.d.ts|
|Added||Method or attribute name: off_audioRendererChange<br>Function name: off(type: "audioRendererChange"): void;|@ohos.multimedia.audio.d.ts|
|Added||Method or attribute name: off_audioCapturerChange<br>Function name: off(type: "audioCapturerChange"): void;|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioStreamManager<br>Method or attribute name: isActive|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioStreamManager<br>Method or attribute name: isActive|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager<br>Method or attribute name: getVolumeGroupInfos|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager<br>Method or attribute name: getVolumeGroupInfos|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager<br>Method or attribute name: getVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager<br>Method or attribute name: getVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeManager<br>Method or attribute name: on_volumeChange|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getMinVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getMinVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getMaxVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getMaxVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: mute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: mute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: isMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: isMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setRingerMode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setRingerMode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getRingerMode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: getRingerMode|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: on_ringerModeChange|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setMicrophoneMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: setMicrophoneMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: isMicrophoneMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: isMicrophoneMute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioVolumeGroupManager<br>Method or attribute name: on_micStateChange|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ConnectType<br>Method or attribute name: CONNECT_TYPE_LOCAL|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ConnectType<br>Method or attribute name: CONNECT_TYPE_DISTRIBUTED|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: MicStateChangeEvent|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: MicStateChangeEvent<br>Method or attribute name: mute|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: getAudioStreamId|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: getAudioStreamId|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: setVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: setVolume|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: on_audioInterrupt|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: SourceType<br>Method or attribute name: SOURCE_TYPE_VOICE_RECOGNITION|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioCapturer<br>Method or attribute name: getAudioStreamId|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioCapturer<br>Method or attribute name: getAudioStreamId|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_0|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_1|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_2|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_3|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_4|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_5|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_6|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_7|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_8|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_9|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_S|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_P|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_A|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_B|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_C|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_DIAL_D|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_DIAL|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_BUSY|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_CONGESTION|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_RADIO_ACK|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_RADIO_NOT_AVAILABLE|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_CALL_WAITING|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_SUPERVISORY_RINGTONE|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_PROPRIETARY_BEEP|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_PROPRIETARY_ACK|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_PROPRIETARY_PROMPT|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: ToneType<br>Method or attribute name: TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: load|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: load|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: start|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: start|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: stop|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: stop|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: release|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: TonePlayer<br>Method or attribute name: release|@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: createAVSession|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: createAVSession|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: getAllSessionDescriptors|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: getAllSessionDescriptors|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: createController|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: createController|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: castAudio|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: castAudio|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: SessionToken|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: SessionToken<br>Method or attribute name: sessionId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: SessionToken<br>Method or attribute name: pid|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: SessionToken<br>Method or attribute name: uid|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: on_sessionCreate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: on_sessionDestroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: on_topSessionChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: off_sessionCreate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: off_sessionDestroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: off_topSessionChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: on_sessionServiceDie|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: off_sessionServiceDie|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: sendSystemAVKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: sendSystemAVKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: sendSystemControlCommand|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: avSession<br>Method or attribute name: sendSystemControlCommand|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: sessionId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setAVMetadata|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setAVMetadata|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setAVPlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setAVPlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setLaunchAbility|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: setLaunchAbility|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: getController|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: getController|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: getOutputDevice|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: getOutputDevice|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_play|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_pause|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_stop|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_playNext|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_playPrevious|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_fastForward|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_rewind|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_play|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_pause|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_stop|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_playNext|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_playPrevious|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_fastForward|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_rewind|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_seek|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_seek|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_setSpeed|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_setSpeed|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_setLoopMode|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_setLoopMode|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_toggleFavorite|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_toggleFavorite|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_handleKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_handleKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: on_outputDeviceChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: off_outputDeviceChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: activate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: activate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: deactivate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: deactivate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: destroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSession<br>Method or attribute name: destroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: assetId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: title|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: artist|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: author|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: album|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: writer|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: composer|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: duration|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: mediaImage|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: publishDate|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: subtitle|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: description|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: lyric|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: previousAssetId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVMetadata<br>Method or attribute name: nextAssetId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: state|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: speed|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: position|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: bufferedTime|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: loopMode|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVPlaybackState<br>Method or attribute name: isFavorite|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackPosition|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackPosition<br>Method or attribute name: elapsedTime|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackPosition<br>Method or attribute name: updateTime|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: OutputDeviceInfo|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: OutputDeviceInfo<br>Method or attribute name: isRemote|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: OutputDeviceInfo<br>Method or attribute name: audioDeviceId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: OutputDeviceInfo<br>Method or attribute name: deviceName|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: LoopMode|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: LoopMode<br>Method or attribute name: LOOP_MODE_SEQUENCE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: LoopMode<br>Method or attribute name: LOOP_MODE_SINGLE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: LoopMode<br>Method or attribute name: LOOP_MODE_LIST|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: LoopMode<br>Method or attribute name: LOOP_MODE_SHUFFLE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_INITIAL|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_PREPARE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_PLAY|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_PAUSE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_FAST_FORWARD|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_REWIND|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: PlaybackState<br>Method or attribute name: PLAYBACK_STATE_STOP|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: sessionId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: type|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: sessionTag|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: elementName|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: isActive|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: isTopSession|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionDescriptor<br>Method or attribute name: outputDevice|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: sessionId|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getAVPlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getAVPlaybackState|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getAVMetadata|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getAVMetadata|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getOutputDevice|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getOutputDevice|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: sendAVKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: sendAVKeyEvent|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getLaunchAbility|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getLaunchAbility|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getRealPlaybackPositionSync|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: isActive|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: isActive|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: destroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: destroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getValidCommands|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: getValidCommands|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: sendControlCommand|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: sendControlCommand|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_metadataChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_metadataChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_playbackStateChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_playbackStateChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_sessionDestroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_sessionDestroy|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_activeStateChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_activeStateChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_validCommandChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_validCommandChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: on_outputDeviceChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionController<br>Method or attribute name: off_outputDeviceChange|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVControlCommand|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVControlCommand<br>Method or attribute name: command|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVControlCommand<br>Method or attribute name: parameter|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_SERVICE_EXCEPTION|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_SESSION_NOT_EXIST|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_CONTROLLER_NOT_EXIST|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_REMOTE_CONNECTION_ERR|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_COMMAND_INVALID|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_SESSION_INACTIVE|@ohos.multimedia.avsession.d.ts|
|Added||Module name: ohos.multimedia.avsession<br>Class name: AVSessionErrorCode<br>Method or attribute name: ERR_CODE_MESSAGE_OVERLOAD|@ohos.multimedia.avsession.d.ts|
|Added||Method or attribute name: CAMERA_STATUS_DISAPPEAR<br>Function name: CAMERA_STATUS_DISAPPEAR = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_STATUS_AVAILABLE<br>Function name: CAMERA_STATUS_AVAILABLE = 2|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_STATUS_UNAVAILABLE<br>Function name: CAMERA_STATUS_UNAVAILABLE = 3|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Profile|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Profile<br>Method or attribute name: format|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Profile<br>Method or attribute name: size|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: FrameRateRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: FrameRateRange<br>Method or attribute name: min|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: FrameRateRange<br>Method or attribute name: max|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoProfile|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoProfile<br>Method or attribute name: frameRateRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutputCapability|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutputCapability<br>Method or attribute name: previewProfiles|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutputCapability<br>Method or attribute name: photoProfiles|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutputCapability<br>Method or attribute name: videoProfiles|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutputCapability<br>Method or attribute name: supportedMetadataObjectTypes|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getSupportedCameras|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getSupportedCameras|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getSupportedOutputCapability|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getSupportedOutputCapability|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: isCameraMuted|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: isCameraMuteSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: muteCamera|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: createCameraInput<br>Function name: createCameraInput(camera: CameraDevice, callback: AsyncCallback<CameraInput>): void;|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: createCameraInput<br>Function name: createCameraInput(camera: CameraDevice): Promise<CameraInput>;|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createPreviewOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createPreviewOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createPhotoOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createPhotoOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createVideoOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createVideoOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createMetadataOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createMetadataOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createCaptureSession|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: createCaptureSession|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: on_cameraMute|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: camera<br>Function name: camera: CameraDevice;|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_POSITION_BACK<br>Function name: CAMERA_POSITION_BACK = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_POSITION_FRONT<br>Function name: CAMERA_POSITION_FRONT = 2|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_TYPE_WIDE_ANGLE<br>Function name: CAMERA_TYPE_WIDE_ANGLE = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_TYPE_ULTRA_WIDE<br>Function name: CAMERA_TYPE_ULTRA_WIDE = 2|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_TYPE_TELEPHOTO<br>Function name: CAMERA_TYPE_TELEPHOTO = 3|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_TYPE_TRUE_DEPTH<br>Function name: CAMERA_TYPE_TRUE_DEPTH = 4|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_CONNECTION_USB_PLUGIN<br>Function name: CAMERA_CONNECTION_USB_PLUGIN = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: CAMERA_CONNECTION_REMOTE<br>Function name: CAMERA_CONNECTION_REMOTE = 2|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraDevice|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraDevice<br>Method or attribute name: cameraId|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraDevice<br>Method or attribute name: cameraPosition|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraDevice<br>Method or attribute name: cameraType|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraDevice<br>Method or attribute name: connectionType|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Point|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Point<br>Method or attribute name: x|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Point<br>Method or attribute name: y|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: open|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: open|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: close|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: close|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: on_error<br>Function name: on(type: 'error', camera: CameraDevice, callback: ErrorCallback<CameraInputError>): void;|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInputErrorCode<br>Method or attribute name: ERROR_NO_PERMISSION|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInputErrorCode<br>Method or attribute name: ERROR_DEVICE_PREEMPTED|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInputErrorCode<br>Method or attribute name: ERROR_DEVICE_DISCONNECTED|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInputErrorCode<br>Method or attribute name: ERROR_DEVICE_IN_USE|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInputErrorCode<br>Method or attribute name: ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraFormat|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraFormat<br>Method or attribute name: CAMERA_FORMAT_RGBA_8888|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraFormat<br>Method or attribute name: CAMERA_FORMAT_YUV_420_SP|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraFormat<br>Method or attribute name: CAMERA_FORMAT_JPEG|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FLASH_MODE_OPEN<br>Function name: FLASH_MODE_OPEN = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FLASH_MODE_AUTO<br>Function name: FLASH_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FLASH_MODE_ALWAYS_OPEN<br>Function name: FLASH_MODE_ALWAYS_OPEN = 3|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: ExposureMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: ExposureMode<br>Method or attribute name: EXPOSURE_MODE_LOCKED|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: ExposureMode<br>Method or attribute name: EXPOSURE_MODE_AUTO|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: ExposureMode<br>Method or attribute name: EXPOSURE_MODE_CONTINUOUS_AUTO|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FOCUS_MODE_CONTINUOUS_AUTO<br>Function name: FOCUS_MODE_CONTINUOUS_AUTO = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FOCUS_MODE_AUTO<br>Function name: FOCUS_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FOCUS_MODE_LOCKED<br>Function name: FOCUS_MODE_LOCKED = 3|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FOCUS_STATE_FOCUSED<br>Function name: FOCUS_STATE_FOCUSED = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: FOCUS_STATE_UNFOCUSED<br>Function name: FOCUS_STATE_UNFOCUSED = 2|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode<br>Method or attribute name: OFF|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode<br>Method or attribute name: LOW|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode<br>Method or attribute name: MIDDLE|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode<br>Method or attribute name: HIGH|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoStabilizationMode<br>Method or attribute name: AUTO|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: addOutput<br>Function name: addOutput(cameraOutput: CameraOutput, callback: AsyncCallback<void>): void;|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: addOutput<br>Function name: addOutput(cameraOutput: CameraOutput): Promise<void>;|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: removeOutput<br>Function name: removeOutput(cameraOutput: CameraOutput, callback: AsyncCallback<void>): void;|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: removeOutput<br>Function name: removeOutput(cameraOutput: CameraOutput): Promise<void>;|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: hasFlash|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: hasFlash|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isFlashModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isFlashModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFlashMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFlashMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFlashMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFlashMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isExposureModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isExposureModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setExposureMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setExposureMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getMeteringPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getMeteringPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setMeteringPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setMeteringPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureBiasRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureBiasRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setExposureBias|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setExposureBias|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureValue|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getExposureValue|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isFocusModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isFocusModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocusMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocusMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFocusMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFocusMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFocusPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setFocusPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocusPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocusPoint|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocalLength|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getFocalLength|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getZoomRatioRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getZoomRatioRange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getZoomRatio|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getZoomRatio|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setZoomRatio|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setZoomRatio|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isVideoStabilizationModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: isVideoStabilizationModeSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getActiveVideoStabilizationMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: getActiveVideoStabilizationMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setVideoStabilizationMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: setVideoStabilizationMode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSession<br>Method or attribute name: on_focusStateChange|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSessionErrorCode<br>Method or attribute name: ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CaptureSessionErrorCode<br>Method or attribute name: ERROR_TIMEOUT|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutput<br>Method or attribute name: release|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraOutput<br>Method or attribute name: release|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: start|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: start|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: stop|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: stop|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Location|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Location<br>Method or attribute name: latitude|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Location<br>Method or attribute name: longitude|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Location<br>Method or attribute name: altitude|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: QUALITY_LEVEL_MEDIUM<br>Function name: QUALITY_LEVEL_MEDIUM = 1|@ohos.multimedia.camera.d.ts|
|Added||Method or attribute name: QUALITY_LEVEL_LOW<br>Function name: QUALITY_LEVEL_LOW = 2|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoCaptureSetting<br>Method or attribute name: location|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoCaptureSetting<br>Method or attribute name: mirror|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutput<br>Method or attribute name: isMirrorSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutput<br>Method or attribute name: isMirrorSupported|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutputErrorCode<br>Method or attribute name: ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutputErrorCode<br>Method or attribute name: ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutputErrorCode<br>Method or attribute name: ERROR_TIMEOUT|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: VideoOutputErrorCode<br>Method or attribute name: ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObjectType|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObjectType<br>Method or attribute name: FACE_DETECTION|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Rect|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Rect<br>Method or attribute name: topLeftX|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Rect<br>Method or attribute name: topLeftY|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Rect<br>Method or attribute name: width|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: Rect<br>Method or attribute name: height|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getType|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getType|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getTimestamp|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getTimestamp|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getBoundingBox|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataObject<br>Method or attribute name: getBoundingBox|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataFaceObject|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: start|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: start|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: stop|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: stop|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: on_metadataObjectsAvailable|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutput<br>Method or attribute name: on_error|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutputErrorCode|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutputErrorCode<br>Method or attribute name: ERROR_UNKNOWN|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutputErrorCode<br>Method or attribute name: ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutputError|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: MetadataOutputError<br>Method or attribute name: code|@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: image|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PixelMapFormat<br>Method or attribute name: RGB_888|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PixelMapFormat<br>Method or attribute name: ALPHA_8|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PixelMapFormat<br>Method or attribute name: RGBA_F16|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PixelMapFormat<br>Method or attribute name: NV21|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PixelMapFormat<br>Method or attribute name: NV12|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PropertyKey<br>Method or attribute name: DATE_TIME_ORIGINAL|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PropertyKey<br>Method or attribute name: EXPOSURE_TIME|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PropertyKey<br>Method or attribute name: SCENE_TYPE|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PropertyKey<br>Method or attribute name: ISO_SPEED_RATINGS|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PropertyKey<br>Method or attribute name: F_NUMBER|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageInfo<br>Method or attribute name: density|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: PackingOption<br>Method or attribute name: bufferSize|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: DecodingOptions<br>Method or attribute name: fitDensity|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: image<br>Method or attribute name: createImageCreator|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: capacity|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: format|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: dequeueImage|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: dequeueImage|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: queueImage|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: queueImage|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: on_imageRelease|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: release|@ohos.multimedia.image.d.ts|
|Added||Module name: ohos.multimedia.image<br>Class name: ImageCreator<br>Method or attribute name: release|@ohos.multimedia.image.d.ts|
|Added||Method or attribute name: audioSourceType<br>Function name: audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: FocusType||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: FocusType<br>Method or attribute name: FOCUS_TYPE_RECORDING||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: getVolumeGroups||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: getVolumeGroups||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: getGroupManager||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: getGroupManager||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: requestIndependentInterrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: requestIndependentInterrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: abandonIndependentInterrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: abandonIndependentInterrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: on_independentInterrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioManager<br>Method or attribute name: off_independentInterrupt||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: setVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: setVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getMinVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getMinVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getMaxVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: getMaxVolume||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: mute||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: mute||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: isMute||@ohos.multimedia.audio.d.ts|
|Deleted||Module name: ohos.multimedia.audio<br>Class name: AudioGroupManager<br>Method or attribute name: isMute||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.audio<br>Class name: AudioRenderer<br>Method or attribute name: on_interrupt||@ohos.multimedia.audio.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getCameras||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraManager<br>Method or attribute name: getCameras||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: Camera||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: Camera<br>Method or attribute name: cameraId||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: Camera<br>Method or attribute name: cameraPosition||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: Camera<br>Method or attribute name: cameraType||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: Camera<br>Method or attribute name: connectionType||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getCameraId||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getCameraId||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: hasFlash||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: hasFlash||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: isFlashModeSupported||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: isFlashModeSupported||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getFlashMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getFlashMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setFlashMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setFlashMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: isFocusModeSupported||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: isFocusModeSupported||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getFocusMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getFocusMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setFocusMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setFocusMode||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getZoomRatioRange||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getZoomRatioRange||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getZoomRatio||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: getZoomRatio||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setZoomRatio||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: setZoomRatio||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: CameraInput<br>Method or attribute name: on_focusStateChange||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createCaptureSession||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createCaptureSession||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createPreviewOutput||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createPreviewOutput||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PreviewOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createPhotoOutput||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createPhotoOutput||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Added||Module name: ohos.multimedia.camera<br>Class name: PhotoOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createVideoOutput||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: camera<br>Method or attribute name: createVideoOutput||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: VideoOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.camera<br>Class name: VideoOutput<br>Method or attribute name: release||@ohos.multimedia.camera.d.ts|
|Deleted||Module name: ohos.multimedia.media<br>Class name: VideoPlayer<br>Method or attribute name: selectBitrate||@ohos.multimedia.media.d.ts|
|Deleted||Module name: ohos.multimedia.media<br>Class name: VideoPlayer<br>Method or attribute name: selectBitrate||@ohos.multimedia.media.d.ts|
|Deleted||Module name: ohos.multimedia.media<br>Class name: VideoPlayer<br>Method or attribute name: on_availableBitratesCollect||@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: createVideoRecorder<br>Access level: public API|Method or attribute name: createVideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: createVideoRecorder<br>Access level: public API|Method or attribute name: createVideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorder<br>Access level: public API|Class name: VideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: prepare<br>Access level: public API|Method or attribute name: prepare<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: prepare<br>Access level: public API|Method or attribute name: prepare<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: getInputSurface<br>Access level: public API|Method or attribute name: getInputSurface<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: getInputSurface<br>Access level: public API|Method or attribute name: getInputSurface<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: start<br>Access level: public API|Method or attribute name: start<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: start<br>Access level: public API|Method or attribute name: start<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: pause<br>Access level: public API|Method or attribute name: pause<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: pause<br>Access level: public API|Method or attribute name: pause<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: resume<br>Access level: public API|Method or attribute name: resume<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: resume<br>Access level: public API|Method or attribute name: resume<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: stop<br>Access level: public API|Method or attribute name: stop<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: stop<br>Access level: public API|Method or attribute name: stop<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: release<br>Access level: public API|Method or attribute name: release<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: release<br>Access level: public API|Method or attribute name: release<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: reset<br>Access level: public API|Method or attribute name: reset<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: reset<br>Access level: public API|Method or attribute name: reset<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: on_error<br>Access level: public API|Method or attribute name: on_error<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: state<br>Access level: public API|Method or attribute name: state<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorderProfile<br>Access level: public API|Class name: VideoRecorderProfile<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioBitrate<br>Access level: public API|Method or attribute name: audioBitrate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioChannels<br>Access level: public API|Method or attribute name: audioChannels<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioCodec<br>Access level: public API|Method or attribute name: audioCodec<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioSampleRate<br>Access level: public API|Method or attribute name: audioSampleRate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: fileFormat<br>Access level: public API|Method or attribute name: fileFormat<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoBitrate<br>Access level: public API|Method or attribute name: videoBitrate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoCodec<br>Access level: public API|Method or attribute name: videoCodec<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameWidth<br>Access level: public API|Method or attribute name: videoFrameWidth<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameHeight<br>Access level: public API|Method or attribute name: videoFrameHeight<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameRate<br>Access level: public API|Method or attribute name: videoFrameRate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: AudioSourceType<br>Access level: public API|Class name: AudioSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: AUDIO_SOURCE_TYPE_DEFAULT<br>Access level: public API|Method or attribute name: AUDIO_SOURCE_TYPE_DEFAULT<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: AUDIO_SOURCE_TYPE_MIC<br>Access level: public API|Method or attribute name: AUDIO_SOURCE_TYPE_MIC<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoSourceType<br>Access level: public API|Class name: VideoSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_YUV<br>Access level: public API|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_YUV<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_ES<br>Access level: public API|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_ES<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorderConfig<br>Access level: public API|Class name: VideoRecorderConfig<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoSourceType<br>Access level: public API|Method or attribute name: videoSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: profile<br>Access level: public API|Method or attribute name: profile<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: url<br>Access level: public API|Method or attribute name: url<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: rotation<br>Access level: public API|Method or attribute name: rotation<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: location<br>Access level: public API|Method or attribute name: location<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Deprecated version changed|Class name: ActiveDeviceType<br>Deprecated version: N/A|Class name: ActiveDeviceType<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.CommunicationDeviceType |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: SPEAKER<br>Deprecated version: N/A|Method or attribute name: SPEAKER<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.CommunicationDeviceType.SPEAKER |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: BLUETOOTH_SCO<br>Deprecated version: N/A|Method or attribute name: BLUETOOTH_SCO<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.CommunicationDeviceType |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Class name: InterruptActionType<br>Deprecated version: N/A|Class name: InterruptActionType<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_ACTIVATED<br>Deprecated version: N/A|Method or attribute name: TYPE_ACTIVATED<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_INTERRUPT<br>Deprecated version: N/A|Method or attribute name: TYPE_INTERRUPT<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setVolume<br>Deprecated version: N/A|Method or attribute name: setVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setVolume<br>Deprecated version: N/A|Method or attribute name: setVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getVolume<br>Deprecated version: N/A|Method or attribute name: getVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getVolume<br>Deprecated version: N/A|Method or attribute name: getVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getMinVolume<br>Deprecated version: N/A|Method or attribute name: getMinVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getMinVolume<br>Deprecated version: N/A|Method or attribute name: getMinVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getMaxVolume<br>Deprecated version: N/A|Method or attribute name: getMaxVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getMaxVolume<br>Deprecated version: N/A|Method or attribute name: getMaxVolume<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getDevices<br>Deprecated version: N/A|Method or attribute name: getDevices<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getDevices<br>Deprecated version: N/A|Method or attribute name: getDevices<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: mute<br>Deprecated version: N/A|Method or attribute name: mute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: mute<br>Deprecated version: N/A|Method or attribute name: mute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isMute<br>Deprecated version: N/A|Method or attribute name: isMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isMute<br>Deprecated version: N/A|Method or attribute name: isMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isActive<br>Deprecated version: N/A|Method or attribute name: isActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isActive<br>Deprecated version: N/A|Method or attribute name: isActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setMicrophoneMute<br>Deprecated version: N/A|Method or attribute name: setMicrophoneMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setMicrophoneMute<br>Deprecated version: N/A|Method or attribute name: setMicrophoneMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isMicrophoneMute<br>Deprecated version: N/A|Method or attribute name: isMicrophoneMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isMicrophoneMute<br>Deprecated version: N/A|Method or attribute name: isMicrophoneMute<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setRingerMode<br>Deprecated version: N/A|Method or attribute name: setRingerMode<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setRingerMode<br>Deprecated version: N/A|Method or attribute name: setRingerMode<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getRingerMode<br>Deprecated version: N/A|Method or attribute name: getRingerMode<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: getRingerMode<br>Deprecated version: N/A|Method or attribute name: getRingerMode<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setDeviceActive<br>Deprecated version: N/A|Method or attribute name: setDeviceActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: setDeviceActive<br>Deprecated version: N/A|Method or attribute name: setDeviceActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isDeviceActive<br>Deprecated version: N/A|Method or attribute name: isDeviceActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: isDeviceActive<br>Deprecated version: N/A|Method or attribute name: isDeviceActive<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: on_volumeChange<br>Deprecated version: N/A|Method or attribute name: on_volumeChange<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: on_ringerModeChange<br>Deprecated version: N/A|Method or attribute name: on_ringerModeChange<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: on_deviceChange<br>Deprecated version: N/A|Method or attribute name: on_deviceChange<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: off_deviceChange<br>Deprecated version: N/A|Method or attribute name: off_deviceChange<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Class name: InterruptAction<br>Deprecated version: N/A|Class name: InterruptAction<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: actionType<br>Deprecated version: N/A|Method or attribute name: actionType<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: type<br>Deprecated version: N/A|Method or attribute name: type<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: hint<br>Deprecated version: N/A|Method or attribute name: hint<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: activated<br>Deprecated version: N/A|Method or attribute name: activated<br>Deprecated version: 9<br>New API: ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Class name: AudioInterrupt<br>Deprecated version: N/A|Class name: AudioInterrupt<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: streamUsage<br>Deprecated version: N/A|Method or attribute name: streamUsage<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: contentType<br>Deprecated version: N/A|Method or attribute name: contentType<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Method or attribute name: pauseWhenDucked<br>Deprecated version: N/A|Method or attribute name: pauseWhenDucked<br>Deprecated version: 9|@ohos.multimedia.audio.d.ts|
|Deprecated version changed|Class name: mediaLibrary<br>Deprecated version: 9|Class name: mediaLibrary<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getMediaLibrary<br>Deprecated version: 9|Method or attribute name: getMediaLibrary<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getMediaLibrary<br>Deprecated version: 9|Method or attribute name: getMediaLibrary<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: MediaType<br>Deprecated version: 9|Class name: MediaType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: FILE<br>Deprecated version: 9|Method or attribute name: FILE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: IMAGE<br>Deprecated version: 9|Method or attribute name: IMAGE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: VIDEO<br>Deprecated version: 9|Method or attribute name: VIDEO<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: AUDIO<br>Deprecated version: 9|Method or attribute name: AUDIO<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: FileAsset<br>Deprecated version: 9|Class name: FileAsset<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: id<br>Deprecated version: 9|Method or attribute name: id<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: uri<br>Deprecated version: 9|Method or attribute name: uri<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: mimeType<br>Deprecated version: 9|Method or attribute name: mimeType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: mediaType<br>Deprecated version: 9|Method or attribute name: mediaType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: displayName<br>Deprecated version: 9|Method or attribute name: displayName<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: title<br>Deprecated version: 9|Method or attribute name: title<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: relativePath<br>Deprecated version: 9|Method or attribute name: relativePath<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: parent<br>Deprecated version: 9|Method or attribute name: parent<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: size<br>Deprecated version: 9|Method or attribute name: size<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: dateAdded<br>Deprecated version: 9|Method or attribute name: dateAdded<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: dateModified<br>Deprecated version: 9|Method or attribute name: dateModified<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: dateTaken<br>Deprecated version: 9|Method or attribute name: dateTaken<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: artist<br>Deprecated version: 9|Method or attribute name: artist<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: audioAlbum<br>Deprecated version: 9|Method or attribute name: audioAlbum<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: width<br>Deprecated version: 9|Method or attribute name: width<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: height<br>Deprecated version: 9|Method or attribute name: height<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: orientation<br>Deprecated version: 9|Method or attribute name: orientation<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: duration<br>Deprecated version: 9|Method or attribute name: duration<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumId<br>Deprecated version: 9|Method or attribute name: albumId<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumUri<br>Deprecated version: 9|Method or attribute name: albumUri<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumName<br>Deprecated version: 9|Method or attribute name: albumName<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isDirectory<br>Deprecated version: 9|Method or attribute name: isDirectory<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isDirectory<br>Deprecated version: 9|Method or attribute name: isDirectory<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: commitModify<br>Deprecated version: 9|Method or attribute name: commitModify<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: commitModify<br>Deprecated version: 9|Method or attribute name: commitModify<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: 9|Method or attribute name: open<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: open<br>Deprecated version: 9|Method or attribute name: open<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: close<br>Deprecated version: 9|Method or attribute name: close<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: close<br>Deprecated version: 9|Method or attribute name: close<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getThumbnail<br>Deprecated version: 9|Method or attribute name: getThumbnail<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getThumbnail<br>Deprecated version: 9|Method or attribute name: getThumbnail<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getThumbnail<br>Deprecated version: 9|Method or attribute name: getThumbnail<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: favorite<br>Deprecated version: 9|Method or attribute name: favorite<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: favorite<br>Deprecated version: 9|Method or attribute name: favorite<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isFavorite<br>Deprecated version: 9|Method or attribute name: isFavorite<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isFavorite<br>Deprecated version: 9|Method or attribute name: isFavorite<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: trash<br>Deprecated version: 9|Method or attribute name: trash<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: trash<br>Deprecated version: 9|Method or attribute name: trash<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isTrash<br>Deprecated version: 9|Method or attribute name: isTrash<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isTrash<br>Deprecated version: 9|Method or attribute name: isTrash<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: FileKey<br>Deprecated version: 9|Class name: FileKey<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: ID<br>Deprecated version: 9|Method or attribute name: ID<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: RELATIVE_PATH<br>Deprecated version: 9|Method or attribute name: RELATIVE_PATH<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DISPLAY_NAME<br>Deprecated version: 9|Method or attribute name: DISPLAY_NAME<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: PARENT<br>Deprecated version: 9|Method or attribute name: PARENT<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: MIME_TYPE<br>Deprecated version: 9|Method or attribute name: MIME_TYPE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: MEDIA_TYPE<br>Deprecated version: 9|Method or attribute name: MEDIA_TYPE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: SIZE<br>Deprecated version: 9|Method or attribute name: SIZE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DATE_ADDED<br>Deprecated version: 9|Method or attribute name: DATE_ADDED<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DATE_MODIFIED<br>Deprecated version: 9|Method or attribute name: DATE_MODIFIED<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DATE_TAKEN<br>Deprecated version: 9|Method or attribute name: DATE_TAKEN<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TITLE<br>Deprecated version: 9|Method or attribute name: TITLE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: ARTIST<br>Deprecated version: 9|Method or attribute name: ARTIST<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: AUDIOALBUM<br>Deprecated version: 9|Method or attribute name: AUDIOALBUM<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DURATION<br>Deprecated version: 9|Method or attribute name: DURATION<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: WIDTH<br>Deprecated version: 9|Method or attribute name: WIDTH<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: HEIGHT<br>Deprecated version: 9|Method or attribute name: HEIGHT<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: ORIENTATION<br>Deprecated version: 9|Method or attribute name: ORIENTATION<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: ALBUM_ID<br>Deprecated version: 9|Method or attribute name: ALBUM_ID<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: ALBUM_NAME<br>Deprecated version: 9|Method or attribute name: ALBUM_NAME<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: MediaFetchOptions<br>Deprecated version: 9|Class name: MediaFetchOptions<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: selections<br>Deprecated version: 9|Method or attribute name: selections<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: selectionArgs<br>Deprecated version: 9|Method or attribute name: selectionArgs<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: order<br>Deprecated version: 9|Method or attribute name: order<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: uri<br>Deprecated version: 9|Method or attribute name: uri<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: networkId<br>Deprecated version: 9|Method or attribute name: networkId<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: extendArgs<br>Deprecated version: 9|Method or attribute name: extendArgs<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: FetchFileResult<br>Deprecated version: 9|Class name: FetchFileResult<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getCount<br>Deprecated version: 9|Method or attribute name: getCount<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isAfterLast<br>Deprecated version: 9|Method or attribute name: isAfterLast<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: close<br>Deprecated version: 9|Method or attribute name: close<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFirstObject<br>Deprecated version: 9|Method or attribute name: getFirstObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFirstObject<br>Deprecated version: 9|Method or attribute name: getFirstObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getNextObject<br>Deprecated version: 9|Method or attribute name: getNextObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getNextObject<br>Deprecated version: 9|Method or attribute name: getNextObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getLastObject<br>Deprecated version: 9|Method or attribute name: getLastObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getLastObject<br>Deprecated version: 9|Method or attribute name: getLastObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getPositionObject<br>Deprecated version: 9|Method or attribute name: getPositionObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getPositionObject<br>Deprecated version: 9|Method or attribute name: getPositionObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAllObject<br>Deprecated version: 9|Method or attribute name: getAllObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAllObject<br>Deprecated version: 9|Method or attribute name: getAllObject<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: Album<br>Deprecated version: 9|Class name: Album<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumId<br>Deprecated version: 9|Method or attribute name: albumId<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumName<br>Deprecated version: 9|Method or attribute name: albumName<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: albumUri<br>Deprecated version: 9|Method or attribute name: albumUri<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: dateModified<br>Deprecated version: 9|Method or attribute name: dateModified<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: count<br>Deprecated version: 9|Method or attribute name: count<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: relativePath<br>Deprecated version: 9|Method or attribute name: relativePath<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: coverUri<br>Deprecated version: 9|Method or attribute name: coverUri<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: commitModify<br>Deprecated version: 9|Method or attribute name: commitModify<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: commitModify<br>Deprecated version: 9|Method or attribute name: commitModify<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFileAssets<br>Deprecated version: 9|Method or attribute name: getFileAssets<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFileAssets<br>Deprecated version: 9|Method or attribute name: getFileAssets<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFileAssets<br>Deprecated version: 9|Method or attribute name: getFileAssets<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: DirectoryType<br>Deprecated version: 9|Class name: DirectoryType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_CAMERA<br>Deprecated version: 9|Method or attribute name: DIR_CAMERA<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_VIDEO<br>Deprecated version: 9|Method or attribute name: DIR_VIDEO<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_IMAGE<br>Deprecated version: 9|Method or attribute name: DIR_IMAGE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_AUDIO<br>Deprecated version: 9|Method or attribute name: DIR_AUDIO<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_DOCUMENTS<br>Deprecated version: 9|Method or attribute name: DIR_DOCUMENTS<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: DIR_DOWNLOAD<br>Deprecated version: 9|Method or attribute name: DIR_DOWNLOAD<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: MediaLibrary<br>Deprecated version: 9|Class name: MediaLibrary<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getPublicDirectory<br>Deprecated version: 9|Method or attribute name: getPublicDirectory<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getPublicDirectory<br>Deprecated version: 9|Method or attribute name: getPublicDirectory<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFileAssets<br>Deprecated version: 9|Method or attribute name: getFileAssets<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getFileAssets<br>Deprecated version: 9|Method or attribute name: getFileAssets<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_deviceChange<br>Deprecated version: 9|Method or attribute name: on_deviceChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_albumChange<br>Deprecated version: 9|Method or attribute name: on_albumChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_imageChange<br>Deprecated version: 9|Method or attribute name: on_imageChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_audioChange<br>Deprecated version: 9|Method or attribute name: on_audioChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_videoChange<br>Deprecated version: 9|Method or attribute name: on_videoChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_fileChange<br>Deprecated version: 9|Method or attribute name: on_fileChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: on_remoteFileChange<br>Deprecated version: 9|Method or attribute name: on_remoteFileChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_deviceChange<br>Deprecated version: 9|Method or attribute name: off_deviceChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_albumChange<br>Deprecated version: 9|Method or attribute name: off_albumChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_imageChange<br>Deprecated version: 9|Method or attribute name: off_imageChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_audioChange<br>Deprecated version: 9|Method or attribute name: off_audioChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_videoChange<br>Deprecated version: 9|Method or attribute name: off_videoChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_fileChange<br>Deprecated version: 9|Method or attribute name: off_fileChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: off_remoteFileChange<br>Deprecated version: 9|Method or attribute name: off_remoteFileChange<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: createAsset<br>Deprecated version: 9|Method or attribute name: createAsset<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: createAsset<br>Deprecated version: 9|Method or attribute name: createAsset<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: deleteAsset<br>Deprecated version: 9|Method or attribute name: deleteAsset<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: deleteAsset<br>Deprecated version: 9|Method or attribute name: deleteAsset<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAlbums<br>Deprecated version: 9|Method or attribute name: getAlbums<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAlbums<br>Deprecated version: 9|Method or attribute name: getAlbums<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getActivePeers<br>Deprecated version: 9|Method or attribute name: getActivePeers<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getActivePeers<br>Deprecated version: 9|Method or attribute name: getActivePeers<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAllPeers<br>Deprecated version: 9|Method or attribute name: getAllPeers<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: getAllPeers<br>Deprecated version: 9|Method or attribute name: getAllPeers<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: release<br>Deprecated version: 9|Method or attribute name: release<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: release<br>Deprecated version: 9|Method or attribute name: release<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: Size<br>Deprecated version: 9|Class name: Size<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: width<br>Deprecated version: 9|Method or attribute name: width<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: height<br>Deprecated version: 9|Method or attribute name: height<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: PeerInfo<br>Deprecated version: 9|Class name: PeerInfo<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: deviceName<br>Deprecated version: 9|Method or attribute name: deviceName<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: networkId<br>Deprecated version: 9|Method or attribute name: networkId<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: deviceType<br>Deprecated version: 9|Method or attribute name: deviceType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: isOnline<br>Deprecated version: 9|Method or attribute name: isOnline<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Class name: DeviceType<br>Deprecated version: 9|Class name: DeviceType<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_UNKNOWN<br>Deprecated version: 9|Method or attribute name: TYPE_UNKNOWN<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_LAPTOP<br>Deprecated version: 9|Method or attribute name: TYPE_LAPTOP<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_PHONE<br>Deprecated version: 9|Method or attribute name: TYPE_PHONE<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_TABLET<br>Deprecated version: 9|Method or attribute name: TYPE_TABLET<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_WATCH<br>Deprecated version: 9|Method or attribute name: TYPE_WATCH<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_CAR<br>Deprecated version: 9|Method or attribute name: TYPE_CAR<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_TV<br>Deprecated version: 9|Method or attribute name: TYPE_TV<br>Deprecated version: N/A|@ohos.multimedia.mediaLibrary.d.ts|
|Error code added||Method or attribute name: on_deviceChange<br>Error code: 401, 6800101|@ohos.multimedia.audio.d.ts|
|Error code added||Method or attribute name: off_deviceChange<br>Error code: 401, 6800101|@ohos.multimedia.audio.d.ts|
|Error code added||Method or attribute name: on_audioRendererChange<br>Error code: 401, 6800101|@ohos.multimedia.audio.d.ts|
|Error code added||Method or attribute name: on_audioCapturerChange<br>Error code: 401, 6800101|@ohos.multimedia.audio.d.ts|
|Error code added||Method or attribute name: createVideoRecorder<br>Error code: 5400101|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: createVideoRecorder<br>Error code: 5400101|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: prepare<br>Error code: 201, 401, 5400102, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: prepare<br>Error code: 201, 401, 5400102, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: getInputSurface<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: getInputSurface<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: start<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: start<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: pause<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: pause<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: resume<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: resume<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: stop<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: stop<br>Error code: 5400102, 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: release<br>Error code: 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: release<br>Error code: 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: reset<br>Error code: 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: reset<br>Error code: 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Error code added||Method or attribute name: on_error<br>Error code: 5400103, 5400105|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: createVideoRecorder<br>Access level: public API|Method or attribute name: createVideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: createVideoRecorder<br>Access level: public API|Method or attribute name: createVideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorder<br>Access level: public API|Class name: VideoRecorder<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: prepare<br>Access level: public API|Method or attribute name: prepare<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: prepare<br>Access level: public API|Method or attribute name: prepare<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: getInputSurface<br>Access level: public API|Method or attribute name: getInputSurface<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: getInputSurface<br>Access level: public API|Method or attribute name: getInputSurface<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: start<br>Access level: public API|Method or attribute name: start<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: start<br>Access level: public API|Method or attribute name: start<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: pause<br>Access level: public API|Method or attribute name: pause<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: pause<br>Access level: public API|Method or attribute name: pause<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: resume<br>Access level: public API|Method or attribute name: resume<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: resume<br>Access level: public API|Method or attribute name: resume<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: stop<br>Access level: public API|Method or attribute name: stop<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: stop<br>Access level: public API|Method or attribute name: stop<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: release<br>Access level: public API|Method or attribute name: release<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: release<br>Access level: public API|Method or attribute name: release<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: reset<br>Access level: public API|Method or attribute name: reset<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: reset<br>Access level: public API|Method or attribute name: reset<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: on_error<br>Access level: public API|Method or attribute name: on_error<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: state<br>Access level: public API|Method or attribute name: state<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorderProfile<br>Access level: public API|Class name: VideoRecorderProfile<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioBitrate<br>Access level: public API|Method or attribute name: audioBitrate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioChannels<br>Access level: public API|Method or attribute name: audioChannels<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioCodec<br>Access level: public API|Method or attribute name: audioCodec<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: audioSampleRate<br>Access level: public API|Method or attribute name: audioSampleRate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: fileFormat<br>Access level: public API|Method or attribute name: fileFormat<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoBitrate<br>Access level: public API|Method or attribute name: videoBitrate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoCodec<br>Access level: public API|Method or attribute name: videoCodec<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameWidth<br>Access level: public API|Method or attribute name: videoFrameWidth<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameHeight<br>Access level: public API|Method or attribute name: videoFrameHeight<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoFrameRate<br>Access level: public API|Method or attribute name: videoFrameRate<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: AudioSourceType<br>Access level: public API|Class name: AudioSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: AUDIO_SOURCE_TYPE_DEFAULT<br>Access level: public API|Method or attribute name: AUDIO_SOURCE_TYPE_DEFAULT<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: AUDIO_SOURCE_TYPE_MIC<br>Access level: public API|Method or attribute name: AUDIO_SOURCE_TYPE_MIC<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoSourceType<br>Access level: public API|Class name: VideoSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_YUV<br>Access level: public API|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_YUV<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_ES<br>Access level: public API|Method or attribute name: VIDEO_SOURCE_TYPE_SURFACE_ES<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Class name: VideoRecorderConfig<br>Access level: public API|Class name: VideoRecorderConfig<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: videoSourceType<br>Access level: public API|Method or attribute name: videoSourceType<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: profile<br>Access level: public API|Method or attribute name: profile<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: url<br>Access level: public API|Method or attribute name: url<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: rotation<br>Access level: public API|Method or attribute name: rotation<br>Access level: system API|@ohos.multimedia.media.d.ts|
|Access level changed|Method or attribute name: location<br>Access level: public API|Method or attribute name: location<br>Access level: system API|@ohos.multimedia.media.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: publish|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: publish|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: publishAsUser|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: publishAsUser|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: createSubscriber|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: createSubscriber|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: subscribe|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: commonEventManager<br>Method or attribute name: unsubscribe|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BOOT_COMPLETED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_LOCKED_BOOT_COMPLETED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SHUTDOWN|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BATTERY_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BATTERY_LOW|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BATTERY_OKAY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_POWER_CONNECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_POWER_DISCONNECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SCREEN_OFF|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SCREEN_ON|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_THERMAL_LEVEL_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_PRESENT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_TIME_TICK|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_TIME_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_TIMEZONE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_CLOSE_SYSTEM_DIALOGS|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_ADDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_REPLACED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_MY_PACKAGE_REPLACED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BUNDLE_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_FULLY_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_RESTARTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_DATA_CLEARED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_CACHE_CLEARED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGES_SUSPENDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGES_UNSUSPENDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_MY_PACKAGE_SUSPENDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_MY_PACKAGE_UNSUSPENDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_UID_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_FIRST_LAUNCH|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_PACKAGE_VERIFIED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_CONFIGURATION_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_LOCALE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_MANAGE_PACKAGE_STORAGE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DRIVE_MODE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_HOME_MODE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_OFFICE_MODE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_STARTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_BACKGROUND|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_FOREGROUND|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_SWITCHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_STARTING|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_UNLOCKED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_STOPPING|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_STOPPED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGIN|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOUT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISTRIBUTED_ACCOUNT_TOKEN_INVALID|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOFF|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_POWER_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_SCAN_FINISHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_RSSI_VALUE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_CONN_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_HOTSPOT_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_AP_STA_JOIN|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_AP_STA_LEAVE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_CONN_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISCHARGING|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_CHARGING|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_POWER_SAVE_MODE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_ADDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USER_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_ABILITY_ADDED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_ABILITY_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_ABILITY_UPDATED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_LOCATION_MODE_STATE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_SLEEP|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_PAUSE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_STANDBY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_LASTMODE_SAVE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_VOLTAGE_ABNORMAL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_HIGH_TEMPERATURE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_EXTREME_TEMPERATURE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_VOLTAGE_RECOVERY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_TEMPERATURE_RECOVERY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_IVI_ACTIVE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_STATE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_PORT_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_DEVICE_ATTACHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_DEVICE_DETACHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_ACCESSORY_ATTACHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_USB_ACCESSORY_DETACHED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_UNMOUNTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_MOUNTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_BAD_REMOVAL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_UNMOUNTABLE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_DISK_EJECT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VOLUME_REMOVED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VOLUME_UNMOUNTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VOLUME_MOUNTED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VOLUME_BAD_REMOVAL|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VOLUME_EJECT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_ACCOUNT_DELETED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_FOUNDATION_READY|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_AIRPLANE_MODE_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SPLIT_SCREEN|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SLOT_CHANGE|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_SPN_INFO_CHANGED|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.commonEventManager<br>Class name: Support<br>Method or attribute name: COMMON_EVENT_QUICK_FIX_APPLY_RESULT|@ohos.commonEventManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publish|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publish|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publish|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publish|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publishAsBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: publishAsBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancel|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancel|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancel|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelAsBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelAsBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelAll|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelAll|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: addSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeAllSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeAllSlots|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setNotificationEnable|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setNotificationEnable|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: displayBadge|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: displayBadge|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isBadgeDisplayed|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isBadgeDisplayed|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setSlotByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setSlotByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlotsByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlotsByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlotNumByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSlotNumByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getAllActiveNotifications|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getAllActiveNotifications|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getActiveNotificationCount|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getActiveNotificationCount|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getActiveNotifications|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getActiveNotifications|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelGroup|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: cancelGroup|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeGroupByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: removeGroupByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: supportDoNotDisturbMode|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: supportDoNotDisturbMode|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isSupportTemplate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isSupportTemplate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: requestEnableNotification|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: requestEnableNotification|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDistributedEnable|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDistributedEnable|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isDistributedEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isDistributedEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDistributedEnableByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setDistributedEnableByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isDistributedEnabledByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isDistributedEnabledByBundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDeviceRemindType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getDeviceRemindType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setNotificationEnableSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setNotificationEnableSlot|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationSlotEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: isNotificationSlotEnabled|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: setSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: notificationManager<br>Method or attribute name: getSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType<br>Method or attribute name: UNKNOWN_TYPE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType<br>Method or attribute name: SOCIAL_COMMUNICATION|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType<br>Method or attribute name: SERVICE_INFORMATION|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType<br>Method or attribute name: CONTENT_INFORMATION|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotType<br>Method or attribute name: OTHER_TYPES|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType<br>Method or attribute name: NOTIFICATION_CONTENT_BASIC_TEXT|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType<br>Method or attribute name: NOTIFICATION_CONTENT_LONG_TEXT|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType<br>Method or attribute name: NOTIFICATION_CONTENT_PICTURE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType<br>Method or attribute name: NOTIFICATION_CONTENT_CONVERSATION|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: ContentType<br>Method or attribute name: NOTIFICATION_CONTENT_MULTILINE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel<br>Method or attribute name: LEVEL_NONE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel<br>Method or attribute name: LEVEL_MIN|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel<br>Method or attribute name: LEVEL_LOW|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel<br>Method or attribute name: LEVEL_DEFAULT|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SlotLevel<br>Method or attribute name: LEVEL_HIGH|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: BundleOption|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: BundleOption<br>Method or attribute name: bundle|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: BundleOption<br>Method or attribute name: uid|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbType<br>Method or attribute name: TYPE_NONE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbType<br>Method or attribute name: TYPE_ONCE|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbType<br>Method or attribute name: TYPE_DAILY|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbType<br>Method or attribute name: TYPE_CLEARLY|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbDate|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbDate<br>Method or attribute name: type|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbDate<br>Method or attribute name: begin|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DoNotDisturbDate<br>Method or attribute name: end|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DeviceRemindType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DeviceRemindType<br>Method or attribute name: IDLE_DONOT_REMIND|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DeviceRemindType<br>Method or attribute name: IDLE_REMIND|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DeviceRemindType<br>Method or attribute name: ACTIVE_DONOT_REMIND|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: DeviceRemindType<br>Method or attribute name: ACTIVE_REMIND|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SourceType|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SourceType<br>Method or attribute name: TYPE_NORMAL|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SourceType<br>Method or attribute name: TYPE_CONTINUOUS|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationManager<br>Class name: SourceType<br>Method or attribute name: TYPE_TIMER|@ohos.notificationManager.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: BundleOption|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: BundleOption<br>Method or attribute name: bundle|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: BundleOption<br>Method or attribute name: uid|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: NotificationKey|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: NotificationKey<br>Method or attribute name: id|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: NotificationKey<br>Method or attribute name: label|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: RemoveReason|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: RemoveReason<br>Method or attribute name: CLICK_REASON_REMOVE|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: RemoveReason<br>Method or attribute name: CANCEL_REASON_REMOVE|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: subscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: subscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: subscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: unsubscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: unsubscribe|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: remove|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: remove|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: remove|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: remove|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: removeAll|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: removeAll|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: removeAll|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: removeAll|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.notificationSubscribe<br>Class name: notificationSubscribe<br>Method or attribute name: removeAll|@ohos.notificationSubscribe.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: publishReminder|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: publishReminder|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: cancelReminder|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: cancelReminder|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: getValidReminders|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: getValidReminders|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: cancelAllReminders|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: cancelAllReminders|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: addNotificationSlot|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: addNotificationSlot|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: removeNotificationSlot|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: reminderAgentManager<br>Method or attribute name: removeNotificationSlot|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButtonType|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButtonType<br>Method or attribute name: ACTION_BUTTON_TYPE_CLOSE|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButtonType<br>Method or attribute name: ACTION_BUTTON_TYPE_SNOOZE|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderType|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderType<br>Method or attribute name: REMINDER_TYPE_TIMER|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderType<br>Method or attribute name: REMINDER_TYPE_CALENDAR|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderType<br>Method or attribute name: REMINDER_TYPE_ALARM|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButton|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButton<br>Method or attribute name: title|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ActionButton<br>Method or attribute name: type|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: WantAgent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: WantAgent<br>Method or attribute name: pkgName|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: WantAgent<br>Method or attribute name: abilityName|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: MaxScreenWantAgent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: MaxScreenWantAgent<br>Method or attribute name: pkgName|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: MaxScreenWantAgent<br>Method or attribute name: abilityName|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: reminderType|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: actionButton|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: wantAgent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: maxScreenWantAgent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: ringDuration|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: snoozeTimes|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: timeInterval|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: title|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: content|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: expiredContent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: snoozeContent|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: notificationId|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequest<br>Method or attribute name: slotType|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestCalendar|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestCalendar<br>Method or attribute name: dateTime|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestCalendar<br>Method or attribute name: repeatMonths|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestCalendar<br>Method or attribute name: repeatDays|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestAlarm|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestAlarm<br>Method or attribute name: hour|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestAlarm<br>Method or attribute name: minute|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestAlarm<br>Method or attribute name: daysOfWeek|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestTimer|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: ReminderRequestTimer<br>Method or attribute name: triggerTimeInSeconds|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: year|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: month|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: day|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: hour|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: minute|@ohos.reminderAgentManager.d.ts|
|Added||Module name: ohos.reminderAgentManager<br>Class name: LocalDateTime<br>Method or attribute name: second|@ohos.reminderAgentManager.d.ts|
|Deprecated version changed|Class name: commonEvent<br>Deprecated version: N/A|Class name: commonEvent<br>Deprecated version: 9<br>New API: ohos.commonEventManager |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9<br>New API: ohos.commonEventManager.publish |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9<br>New API: ohos.commonEventManager.publish |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: publishAsUser<br>Deprecated version: N/A|Method or attribute name: publishAsUser<br>Deprecated version: 9<br>New API: ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: publishAsUser<br>Deprecated version: N/A|Method or attribute name: publishAsUser<br>Deprecated version: 9<br>New API: ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: createSubscriber<br>Deprecated version: N/A|Method or attribute name: createSubscriber<br>Deprecated version: 9<br>New API: ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: createSubscriber<br>Deprecated version: N/A|Method or attribute name: createSubscriber<br>Deprecated version: 9<br>New API: ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: subscribe<br>Deprecated version: N/A|Method or attribute name: subscribe<br>Deprecated version: 9<br>New API: ohos.commonEventManager.subscribe |@ohos.commonEvent.d.ts|
|Deprecated version changed|Method or attribute name: unsubscribe<br>Deprecated version: N/A|Method or attribute name: unsubscribe<br>Deprecated version: 9<br>New API: ohos.commonEventManager.unsubscribe |@ohos.commonEvent.d.ts|
|Deprecated version changed|Class name: Support<br>Deprecated version: N/A|Class name: Support<br>Deprecated version: 9<br>New API: ohos.commonEventManager.Support |@ohos.commonEvent.d.ts|
|Deprecated version changed|Class name: notification<br>Deprecated version: N/A|Class name: notification<br>Deprecated version: 9<br>New API: ohos.notificationManager and ohos.notificationSubscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9<br>New API: ohos.notificationManager.publish |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9<br>New API: ohos.notificationManager.publish |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publish<br>Deprecated version: N/A|Method or attribute name: publish<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publishAsBundle<br>Deprecated version: N/A|Method or attribute name: publishAsBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.publishAsBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: publishAsBundle<br>Deprecated version: N/A|Method or attribute name: publishAsBundle<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancel<br>Deprecated version: N/A|Method or attribute name: cancel<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancel |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancel<br>Deprecated version: N/A|Method or attribute name: cancel<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancel |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancel<br>Deprecated version: N/A|Method or attribute name: cancel<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelAsBundle<br>Deprecated version: N/A|Method or attribute name: cancelAsBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancelAsBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelAsBundle<br>Deprecated version: N/A|Method or attribute name: cancelAsBundle<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelAll<br>Deprecated version: N/A|Method or attribute name: cancelAll<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancelAll |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelAll<br>Deprecated version: N/A|Method or attribute name: cancelAll<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlot<br>Deprecated version: N/A|Method or attribute name: addSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.addSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlot<br>Deprecated version: N/A|Method or attribute name: addSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.addSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlot<br>Deprecated version: N/A|Method or attribute name: addSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.addSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlot<br>Deprecated version: N/A|Method or attribute name: addSlot<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlots<br>Deprecated version: N/A|Method or attribute name: addSlots<br>Deprecated version: 9<br>New API: ohos.notificationManager.addSlots |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: addSlots<br>Deprecated version: N/A|Method or attribute name: addSlots<br>Deprecated version: 9<br>New API: ohos.notificationManager.addSlots |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlot<br>Deprecated version: N/A|Method or attribute name: getSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlot<br>Deprecated version: N/A|Method or attribute name: getSlot<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlots<br>Deprecated version: N/A|Method or attribute name: getSlots<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlots |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlots<br>Deprecated version: N/A|Method or attribute name: getSlots<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeSlot<br>Deprecated version: N/A|Method or attribute name: removeSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.removeSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeSlot<br>Deprecated version: N/A|Method or attribute name: removeSlot<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAllSlots<br>Deprecated version: N/A|Method or attribute name: removeAllSlots<br>Deprecated version: 9<br>New API: ohos.notificationManager.removeAllSlots |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAllSlots<br>Deprecated version: N/A|Method or attribute name: removeAllSlots<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Class name: SlotType<br>Deprecated version: N/A|Class name: SlotType<br>Deprecated version: 9<br>New API: ohos.notificationManager.SlotType |@ohos.notification.d.ts|
|Deprecated version changed|Class name: ContentType<br>Deprecated version: N/A|Class name: ContentType<br>Deprecated version: 9<br>New API: ohos.notificationManager.ContentType |@ohos.notification.d.ts|
|Deprecated version changed|Class name: SlotLevel<br>Deprecated version: N/A|Class name: SlotLevel<br>Deprecated version: 9<br>New API: ohos.notificationManager.SlotLevel |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: subscribe<br>Deprecated version: N/A|Method or attribute name: subscribe<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: subscribe<br>Deprecated version: N/A|Method or attribute name: subscribe<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: subscribe<br>Deprecated version: N/A|Method or attribute name: subscribe<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: unsubscribe<br>Deprecated version: N/A|Method or attribute name: unsubscribe<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: unsubscribe<br>Deprecated version: N/A|Method or attribute name: unsubscribe<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableNotification<br>Deprecated version: N/A|Method or attribute name: enableNotification<br>Deprecated version: 9<br>New API: ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableNotification<br>Deprecated version: N/A|Method or attribute name: enableNotification<br>Deprecated version: 9<br>New API: ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationEnabled<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: displayBadge<br>Deprecated version: N/A|Method or attribute name: displayBadge<br>Deprecated version: 9<br>New API: ohos.notificationManager.displayBadge |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: displayBadge<br>Deprecated version: N/A|Method or attribute name: displayBadge<br>Deprecated version: 9<br>New API: ohos.notificationManager.displayBadge |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isBadgeDisplayed<br>Deprecated version: N/A|Method or attribute name: isBadgeDisplayed<br>Deprecated version: 9<br>New API: ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isBadgeDisplayed<br>Deprecated version: N/A|Method or attribute name: isBadgeDisplayed<br>Deprecated version: 9<br>New API: ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setSlotByBundle<br>Deprecated version: N/A|Method or attribute name: setSlotByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setSlotByBundle<br>Deprecated version: N/A|Method or attribute name: setSlotByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlotsByBundle<br>Deprecated version: N/A|Method or attribute name: getSlotsByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlotsByBundle<br>Deprecated version: N/A|Method or attribute name: getSlotsByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlotNumByBundle<br>Deprecated version: N/A|Method or attribute name: getSlotNumByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSlotNumByBundle<br>Deprecated version: N/A|Method or attribute name: getSlotNumByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.remove |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.remove |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.remove |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: remove<br>Deprecated version: N/A|Method or attribute name: remove<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.remove |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAll<br>Deprecated version: N/A|Method or attribute name: removeAll<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAll<br>Deprecated version: N/A|Method or attribute name: removeAll<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAll<br>Deprecated version: N/A|Method or attribute name: removeAll<br>Deprecated version: 9<br>New API: ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAll<br>Deprecated version: N/A|Method or attribute name: removeAll<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeAll<br>Deprecated version: N/A|Method or attribute name: removeAll<br>Deprecated version: 9<br>New API: notificationSubscribe.removeAll |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getAllActiveNotifications<br>Deprecated version: N/A|Method or attribute name: getAllActiveNotifications<br>Deprecated version: 9<br>New API: ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getAllActiveNotifications<br>Deprecated version: N/A|Method or attribute name: getAllActiveNotifications<br>Deprecated version: 9<br>New API: ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getActiveNotificationCount<br>Deprecated version: N/A|Method or attribute name: getActiveNotificationCount<br>Deprecated version: 9<br>New API: ohos.notificationManager.getActiveNotificationCount |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getActiveNotificationCount<br>Deprecated version: N/A|Method or attribute name: getActiveNotificationCount<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getActiveNotifications<br>Deprecated version: N/A|Method or attribute name: getActiveNotifications<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancelGroup |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getActiveNotifications<br>Deprecated version: N/A|Method or attribute name: getActiveNotifications<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelGroup<br>Deprecated version: N/A|Method or attribute name: cancelGroup<br>Deprecated version: 9<br>New API: ohos.notificationManager.cancelGroup |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: cancelGroup<br>Deprecated version: N/A|Method or attribute name: cancelGroup<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeGroupByBundle<br>Deprecated version: N/A|Method or attribute name: removeGroupByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.removeGroupByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: removeGroupByBundle<br>Deprecated version: N/A|Method or attribute name: removeGroupByBundle<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: 9<br>New API: ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: 9<br>New API: ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: setDoNotDisturbDate<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: 9<br>New API: ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: 9<br>New API: ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: N/A|Method or attribute name: getDoNotDisturbDate<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: supportDoNotDisturbMode<br>Deprecated version: N/A|Method or attribute name: supportDoNotDisturbMode<br>Deprecated version: 9<br>New API: ohos.notificationManager.supportDoNotDisturbMode |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: supportDoNotDisturbMode<br>Deprecated version: N/A|Method or attribute name: supportDoNotDisturbMode<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isSupportTemplate<br>Deprecated version: N/A|Method or attribute name: isSupportTemplate<br>Deprecated version: 9<br>New API: ohos.notificationManager.isSupportTemplate |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isSupportTemplate<br>Deprecated version: N/A|Method or attribute name: isSupportTemplate<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: requestEnableNotification<br>Deprecated version: N/A|Method or attribute name: requestEnableNotification<br>Deprecated version: 9<br>New API: ohos.notificationManager.requestEnableNotification |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: requestEnableNotification<br>Deprecated version: N/A|Method or attribute name: requestEnableNotification<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableDistributed<br>Deprecated version: N/A|Method or attribute name: enableDistributed<br>Deprecated version: 9<br>New API: ohos.notificationManager.setDistributedEnable |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableDistributed<br>Deprecated version: N/A|Method or attribute name: enableDistributed<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isDistributedEnabled<br>Deprecated version: N/A|Method or attribute name: isDistributedEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isDistributedEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isDistributedEnabled<br>Deprecated version: N/A|Method or attribute name: isDistributedEnabled<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableDistributedByBundle<br>Deprecated version: N/A|Method or attribute name: enableDistributedByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.setDistributedEnableByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableDistributedByBundle<br>Deprecated version: N/A|Method or attribute name: enableDistributedByBundle<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isDistributedEnabledByBundle<br>Deprecated version: N/A|Method or attribute name: isDistributedEnabledByBundle<br>Deprecated version: 9<br>New API: ohos.notificationManager.isDistributedEnabledByBundle |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isDistributedEnabledByBundle<br>Deprecated version: N/A|Method or attribute name: isDistributedEnabledByBundle<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceRemindType<br>Deprecated version: N/A|Method or attribute name: getDeviceRemindType<br>Deprecated version: 9<br>New API: ohos.notificationManager.getDeviceRemindType |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getDeviceRemindType<br>Deprecated version: N/A|Method or attribute name: getDeviceRemindType<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableNotificationSlot<br>Deprecated version: N/A|Method or attribute name: enableNotificationSlot<br>Deprecated version: 9<br>New API: ohos.notificationManager.setNotificationEnableSlot |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: enableNotificationSlot<br>Deprecated version: N/A|Method or attribute name: enableNotificationSlot<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationSlotEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationSlotEnabled<br>Deprecated version: 9<br>New API: ohos.notificationManager.isNotificationSlotEnabled |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: isNotificationSlotEnabled<br>Deprecated version: N/A|Method or attribute name: isNotificationSlotEnabled<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setSyncNotificationEnabledWithoutApp<br>Deprecated version: N/A|Method or attribute name: setSyncNotificationEnabledWithoutApp<br>Deprecated version: 9<br>New API: ohos.notificationManager.setSyncNotificationEnabledWithoutApp |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: setSyncNotificationEnabledWithoutApp<br>Deprecated version: N/A|Method or attribute name: setSyncNotificationEnabledWithoutApp<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSyncNotificationEnabledWithoutApp<br>Deprecated version: N/A|Method or attribute name: getSyncNotificationEnabledWithoutApp<br>Deprecated version: 9<br>New API: ohos.notificationManager.getSyncNotificationEnabledWithoutApp |@ohos.notification.d.ts|
|Deprecated version changed|Method or attribute name: getSyncNotificationEnabledWithoutApp<br>Deprecated version: N/A|Method or attribute name: getSyncNotificationEnabledWithoutApp<br>Deprecated version: 9|@ohos.notification.d.ts|
|Deprecated version changed|Class name: BundleOption<br>Deprecated version: N/A|Class name: BundleOption<br>Deprecated version: 9<br>New API: ohos.notificationManager.BundleOption |@ohos.notification.d.ts|
|Deprecated version changed|Class name: NotificationKey<br>Deprecated version: N/A|Class name: NotificationKey<br>Deprecated version: 9<br>New API: ohos.notificationManager.NotificationKey |@ohos.notification.d.ts|
|Deprecated version changed|Class name: DoNotDisturbType<br>Deprecated version: N/A|Class name: DoNotDisturbType<br>Deprecated version: 9<br>New API: ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts|
|Deprecated version changed|Class name: DoNotDisturbDate<br>Deprecated version: N/A|Class name: DoNotDisturbDate<br>Deprecated version: 9<br>New API: ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts|
|Deprecated version changed|Class name: DeviceRemindType<br>Deprecated version: N/A|Class name: DeviceRemindType<br>Deprecated version: 9<br>New API: ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts|
|Deprecated version changed|Class name: SourceType<br>Deprecated version: N/A|Class name: SourceType<br>Deprecated version: 9<br>New API: ohos.notificationManager.SourceType |@ohos.notification.d.ts|
|Deprecated version changed|Class name: RemoveReason<br>Deprecated version: N/A|Class name: RemoveReason<br>Deprecated version: 9<br>New API: ohos.notificationManager.RemoveReason |@ohos.notification.d.ts|
|Deprecated version changed|Class name: reminderAgent<br>Deprecated version: N/A|Class name: reminderAgent<br>Deprecated version: 9<br>New API: reminderAgentManager |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: publishReminder<br>Deprecated version: N/A|Method or attribute name: publishReminder<br>Deprecated version: 9<br>New API: reminderAgentManager.publishReminder |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: publishReminder<br>Deprecated version: N/A|Method or attribute name: publishReminder<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: cancelReminder<br>Deprecated version: N/A|Method or attribute name: cancelReminder<br>Deprecated version: 9<br>New API: reminderAgentManager.cancelReminder |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: cancelReminder<br>Deprecated version: N/A|Method or attribute name: cancelReminder<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: getValidReminders<br>Deprecated version: N/A|Method or attribute name: getValidReminders<br>Deprecated version: 9<br>New API: reminderAgentManager.getValidReminders |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: getValidReminders<br>Deprecated version: N/A|Method or attribute name: getValidReminders<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: cancelAllReminders<br>Deprecated version: N/A|Method or attribute name: cancelAllReminders<br>Deprecated version: 9<br>New API: reminderAgentManager.cancelAllReminders |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: cancelAllReminders<br>Deprecated version: N/A|Method or attribute name: cancelAllReminders<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: addNotificationSlot<br>Deprecated version: N/A|Method or attribute name: addNotificationSlot<br>Deprecated version: 9<br>New API: reminderAgentManager.addNotificationSlot |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: addNotificationSlot<br>Deprecated version: N/A|Method or attribute name: addNotificationSlot<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: removeNotificationSlot<br>Deprecated version: N/A|Method or attribute name: removeNotificationSlot<br>Deprecated version: 9<br>New API: reminderAgentManager.removeNotificationSlot |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: removeNotificationSlot<br>Deprecated version: N/A|Method or attribute name: removeNotificationSlot<br>Deprecated version: 9|@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ActionButtonType<br>Deprecated version: N/A|Class name: ActionButtonType<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButtonType |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: ACTION_BUTTON_TYPE_CLOSE<br>Deprecated version: N/A|Method or attribute name: ACTION_BUTTON_TYPE_CLOSE<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: ACTION_BUTTON_TYPE_SNOOZE<br>Deprecated version: N/A|Method or attribute name: ACTION_BUTTON_TYPE_SNOOZE<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_SNOOZE |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ReminderType<br>Deprecated version: N/A|Class name: ReminderType<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderType |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: REMINDER_TYPE_TIMER<br>Deprecated version: N/A|Method or attribute name: REMINDER_TYPE_TIMER<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderType.REMINDER_TYPE_TIMER |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: REMINDER_TYPE_CALENDAR<br>Deprecated version: N/A|Method or attribute name: REMINDER_TYPE_CALENDAR<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderType.REMINDER_TYPE_CALENDAR |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: REMINDER_TYPE_ALARM<br>Deprecated version: N/A|Method or attribute name: REMINDER_TYPE_ALARM<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderType.REMINDER_TYPE_ALARM |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ActionButton<br>Deprecated version: N/A|Class name: ActionButton<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButton |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: title<br>Deprecated version: N/A|Method or attribute name: title<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButton.title |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: type<br>Deprecated version: N/A|Method or attribute name: type<br>Deprecated version: 9<br>New API: reminderAgentManager.ActionButton.type |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: WantAgent<br>Deprecated version: N/A|Class name: WantAgent<br>Deprecated version: 9<br>New API: reminderAgentManager.WantAgent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: pkgName<br>Deprecated version: N/A|Method or attribute name: pkgName<br>Deprecated version: 9<br>New API: reminderAgentManager.WantAgent.pkgName |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: abilityName<br>Deprecated version: N/A|Method or attribute name: abilityName<br>Deprecated version: 9<br>New API: reminderAgentManager.WantAgent.abilityName |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: MaxScreenWantAgent<br>Deprecated version: N/A|Class name: MaxScreenWantAgent<br>Deprecated version: 9<br>New API: reminderAgentManager.MaxScreenWantAgent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: pkgName<br>Deprecated version: N/A|Method or attribute name: pkgName<br>Deprecated version: 9<br>New API: reminderAgentManager.MaxScreenWantAgent.pkgName |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: abilityName<br>Deprecated version: N/A|Method or attribute name: abilityName<br>Deprecated version: 9<br>New API: reminderAgentManager.MaxScreenWantAgent.abilityName |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ReminderRequest<br>Deprecated version: N/A|Class name: ReminderRequest<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: reminderType<br>Deprecated version: N/A|Method or attribute name: reminderType<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.reminderType |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: actionButton<br>Deprecated version: N/A|Method or attribute name: actionButton<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.actionButton |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: wantAgent<br>Deprecated version: N/A|Method or attribute name: wantAgent<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.wantAgent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: maxScreenWantAgent<br>Deprecated version: N/A|Method or attribute name: maxScreenWantAgent<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.maxScreenWantAgent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: ringDuration<br>Deprecated version: N/A|Method or attribute name: ringDuration<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.ringDuration |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: snoozeTimes<br>Deprecated version: N/A|Method or attribute name: snoozeTimes<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.snoozeTimes |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: timeInterval<br>Deprecated version: N/A|Method or attribute name: timeInterval<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.timeInterval |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: title<br>Deprecated version: N/A|Method or attribute name: title<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.title |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: content<br>Deprecated version: N/A|Method or attribute name: content<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.content |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: expiredContent<br>Deprecated version: N/A|Method or attribute name: expiredContent<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.expiredContent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: snoozeContent<br>Deprecated version: N/A|Method or attribute name: snoozeContent<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.snoozeContent |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: notificationId<br>Deprecated version: N/A|Method or attribute name: notificationId<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.notificationId |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: slotType<br>Deprecated version: N/A|Method or attribute name: slotType<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequest.slotType |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ReminderRequestCalendar<br>Deprecated version: N/A|Class name: ReminderRequestCalendar<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestCalendar |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: dateTime<br>Deprecated version: N/A|Method or attribute name: dateTime<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestCalendar.dateTime |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: repeatMonths<br>Deprecated version: N/A|Method or attribute name: repeatMonths<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestCalendar.repeatMonths |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: repeatDays<br>Deprecated version: N/A|Method or attribute name: repeatDays<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestCalendar.repeatDays |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ReminderRequestAlarm<br>Deprecated version: N/A|Class name: ReminderRequestAlarm<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestAlarm |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: hour<br>Deprecated version: N/A|Method or attribute name: hour<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestAlarm.hour |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: minute<br>Deprecated version: N/A|Method or attribute name: minute<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestAlarm.minute |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: daysOfWeek<br>Deprecated version: N/A|Method or attribute name: daysOfWeek<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestAlarm.daysOfWeek |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Class name: ReminderRequestTimer<br>Deprecated version: N/A|Class name: ReminderRequestTimer<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: year<br>Deprecated version: N/A|Method or attribute name: year<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.year |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: month<br>Deprecated version: N/A|Method or attribute name: month<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.month |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: day<br>Deprecated version: N/A|Method or attribute name: day<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.day |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: hour<br>Deprecated version: N/A|Method or attribute name: hour<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.hour |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: minute<br>Deprecated version: N/A|Method or attribute name: minute<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.minute |@ohos.reminderAgent.d.ts|
|Deprecated version changed|Method or attribute name: second<br>Deprecated version: N/A|Method or attribute name: second<br>Deprecated version: 9<br>New API: reminderAgentManager.ReminderRequestTimer.second |@ohos.reminderAgent.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: DelaySuspendInfo|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: DelaySuspendInfo<br>Method or attribute name: requestId|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: DelaySuspendInfo<br>Method or attribute name: actualDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: cancelSuspendDelay|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: getRemainingDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: getRemainingDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: requestSuspendDelay|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: startBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: startBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: stopBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: stopBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: applyEfficiencyResources|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: backgroundTaskManager<br>Method or attribute name: resetAllEfficiencyResources|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: DATA_TRANSFER|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: AUDIO_PLAYBACK|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: AUDIO_RECORDING|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: LOCATION|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: BLUETOOTH_INTERACTION|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: MULTI_DEVICE_CONNECTION|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: WIFI_INTERACTION|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: VOIP|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: BackgroundMode<br>Method or attribute name: TASK_KEEPING|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: CPU|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: COMMON_EVENT|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: TIMER|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: WORK_SCHEDULER|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: BLUETOOTH|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: GPS|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: ResourceType<br>Method or attribute name: AUDIO|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: resourceTypes|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: isApply|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: timeOut|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: isPersist|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: isProcess|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.backgroundTaskManager<br>Class name: EfficiencyResourcesRequest<br>Method or attribute name: reason|@ohos.resourceschedule.backgroundTaskManager.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: id|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: abilityInFgTotalTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: abilityPrevAccessTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: abilityPrevSeenTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: abilitySeenTotalTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: bundleName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: fgAbilityAccessTotalTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: fgAbilityPrevAccessTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: infosBeginTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsInfo<br>Method or attribute name: infosEndTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo<br>Method or attribute name: formName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo<br>Method or attribute name: formDimension|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo<br>Method or attribute name: formId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo<br>Method or attribute name: formLastUsedTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapFormInfo<br>Method or attribute name: count|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: deviceId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: bundleName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: moduleName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: abilityName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: appLabelId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: labelId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: descriptionId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: abilityLableId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: abilityDescriptionId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: abilityIconId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: launchedCount|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: lastModuleUsedTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: HapModuleInfo<br>Method or attribute name: formRecords|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: DeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: DeviceEventStats<br>Method or attribute name: name|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: DeviceEventStats<br>Method or attribute name: eventId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: DeviceEventStats<br>Method or attribute name: count|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: appGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: bundleName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: indexOfLink|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: nameOfClass|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: eventOccurredTime|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleEvents<br>Method or attribute name: eventId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo<br>Method or attribute name: appOldGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo<br>Method or attribute name: appNewGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo<br>Method or attribute name: userId|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo<br>Method or attribute name: changeReason|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: AppGroupCallbackInfo<br>Method or attribute name: bundleName|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: isIdleState|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: isIdleState|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsMap|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: BundleStatsMap<br>Method or attribute name: BundleStatsMap|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleStatsInfos|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleStatsInfos|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType<br>Method or attribute name: BY_OPTIMIZED|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType<br>Method or attribute name: BY_DAILY|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType<br>Method or attribute name: BY_WEEKLY|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType<br>Method or attribute name: BY_MONTHLY|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: IntervalType<br>Method or attribute name: BY_ANNUALLY|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleStatsInfoByInterval|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleStatsInfoByInterval|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryCurrentBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryCurrentBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: ALIVE_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: DAILY_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: FIXED_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: RARE_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: LIMITED_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: GroupType<br>Method or attribute name: NEVER_GROUP|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: setAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: setAppGroup|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: registerAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: registerAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: unregisterAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: unregisterAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryDeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryDeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryNotificationEventStats|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.usageStatistics<br>Class name: usageStatistics<br>Method or attribute name: queryNotificationEventStats|@ohos.resourceschedule.usageStatistics.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: workId|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: bundleName|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: abilityName|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: isPersisted|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: networkType|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: isCharging|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: chargerType|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: batteryLevel|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: batteryStatus|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: storageRequest|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: repeatCycleTime|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: isRepeat|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: repeatCount|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: isDeepIdle|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: idleWaitTime|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: WorkInfo<br>Method or attribute name: parameters|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: startWork|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: stopWork|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: getWorkStatus|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: getWorkStatus|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: obtainAllWorks|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: obtainAllWorks|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: stopAndClearWorks|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: isLastWorkTimeOut|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: workScheduler<br>Method or attribute name: isLastWorkTimeOut|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_ANY|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_MOBILE|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_WIFI|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_BLUETOOTH|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_WIFI_P2P|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: NetworkType<br>Method or attribute name: NETWORK_TYPE_ETHERNET|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: ChargingType|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: ChargingType<br>Method or attribute name: CHARGING_PLUGGED_ANY|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: ChargingType<br>Method or attribute name: CHARGING_PLUGGED_AC|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: ChargingType<br>Method or attribute name: CHARGING_PLUGGED_USB|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: ChargingType<br>Method or attribute name: CHARGING_PLUGGED_WIRELESS|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: BatteryStatus|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: BatteryStatus<br>Method or attribute name: BATTERY_STATUS_LOW|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: BatteryStatus<br>Method or attribute name: BATTERY_STATUS_OKAY|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: BatteryStatus<br>Method or attribute name: BATTERY_STATUS_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: StorageRequest|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: StorageRequest<br>Method or attribute name: STORAGE_LEVEL_LOW|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: StorageRequest<br>Method or attribute name: STORAGE_LEVEL_OKAY|@ohos.resourceschedule.workScheduler.d.ts|
|Added||Module name: ohos.resourceschedule.workScheduler<br>Class name: StorageRequest<br>Method or attribute name: STORAGE_LEVEL_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo<br>Method or attribute name: formName||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo<br>Method or attribute name: formDimension||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo<br>Method or attribute name: formId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo<br>Method or attribute name: formLastUsedTime||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveFormInfo<br>Method or attribute name: count||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: deviceId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: bundleName||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: moduleName||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: abilityName||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: appLabelId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: labelId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: descriptionId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: abilityLableId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: abilityDescriptionId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: abilityIconId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: launchedCount||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: lastModuleUsedTime||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveModuleInfo<br>Method or attribute name: formRecords||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveEventState||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveEventState<br>Method or attribute name: name||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveEventState<br>Method or attribute name: eventId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveEventState<br>Method or attribute name: count||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo<br>Method or attribute name: appUsageOldGroup||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo<br>Method or attribute name: appUsageNewGroup||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo<br>Method or attribute name: userId||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo<br>Method or attribute name: changeReason||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: BundleActiveGroupCallbackInfo<br>Method or attribute name: bundleName||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: getRecentlyUsedModules||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: getRecentlyUsedModules||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: getRecentlyUsedModules||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_ALIVE||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_DAILY||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_FIXED||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_RARE||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_LIMIT||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: GroupType<br>Method or attribute name: ACTIVE_GROUP_NEVER||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: setBundleGroup||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: setBundleGroup||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: registerGroupCallBack||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: registerGroupCallBack||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: unRegisterGroupCallBack||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: unRegisterGroupCallBack||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: queryBundleActiveEventStates||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: queryBundleActiveEventStates||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: queryAppNotificationNumber||@ohos.bundleState.d.ts|
|Deleted||Module name: ohos.bundleState<br>Class name: bundleState<br>Method or attribute name: queryAppNotificationNumber||@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: startBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: startBackgroundRunning<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.ability.particleAbility.d.ts|
|Deprecated version changed|Method or attribute name: startBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: startBackgroundRunning<br>Deprecated version: 9|@ohos.ability.particleAbility.d.ts|
|Deprecated version changed|Method or attribute name: cancelBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: cancelBackgroundRunning<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.ability.particleAbility.d.ts|
|Deprecated version changed|Method or attribute name: cancelBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: cancelBackgroundRunning<br>Deprecated version: 9|@ohos.ability.particleAbility.d.ts|
|Deprecated version changed|Class name: backgroundTaskManager<br>Deprecated version: N/A|Class name: backgroundTaskManager<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Class name: DelaySuspendInfo<br>Deprecated version: N/A|Class name: DelaySuspendInfo<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.DelaySuspendInfo |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: cancelSuspendDelay<br>Deprecated version: N/A|Method or attribute name: cancelSuspendDelay<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.cancelSuspendDelay |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: getRemainingDelayTime<br>Deprecated version: N/A|Method or attribute name: getRemainingDelayTime<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.getRemainingDelayTime |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: getRemainingDelayTime<br>Deprecated version: N/A|Method or attribute name: getRemainingDelayTime<br>Deprecated version: 9|@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: requestSuspendDelay<br>Deprecated version: N/A|Method or attribute name: requestSuspendDelay<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.requestSuspendDelay |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: startBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: startBackgroundRunning<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: startBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: startBackgroundRunning<br>Deprecated version: 9|@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: stopBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: stopBackgroundRunning<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: stopBackgroundRunning<br>Deprecated version: N/A|Method or attribute name: stopBackgroundRunning<br>Deprecated version: 9|@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: applyEfficiencyResources<br>Deprecated version: N/A|Method or attribute name: applyEfficiencyResources<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.applyEfficiencyResources |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Method or attribute name: resetAllEfficiencyResources<br>Deprecated version: N/A|Method or attribute name: resetAllEfficiencyResources<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.resetAllEfficiencyResources |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Class name: BackgroundMode<br>Deprecated version: N/A|Class name: BackgroundMode<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Class name: ResourceType<br>Deprecated version: N/A|Class name: ResourceType<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Class name: EfficiencyResourcesRequest<br>Deprecated version: N/A|Class name: EfficiencyResourcesRequest<br>Deprecated version: 9<br>New API: ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts|
|Deprecated version changed|Class name: bundleState<br>Deprecated version: N/A|Class name: bundleState<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics |@ohos.bundleState.d.ts|
|Deprecated version changed|Class name: BundleStateInfo<br>Deprecated version: N/A|Class name: BundleStateInfo<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts|
|Deprecated version changed|Class name: BundleActiveState<br>Deprecated version: N/A|Class name: BundleActiveState<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: isIdleState<br>Deprecated version: N/A|Method or attribute name: isIdleState<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.isIdleState |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: isIdleState<br>Deprecated version: N/A|Method or attribute name: isIdleState<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryAppUsagePriorityGroup<br>Deprecated version: N/A|Method or attribute name: queryAppUsagePriorityGroup<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.queryAppGroup |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryAppUsagePriorityGroup<br>Deprecated version: N/A|Method or attribute name: queryAppUsagePriorityGroup<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Class name: BundleActiveInfoResponse<br>Deprecated version: N/A|Class name: BundleActiveInfoResponse<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.BundleStatsMap |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleStateInfos<br>Deprecated version: N/A|Method or attribute name: queryBundleStateInfos<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.queryBundleStatsInfos |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleStateInfos<br>Deprecated version: N/A|Method or attribute name: queryBundleStateInfos<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Class name: IntervalType<br>Deprecated version: N/A|Class name: IntervalType<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleStateInfoByInterval<br>Deprecated version: N/A|Method or attribute name: queryBundleStateInfoByInterval<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.queryBundleStatsInfoByInterval |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleStateInfoByInterval<br>Deprecated version: N/A|Method or attribute name: queryBundleStateInfoByInterval<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleActiveStates<br>Deprecated version: N/A|Method or attribute name: queryBundleActiveStates<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.queryBundleEvents |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryBundleActiveStates<br>Deprecated version: N/A|Method or attribute name: queryBundleActiveStates<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryCurrentBundleActiveStates<br>Deprecated version: N/A|Method or attribute name: queryCurrentBundleActiveStates<br>Deprecated version: 9<br>New API: ohos.resourceschedule.usageStatistics.queryCurrentBundleEvents |@ohos.bundleState.d.ts|
|Deprecated version changed|Method or attribute name: queryCurrentBundleActiveStates<br>Deprecated version: N/A|Method or attribute name: queryCurrentBundleActiveStates<br>Deprecated version: 9|@ohos.bundleState.d.ts|
|Deprecated version changed|Class name: workScheduler<br>Deprecated version: N/A|Class name: workScheduler<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler |@ohos.workScheduler.d.ts|
|Deprecated version changed|Class name: WorkInfo<br>Deprecated version: N/A|Class name: WorkInfo<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: startWork<br>Deprecated version: N/A|Method or attribute name: startWork<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.startWork |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: stopWork<br>Deprecated version: N/A|Method or attribute name: stopWork<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.stopWork |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: getWorkStatus<br>Deprecated version: N/A|Method or attribute name: getWorkStatus<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.getWorkStatus |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: getWorkStatus<br>Deprecated version: N/A|Method or attribute name: getWorkStatus<br>Deprecated version: 9|@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: obtainAllWorks<br>Deprecated version: N/A|Method or attribute name: obtainAllWorks<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.obtainAllWorks |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: obtainAllWorks<br>Deprecated version: N/A|Method or attribute name: obtainAllWorks<br>Deprecated version: 9|@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: stopAndClearWorks<br>Deprecated version: N/A|Method or attribute name: stopAndClearWorks<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.stopAndClearWorks |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: isLastWorkTimeOut<br>Deprecated version: N/A|Method or attribute name: isLastWorkTimeOut<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.isLastWorkTimeOut |@ohos.workScheduler.d.ts|
|Deprecated version changed|Method or attribute name: isLastWorkTimeOut<br>Deprecated version: N/A|Method or attribute name: isLastWorkTimeOut<br>Deprecated version: 9|@ohos.workScheduler.d.ts|
|Deprecated version changed|Class name: NetworkType<br>Deprecated version: N/A|Class name: NetworkType<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts|
|Deprecated version changed|Class name: ChargingType<br>Deprecated version: N/A|Class name: ChargingType<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts|
|Deprecated version changed|Class name: BatteryStatus<br>Deprecated version: N/A|Class name: BatteryStatus<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.BatteryStatus |@ohos.workScheduler.d.ts|
|Deprecated version changed|Class name: StorageRequest<br>Deprecated version: N/A|Class name: StorageRequest<br>Deprecated version: 9<br>New API: ohos.resourceschedule.workScheduler.StorageRequest |@ohos.workScheduler.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.abilityAccessCtrl<br>Class name: AtManager<br>Method or attribute name: checkAccessToken|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: grantUserGrantedPermission<br>Function name: grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise<void>;|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: grantUserGrantedPermission<br>Function name: grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback<void>): void;|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: revokeUserGrantedPermission<br>Function name: revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise<void>;|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: revokeUserGrantedPermission<br>Function name: revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback<void>): void;|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: permissionName<br>Function name: permissionName: Permissions;|@ohos.abilityAccessCtrl.d.ts|
|Added||Method or attribute name: addPermissionUsedRecord<br>Function name: function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number): Promise<void>;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: addPermissionUsedRecord<br>Function name: function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number, callback: AsyncCallback<void>): void;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: startUsingPermission<br>Function name: function startUsingPermission(tokenID: number, permissionName: Permissions): Promise<void>;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: startUsingPermission<br>Function name: function startUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback<void>): void;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: stopUsingPermission<br>Function name: function stopUsingPermission(tokenID: number, permissionName: Permissions): Promise<void>;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: stopUsingPermission<br>Function name: function stopUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback<void>): void;|@ohos.privacyManager.d.ts|
|Added||Method or attribute name: permissionNames<br>Function name: permissionNames: Array<Permissions>;|@ohos.privacyManager.d.ts|
|Added||Module name: ohos.security.cryptoFramework<br>Class name: Result<br>Method or attribute name: ERR_RUNTIME_ERROR|@ohos.security.cryptoFramework.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: generateKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: generateKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: deleteKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: deleteKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importWrappedKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importWrappedKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: exportKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: exportKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: getKeyItemProperties|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: getKeyItemProperties|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: isKeyItemExist|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: isKeyItemExist|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: initSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: initSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: updateSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: updateSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: updateSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: finishSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: finishSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: finishSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: abortSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: abortSession|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: attestKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: attestKeyItem|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksSessionHandle|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksSessionHandle<br>Method or attribute name: handle|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksSessionHandle<br>Method or attribute name: challenge|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksReturnResult|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksReturnResult<br>Method or attribute name: outData|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksReturnResult<br>Method or attribute name: properties|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksReturnResult<br>Method or attribute name: certChains|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_PERMISSION_FAIL|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_ILLEGAL_ARGUMENT|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_NOT_SUPPORTED_API|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_FEATURE_NOT_SUPPORTED|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_MISSING_CRYPTO_ALG_ARGUMENT|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_INVALID_CRYPTO_ALG_ARGUMENT|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_FILE_OPERATION_FAIL|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_COMMUNICATION_FAIL|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_CRYPTO_FAIL|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_KEY_AUTH_PERMANENTLY_INVALIDATED|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_KEY_AUTH_VERIFY_FAILED|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_KEY_AUTH_TIME_OUT|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_SESSION_LIMIT|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_ITEM_NOT_EXIST|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_EXTERNAL_ERROR|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_CREDENTIAL_NOT_EXIST|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_INSUFFICIENT_MEMORY|@ohos.security.huks.d.ts|
|Added||Module name: ohos.security.huks<br>Class name: HuksExceptionErrCode<br>Method or attribute name: HUKS_ERR_CODE_CALL_SERVICE_FAILED|@ohos.security.huks.d.ts|
|Deleted||Module name: ohos.security.cryptoFramework<br>Class name: Result<br>Method or attribute name: ERR_EXTERNAL_ERROR||@ohos.security.cryptoFramework.d.ts|
|Deleted||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importWrappedKey||@ohos.security.huks.d.ts|
|Deleted||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: importWrappedKey||@ohos.security.huks.d.ts|
|Deleted||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: attestKey||@ohos.security.huks.d.ts|
|Deleted||Module name: ohos.security.huks<br>Class name: huks<br>Method or attribute name: attestKey||@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: verifyAccessToken<br>Deprecated version: N/A|Method or attribute name: verifyAccessToken<br>Deprecated version: 9<br>New API: ohos.abilityAccessCtrl.AtManager|@ohos.abilityAccessCtrl.d.ts|
|Deprecated version changed|Method or attribute name: generateKey<br>Deprecated version: N/A|Method or attribute name: generateKey<br>Deprecated version: 9<br>New API: ohos.security.huks.generateKeyItem |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: generateKey<br>Deprecated version: N/A|Method or attribute name: generateKey<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: deleteKey<br>Deprecated version: N/A|Method or attribute name: deleteKey<br>Deprecated version: 9<br>New API: ohos.security.huks.deleteKeyItem |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: deleteKey<br>Deprecated version: N/A|Method or attribute name: deleteKey<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: importKey<br>Deprecated version: N/A|Method or attribute name: importKey<br>Deprecated version: 9<br>New API: ohos.security.huks.importKeyItem |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: importKey<br>Deprecated version: N/A|Method or attribute name: importKey<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: exportKey<br>Deprecated version: N/A|Method or attribute name: exportKey<br>Deprecated version: 9<br>New API: ohos.security.huks.exportKeyItem |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: exportKey<br>Deprecated version: N/A|Method or attribute name: exportKey<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: getKeyProperties<br>Deprecated version: N/A|Method or attribute name: getKeyProperties<br>Deprecated version: 9<br>New API: ohos.security.huks.getKeyItemProperties |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: getKeyProperties<br>Deprecated version: N/A|Method or attribute name: getKeyProperties<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: isKeyExist<br>Deprecated version: N/A|Method or attribute name: isKeyExist<br>Deprecated version: 9<br>New API: ohos.security.huks.isKeyItemExist |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: isKeyExist<br>Deprecated version: N/A|Method or attribute name: isKeyExist<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: init<br>Deprecated version: N/A|Method or attribute name: init<br>Deprecated version: 9<br>New API: ohos.security.huks.initSession |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: init<br>Deprecated version: N/A|Method or attribute name: init<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9<br>New API: ohos.security.huks.updateSession |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: update<br>Deprecated version: N/A|Method or attribute name: update<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: finish<br>Deprecated version: N/A|Method or attribute name: finish<br>Deprecated version: 9<br>New API: ohos.security.huks.finishSession |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: finish<br>Deprecated version: N/A|Method or attribute name: finish<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: abort<br>Deprecated version: N/A|Method or attribute name: abort<br>Deprecated version: 9<br>New API: ohos.security.huks.abortSession |@ohos.security.huks.d.ts|
|Deprecated version changed|Method or attribute name: abort<br>Deprecated version: N/A|Method or attribute name: abort<br>Deprecated version: 9|@ohos.security.huks.d.ts|
|Deprecated version changed|Class name: HuksHandle<br>Deprecated version: N/A|Class name: HuksHandle<br>Deprecated version: 9<br>New API: ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts|
|Deprecated version changed|Class name: HuksResult<br>Deprecated version: N/A|Class name: HuksResult<br>Deprecated version: 9<br>New API: ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts|
|Deprecated version changed|Class name: HuksErrorCode<br>Deprecated version: N/A|Class name: HuksErrorCode<br>Deprecated version: 9<br>New API: ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts|
|Deprecated version changed|Class name: Cipher<br>Deprecated version: N/A|Class name: Cipher<br>Deprecated version: 9<br>New API: ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts|
|Deprecated version changed|Method or attribute name: rsa<br>Deprecated version: N/A|Method or attribute name: rsa<br>Deprecated version: 9<br>New API: ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts|
|Deprecated version changed|Method or attribute name: aes<br>Deprecated version: N/A|Method or attribute name: aes<br>Deprecated version: 9<br>New API: ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts|
|Initial version changed|Method or attribute name: getPermissionFlags<br>Initial version: 9|Method or attribute name: getPermissionFlags<br>Initial version: 8|@ohos.abilityAccessCtrl.d.ts|
|Initial version changed|Method or attribute name: update<br>Initial version: 9|Method or attribute name: update<br>Initial version: 8|@ohos.security.huks.d.ts|
|Initial version changed|Method or attribute name: update<br>Initial version: 9|Method or attribute name: update<br>Initial version: 8|@ohos.security.huks.d.ts|
|Initial version changed|Method or attribute name: update<br>Initial version: 9|Method or attribute name: update<br>Initial version: 8|@ohos.security.huks.d.ts|
|Error code added||Method or attribute name: verifyAccessTokenSync<br>Error code: 401, 12100001|@ohos.abilityAccessCtrl.d.ts|
|Error code added||Method or attribute name: getPermissionFlags<br>Error code: 401, 201, 12100001, 12100002, 12100003, 12100006, 12100007|@ohos.abilityAccessCtrl.d.ts|
|Error code added||Method or attribute name: on_permissionStateChange<br>Error code: 401, 201, 12100001, 12100004, 12100005, 12100007, 12100008|@ohos.abilityAccessCtrl.d.ts|
|Error code added||Method or attribute name: off_permissionStateChange<br>Error code: 401, 201, 12100001, 12100004, 12100007, 12100008|@ohos.abilityAccessCtrl.d.ts|
|Error code added||Method or attribute name: getPermissionUsedRecords<br>Error code: 401, 201, 12100001, 12100002, 12100003, 12100007,12100008|@ohos.privacyManager.d.ts|
|Error code added||Method or attribute name: on_activeStateChange<br>Error code: 401, 201, 12100001, 12100004, 12100005, 12100007, 12100008|@ohos.privacyManager.d.ts|
|Error code added||Method or attribute name: off_activeStateChange<br>Error code: 401, 201, 12100001, 12100004, 12100007, 12100008|@ohos.privacyManager.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.sensor<br>Class name: SensorId|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: GYROSCOPE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: AMBIENT_LIGHT|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: MAGNETIC_FIELD|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: BAROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: HALL|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: PROXIMITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: HUMIDITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: ORIENTATION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: GRAVITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: LINEAR_ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: ROTATION_VECTOR|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: AMBIENT_TEMPERATURE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: SIGNIFICANT_MOTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: PEDOMETER_DETECTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: PEDOMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: HEART_RATE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: WEAR_DETECTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: SensorId<br>Method or attribute name: ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_AMBIENT_LIGHT|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_AMBIENT_TEMPERATURE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_BAROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_GRAVITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_GYROSCOPE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_HALL|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_HEART_RATE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_HUMIDITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_LINEAR_ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_MAGNETIC_FIELD|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_ORIENTATION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_PEDOMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_PEDOMETER_DETECTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_PROXIMITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_ROTATION_VECTOR|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_SIGNIFICANT_MOTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorId_WEAR_DETECTION|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.ACCELEROMETER, callback: Callback<AccelerometerResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback<AccelerometerUncalibratedResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.AMBIENT_LIGHT, callback: Callback<LightResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback<AmbientTemperatureResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.BAROMETER, callback: Callback<BarometerResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.GRAVITY, callback: Callback<GravityResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.GYROSCOPE, callback: Callback<GyroscopeResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback<GyroscopeUncalibratedResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.HALL, callback: Callback<HallResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.HEART_RATE, callback: Callback<HeartRateResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.HUMIDITY, callback: Callback<HumidityResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback<LinearAccelerometerResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.MAGNETIC_FIELD, callback: Callback<MagneticFieldResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback<MagneticFieldUncalibratedResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.ORIENTATION, callback: Callback<OrientationResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.PEDOMETER, callback: Callback<PedometerResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback<PedometerDetectionResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.PROXIMITY, callback: Callback<ProximityResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.ROTATION_VECTOR, callback: Callback<RotationVectorResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback<SignificantMotionResponse>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: once<br>Function name: function once(type: SensorId.WEAR_DETECTION, callback: Callback<WearDetectionResponse>): void;|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_AMBIENT_LIGHT|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_AMBIENT_TEMPERATURE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_BAROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_GRAVITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_GYROSCOPE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_HALL|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_HEART_RATE|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_HUMIDITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_LINEAR_ACCELEROMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_MAGNETIC_FIELD|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_ORIENTATION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_PEDOMETER|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_PEDOMETER_DETECTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_PROXIMITY|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_ROTATION_VECTOR|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_SIGNIFICANT_MOTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorId_WEAR_DETECTION|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: Sensor<br>Method or attribute name: sensorId|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: Sensor<br>Method or attribute name: minSamplePeriod|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: Sensor<br>Method or attribute name: maxSamplePeriod|@ohos.sensor.d.ts|
|Added||Method or attribute name: getSingleSensor<br>Function name: function getSingleSensor(type: SensorId, callback: AsyncCallback<Sensor>): void;|@ohos.sensor.d.ts|
|Added||Method or attribute name: getSingleSensor<br>Function name: function getSingleSensor(type: SensorId): Promise<Sensor>;|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getSensorList|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getSensorList|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getGeomagneticInfo|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getGeomagneticInfo|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getDeviceAltitude|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getDeviceAltitude|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getInclination|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getInclination|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getAngleVariation|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getAngleVariation|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: transformRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: transformRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getQuaternion|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getQuaternion|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getOrientation|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getOrientation|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getRotationMatrix|@ohos.sensor.d.ts|
|Added||Module name: ohos.vibrator<br>Class name: vibrator<br>Method or attribute name: startVibration|@ohos.vibrator.d.ts|
|Added||Module name: ohos.vibrator<br>Class name: vibrator<br>Method or attribute name: startVibration|@ohos.vibrator.d.ts|
|Added||Module name: ohos.vibrator<br>Class name: vibrator<br>Method or attribute name: stopVibration|@ohos.vibrator.d.ts|
|Added||Module name: ohos.vibrator<br>Class name: vibrator<br>Method or attribute name: stopVibration|@ohos.vibrator.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorType_SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: on_SensorType_SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorType_SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: off_SensorType_SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: Sensor<br>Method or attribute name: sensorTypeId||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getSensorLists||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: sensor<br>Method or attribute name: getSensorLists||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: SensorType<br>Method or attribute name: SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts|
|Deleted||Module name: ohos.sensor<br>Class name: SensorType<br>Method or attribute name: SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_BAROMETER<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_BAROMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GRAVITY<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GRAVITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GYROSCOPE<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GYROSCOPE<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_HALL<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_HALL<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_HUMIDITY<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_HUMIDITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ORIENTATION<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ORIENTATION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PEDOMETER<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PEDOMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PROXIMITY<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_PROXIMITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION<br>Deprecated version: N/A|Method or attribute name: on_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: once<br>Deprecated version: N/A|Method or attribute name: once<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_BAROMETER<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_BAROMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GRAVITY<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GRAVITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GYROSCOPE<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GYROSCOPE<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_HALL<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_HALL<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_HUMIDITY<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_HUMIDITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ORIENTATION<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ORIENTATION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PEDOMETER<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PEDOMETER<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PROXIMITY<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_PROXIMITY<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION<br>Deprecated version: N/A|Method or attribute name: off_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getGeomagneticField<br>Deprecated version: N/A|Method or attribute name: getGeomagneticField<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getGeomagneticField<br>Deprecated version: N/A|Method or attribute name: getGeomagneticField<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getAltitude<br>Deprecated version: N/A|Method or attribute name: getAltitude<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getAltitude<br>Deprecated version: N/A|Method or attribute name: getAltitude<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getGeomagneticDip<br>Deprecated version: N/A|Method or attribute name: getGeomagneticDip<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getGeomagneticDip<br>Deprecated version: N/A|Method or attribute name: getGeomagneticDip<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getAngleModify<br>Deprecated version: N/A|Method or attribute name: getAngleModify<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getAngleModify<br>Deprecated version: N/A|Method or attribute name: getAngleModify<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createRotationMatrix<br>Deprecated version: N/A|Method or attribute name: createRotationMatrix<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createRotationMatrix<br>Deprecated version: N/A|Method or attribute name: createRotationMatrix<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: transformCoordinateSystem<br>Deprecated version: N/A|Method or attribute name: transformCoordinateSystem<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: transformCoordinateSystem<br>Deprecated version: N/A|Method or attribute name: transformCoordinateSystem<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createQuaternion<br>Deprecated version: N/A|Method or attribute name: createQuaternion<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createQuaternion<br>Deprecated version: N/A|Method or attribute name: createQuaternion<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getDirection<br>Deprecated version: N/A|Method or attribute name: getDirection<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: getDirection<br>Deprecated version: N/A|Method or attribute name: getDirection<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createRotationMatrix<br>Deprecated version: N/A|Method or attribute name: createRotationMatrix<br>Deprecated version: 9<br>New API: sensor|@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: createRotationMatrix<br>Deprecated version: N/A|Method or attribute name: createRotationMatrix<br>Deprecated version: 9|@ohos.sensor.d.ts|
|Deprecated version changed|Class name: SensorType<br>Deprecated version: N/A|Class name: SensorType<br>Deprecated version: 9<br>New API: sensor.SensorId |@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: SENSOR_TYPE_ID_LINEAR_ACCELERATION<br>Deprecated version: 9|Method or attribute name: SENSOR_TYPE_ID_LINEAR_ACCELERATION<br>Deprecated version: N/A<br>New API: sensor.SensorId |@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: SENSOR_TYPE_ID_HEART_RATE<br>Deprecated version: 9|Method or attribute name: SENSOR_TYPE_ID_HEART_RATE<br>Deprecated version: N/A<br>New API: sensor.SensorId |@ohos.sensor.d.ts|
|Deprecated version changed|Method or attribute name: vibrate<br>Deprecated version: N/A|Method or attribute name: vibrate<br>Deprecated version: 9<br>New API: vibrator|@ohos.vibrator.d.ts|
|Deprecated version changed|Method or attribute name: vibrate<br>Deprecated version: N/A|Method or attribute name: vibrate<br>Deprecated version: 9|@ohos.vibrator.d.ts|
|Deprecated version changed|Method or attribute name: vibrate<br>Deprecated version: N/A|Method or attribute name: vibrate<br>Deprecated version: 9<br>New API: vibrator|@ohos.vibrator.d.ts|
|Deprecated version changed|Method or attribute name: vibrate<br>Deprecated version: N/A|Method or attribute name: vibrate<br>Deprecated version: 9|@ohos.vibrator.d.ts|
|Deprecated version changed|Method or attribute name: stop<br>Deprecated version: N/A|Method or attribute name: stop<br>Deprecated version: 9<br>New API: vibrator|@ohos.vibrator.d.ts|
|Deprecated version changed|Method or attribute name: stop<br>Deprecated version: N/A|Method or attribute name: stop<br>Deprecated version: 9|@ohos.vibrator.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: getSync|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: get|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: get|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: get|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: setSync|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: set|@ohos.systemParameterV9.d.ts|
|Added||Module name: ohos.systemParameterV9<br>Class name: systemParameterV9<br>Method or attribute name: set|@ohos.systemParameterV9.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|New||Method or attribute name: sendUpdateCellLocationRequest<br>Function name: function sendUpdateCellLocationRequest(slotId?: number): Promise<void>;|@ohos.telephony.radio.d.ts|
|Initial version changed|Method or attribute name: sendUpdateCellLocationRequest<br>Initial version: 9|Method or attribute name: sendUpdateCellLocationRequest<br>Initial version: 8|@ohos.telephony.radio.d.ts|
|Permission deleted|Method or attribute name: getDefaultCellularDataSlotId<br>Permission: ohos.permission.GET_NETWORK_INFO|Method or attribute name: getDefaultCellularDataSlotId<br>Permission: N/A|@ohos.telephony.data.d.ts|
|Permission deleted|Method or attribute name: getDefaultCellularDataSlotId<br>Permission: ohos.permission.GET_NETWORK_INFO|Method or attribute name: getDefaultCellularDataSlotId<br>Permission: N/A|@ohos.telephony.data.d.ts|
|Permission deleted|Method or attribute name: getDefaultCellularDataSlotIdSync<br>Permission: ohos.permission.GET_NETWORK_INFO|Method or attribute name: getDefaultCellularDataSlotIdSync<br>Permission: N/A|@ohos.telephony.data.d.ts|
|Permission added|Method or attribute name: sendUpdateCellLocationRequest<br>Permission: N/A|Method or attribute name: sendUpdateCellLocationRequest<br>Permission: ohos.permission.LOCATION|@ohos.telephony.radio.d.ts|
|Permission added|Method or attribute name: sendUpdateCellLocationRequest<br>Permission: N/A|Method or attribute name: sendUpdateCellLocationRequest<br>Permission: ohos.permission.LOCATION|@ohos.telephony.radio.d.ts|
|Permission added|Method or attribute name: getLockState<br>Permission: N/A|Method or attribute name: getLockState<br>Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts|
|Permission added|Method or attribute name: getLockState<br>Permission: N/A|Method or attribute name: getLockState<br>Permission: ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Method or attribute name: bundleName<br>Function name: bundleName?: string;|@ohos.uitest.d.ts|
|Added||Method or attribute name: title<br>Function name: title?: string;|@ohos.uitest.d.ts|
|Added||Method or attribute name: focused<br>Function name: focused?: boolean;|@ohos.uitest.d.ts|
|Added||Method or attribute name: actived<br>Function name: actived?: boolean;|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: text|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: id|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: type|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: clickable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: longClickable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: scrollable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: enabled|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: focused|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: selected|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: checked|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: checkable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: isBefore|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: On<br>Method or attribute name: isAfter|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: click|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: doubleClick|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: longClick|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: getId|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: getText|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: getType|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isClickable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isLongClickable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isScrollable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isEnabled|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isFocused|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isSelected|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isChecked|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: isCheckable|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: inputText|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: clearText|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: scrollToTop|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: scrollToBottom|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: scrollSearch|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: getBounds|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: getBoundsCenter|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: dragTo|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: pinchOut|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Component<br>Method or attribute name: pinchIn|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: create|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: delayMs|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: findComponent|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: findWindow|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: waitForComponent|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: findComponents|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: assertComponentExist|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: pressBack|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: triggerKey|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: triggerCombineKeys|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: click|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: doubleClick|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: longClick|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: swipe|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: drag|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: screenCap|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: setDisplayRotation|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: getDisplayRotation|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: setDisplayRotationEnabled|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: getDisplaySize|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: getDisplayDensity|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: wakeUpDisplay|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: pressHome|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: waitForIdle|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: fling|@ohos.uitest.d.ts|
|Added||Module name: ohos.uitest<br>Class name: Driver<br>Method or attribute name: injectMultiPointerAction|@ohos.uitest.d.ts|
|Added||Method or attribute name: focus<br>Function name: focus(): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: moveTo<br>Function name: moveTo(x: number, y: number): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: resize<br>Function name: resize(wide: number, height: number, direction: ResizeDirection): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: split<br>Function name: split(): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: maximize<br>Function name: maximize(): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: minimize<br>Function name: minimize(): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: resume<br>Function name: resume(): Promise<void>;|@ohos.uitest.d.ts|
|Added||Method or attribute name: close<br>Function name: close(): Promise<void>;|@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: By<br>Method or attribute name: longClickable||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: By<br>Method or attribute name: checked||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: By<br>Method or attribute name: checkable||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: isLongClickable||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: isChecked||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: isCheckable||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: clearText||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: scrollToTop||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: scrollToBottom||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: getBounds||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: getBoundsCenter||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: dragTo||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: pinchOut||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiComponent<br>Method or attribute name: pinchIn||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: findWindow||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: waitForComponent||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: triggerCombineKeys||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: drag||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: setDisplayRotation||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: getDisplayRotation||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: setDisplayRotationEnabled||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: getDisplaySize||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: getDisplayDensity||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: wakeUpDisplay||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: pressHome||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: waitForIdle||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: fling||@ohos.uitest.d.ts|
|Deleted||Module name: ohos.uitest<br>Class name: UiDriver<br>Method or attribute name: injectMultiPointerAction||@ohos.uitest.d.ts|
|Deprecated version changed|Class name: By<br>Deprecated version: N/A|Class name: By<br>Deprecated version: 9<br>New API: ohos.uitest.On |@ohos.uitest.d.ts|
|Deprecated version changed|Class name: UiComponent<br>Deprecated version: N/A|Class name: UiComponent<br>Deprecated version: 9<br>New API: ohos.uitest.Component |@ohos.uitest.d.ts|
|Deprecated version changed|Class name: UiDriver<br>Deprecated version: N/A|Class name: UiDriver<br>Deprecated version: 9<br>New API: ohos.uitest.Driver |@ohos.uitest.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Error code added||Method or attribute name: getOnlineUpdater<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getRestorer<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getLocalUpdater<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: checkNewVersion<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getNewVersionInfo<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getNewVersionDescription<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getCurrentVersionInfo<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getCurrentVersionDescription<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getTaskInfo<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: download<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: resumeDownload<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: pauseDownload<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: upgrade<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: clearError<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: getUpgradePolicy<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: setUpgradePolicy<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: terminateUpgrade<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: on<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: off<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: factoryReset<br>Error code: 201, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: verifyUpgradePackage<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: applyNewVersion<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: on<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
|Error code added||Method or attribute name: off<br>Error code: 201, 401, 11500104|@ohos.update.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Method or attribute name: controlTransfer<br>Function name: function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise<number>;|@ohos.usb.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getDevices|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: connectDevice|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: hasRight|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: requestRight|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: removeRight|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: addRight|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: usbFunctionsFromString|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: usbFunctionsToString|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: setCurrentFunctions|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getCurrentFunctions|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getPorts|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getSupportedModes|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: setPortRoles|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: claimInterface|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: releaseInterface|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: setConfiguration|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: setInterface|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getRawDescriptor|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: getFileDescriptor|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: controlTransfer|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: bulkTransfer|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: usbV9<br>Method or attribute name: closePipe|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: address|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: attributes|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: interval|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: maxPacketSize|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: direction|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: number|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: type|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBEndpoint<br>Method or attribute name: interfaceId|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: id|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: protocol|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: clazz|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: subClass|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: alternateSetting|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: name|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBInterface<br>Method or attribute name: endpoints|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: id|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: attributes|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: maxPower|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: name|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: isRemoteWakeup|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: isSelfPowered|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBConfig<br>Method or attribute name: interfaces|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: busNum|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: devAddress|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: serial|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: name|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: manufacturerName|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: productName|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: version|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: vendorId|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: productId|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: clazz|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: subClass|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: protocol|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevice<br>Method or attribute name: configs|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevicePipe|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevicePipe<br>Method or attribute name: busNum|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBDevicePipe<br>Method or attribute name: devAddress|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PowerRoleType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PowerRoleType<br>Method or attribute name: NONE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PowerRoleType<br>Method or attribute name: SOURCE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PowerRoleType<br>Method or attribute name: SINK|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: DataRoleType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: DataRoleType<br>Method or attribute name: NONE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: DataRoleType<br>Method or attribute name: HOST|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: DataRoleType<br>Method or attribute name: DEVICE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType<br>Method or attribute name: NONE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType<br>Method or attribute name: UFP|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType<br>Method or attribute name: DFP|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType<br>Method or attribute name: DRP|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: PortModeType<br>Method or attribute name: NUM_MODES|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPortStatus|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPortStatus<br>Method or attribute name: currentMode|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPortStatus<br>Method or attribute name: currentPowerRole|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPortStatus<br>Method or attribute name: currentDataRole|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPort|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPort<br>Method or attribute name: id|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPort<br>Method or attribute name: supportedModes|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBPort<br>Method or attribute name: status|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: request|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: target|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: reqType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: value|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: index|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlParams<br>Method or attribute name: data|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestTargetType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestTargetType<br>Method or attribute name: USB_REQUEST_TARGET_DEVICE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestTargetType<br>Method or attribute name: USB_REQUEST_TARGET_INTERFACE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestTargetType<br>Method or attribute name: USB_REQUEST_TARGET_ENDPOINT|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestTargetType<br>Method or attribute name: USB_REQUEST_TARGET_OTHER|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlRequestType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlRequestType<br>Method or attribute name: USB_REQUEST_TYPE_STANDARD|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlRequestType<br>Method or attribute name: USB_REQUEST_TYPE_CLASS|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBControlRequestType<br>Method or attribute name: USB_REQUEST_TYPE_VENDOR|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestDirection|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestDirection<br>Method or attribute name: USB_REQUEST_DIR_TO_DEVICE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: USBRequestDirection<br>Method or attribute name: USB_REQUEST_DIR_FROM_DEVICE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: NONE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: ACM|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: ECM|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: HDC|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: MTP|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: PTP|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: RNDIS|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: MIDI|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: AUDIO_SOURCE|@ohos.usbV9.d.ts|
|Added||Module name: ohos.usbV9<br>Class name: FunctionType<br>Method or attribute name: NCM|@ohos.usbV9.d.ts|
|Deprecated version changed|Class name: usb<br>Deprecated version: N/A|Class name: usb<br>Deprecated version: 9<br>New API: ohos.usbV9 |@ohos.usb.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Method or attribute name: setSurfaceId<br>Function name: setSurfaceId(surfaceId: string): void;|@ohos.userIAM.faceAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthEvent|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthEvent<br>Method or attribute name: callback|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthResultInfo|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthResultInfo<br>Method or attribute name: result|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthResultInfo<br>Method or attribute name: token|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthResultInfo<br>Method or attribute name: remainAttempts|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthResultInfo<br>Method or attribute name: lockoutDuration|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: TipInfo|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: TipInfo<br>Method or attribute name: module|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: TipInfo<br>Method or attribute name: tip|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthInstance|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthInstance<br>Method or attribute name: on|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthInstance<br>Method or attribute name: off|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthInstance<br>Method or attribute name: start|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: AuthInstance<br>Method or attribute name: cancel|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: userAuth<br>Method or attribute name: getVersion|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: userAuth<br>Method or attribute name: getAvailableStatus|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: userAuth<br>Method or attribute name: getAuthInstance|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: SUCCESS|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: FAIL|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: GENERAL_ERROR|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: CANCELED|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: TIMEOUT|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: TYPE_NOT_SUPPORT|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: TRUST_LEVEL_NOT_SUPPORT|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: BUSY|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: LOCKED|@ohos.userIAM.userAuth.d.ts|
|Added||Module name: ohos.userIAM.userAuth<br>Class name: ResultCodeV9<br>Method or attribute name: NOT_ENROLLED|@ohos.userIAM.userAuth.d.ts|
|Deleted|Module name: ohos.userIAM.faceAuth<br>Class name: ResultCode||@ohos.userIAM.faceAuth.d.ts|
|Deleted|Module name: ohos.userIAM.faceAuth<br>Class name: ResultCode<br>Method or attribute name: SUCCESS||@ohos.userIAM.faceAuth.d.ts|
|Deleted|Module name: ohos.userIAM.faceAuth<br>Class name: ResultCode<br>Method or attribute name: FAIL||@ohos.userIAM.faceAuth.d.ts|
|Deprecated version changed|Class name: AuthenticationResult<br>Deprecated version: N/A|Class name: AuthenticationResult<br>Deprecated version: 8<br>New API: ohos.userIAM.userAuth.ResultCode |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Class name: Authenticator<br>Deprecated version: N/A|Class name: Authenticator<br>Deprecated version: 8|@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Class name: UserAuth<br>Deprecated version: N/A|Class name: UserAuth<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthInstance |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: getVersion<br>Deprecated version: N/A|Method or attribute name: getVersion<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.getVersion |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: getAvailableStatus<br>Deprecated version: N/A|Method or attribute name: getAvailableStatus<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.getAvailableStatus |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: auth<br>Deprecated version: N/A|Method or attribute name: auth<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthInstance.start |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: cancelAuth<br>Deprecated version: N/A|Method or attribute name: cancelAuth<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthInstance.cancel |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Class name: IUserAuthCallback<br>Deprecated version: N/A|Class name: IUserAuthCallback<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthEvent |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: onResult<br>Deprecated version: N/A|Method or attribute name: onResult<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthEvent.callback |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: onAcquireInfo<br>Deprecated version: N/A|Method or attribute name: onAcquireInfo<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthEvent.callback |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Class name: AuthResult<br>Deprecated version: N/A|Class name: AuthResult<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Class name: ResultCode<br>Deprecated version: N/A|Class name: ResultCode<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: SUCCESS<br>Deprecated version: N/A|Method or attribute name: SUCCESS<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: FAIL<br>Deprecated version: N/A|Method or attribute name: FAIL<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: GENERAL_ERROR<br>Deprecated version: N/A|Method or attribute name: GENERAL_ERROR<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: CANCELED<br>Deprecated version: N/A|Method or attribute name: CANCELED<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: TIMEOUT<br>Deprecated version: N/A|Method or attribute name: TIMEOUT<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: TYPE_NOT_SUPPORT<br>Deprecated version: N/A|Method or attribute name: TYPE_NOT_SUPPORT<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: TRUST_LEVEL_NOT_SUPPORT<br>Deprecated version: N/A|Method or attribute name: TRUST_LEVEL_NOT_SUPPORT<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: BUSY<br>Deprecated version: N/A|Method or attribute name: BUSY<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: INVALID_PARAMETERS<br>Deprecated version: N/A|Method or attribute name: INVALID_PARAMETERS<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: LOCKED<br>Deprecated version: N/A|Method or attribute name: LOCKED<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Deprecated version changed|Method or attribute name: NOT_ENROLLED<br>Deprecated version: N/A|Method or attribute name: NOT_ENROLLED<br>Deprecated version: 9<br>New API: ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts|
|Initial version changed|Class name: IUserAuthCallback<br>Initial version: 6|Class name: IUserAuthCallback<br>Initial version: 8|@ohos.userIAM.userAuth.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.web.webview<br>Class name: HeaderV9|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HeaderV9<br>Method or attribute name: headerKey|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HeaderV9<br>Method or attribute name: headerValue|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: EditText|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: Email|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: HttpAnchor|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: HttpAnchorImg|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: Img|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: Map|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: Phone|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestTypeV9<br>Method or attribute name: Unknown|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestValue|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestValue<br>Method or attribute name: type|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: HitTestValue<br>Method or attribute name: extra|@ohos.web.webview.d.ts|
|Added||Method or attribute name: setCookie<br>Function name: static setCookie(url: string, value: string): void;|@ohos.web.webview.d.ts|
|Added||Method or attribute name: saveCookieAsync<br>Function name: static saveCookieAsync(): Promise<void>;|@ohos.web.webview.d.ts|
|Added||Method or attribute name: saveCookieAsync<br>Function name: static saveCookieAsync(callback: AsyncCallback<void>): void;|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebMessagePort|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebMessagePort<br>Method or attribute name: close|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebMessagePort<br>Method or attribute name: postMessageEvent|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebMessagePort<br>Method or attribute name: onMessageEvent|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: accessForward|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: accessBackward|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: accessStep|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: forward|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: backward|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: clearHistory|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: onActive|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: onInactive|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: refresh|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: loadData|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: loadUrl|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getHitTest|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: storeWebArchive|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: storeWebArchive|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: zoom|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: zoomIn|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: zoomOut|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getHitTestValue|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getWebId|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getUserAgent|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getTitle|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getPageHeight|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: backOrForward|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: requestFocus|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: createWebMessagePorts|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: postMessage|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: stop|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: registerJavaScriptProxy|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: deleteJavaScriptRegister|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: searchAllAsync|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: clearMatches|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: searchNext|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: clearSslCache|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: clearClientAuthenticationCache|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: runJavaScript|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: runJavaScript|@ohos.web.webview.d.ts|
|Added||Module name: ohos.web.webview<br>Class name: WebviewController<br>Method or attribute name: getUrl|@ohos.web.webview.d.ts|
|Deleted||Module name: ohos.web.webview<br>Class name: WebCookieManager<br>Method or attribute name: saveCookieSync||@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: deleteOrigin<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getOrigins<br>Error code: 401,17100012|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getOriginQuota<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getOriginUsage<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getHttpAuthCredentials<br>Error code: 401|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: saveHttpAuthCredentials<br>Error code: 401|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: allowGeolocation<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: deleteGeolocation<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getAccessibleGeolocation<br>Error code: 401, 17100011|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getStoredGeolocation<br>Error code: 401|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: getCookie<br>Error code: 401,17100002|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: putAcceptCookieEnabled<br>Error code: 401|@ohos.web.webview.d.ts|
|Error code added||Method or attribute name: putAcceptThirdPartyCookieEnabled<br>Error code: 401|@ohos.web.webview.d.ts|
| Change Type | New Version | Old Version | d.ts File |
| ---- | ------ | ------ | -------- |
|Added||Module name: ohos.display<br>Class name: display<br>Method or attribute name: getAllDisplays|@ohos.display.d.ts|
|Added||Module name: ohos.display<br>Class name: display<br>Method or attribute name: getAllDisplays|@ohos.display.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration<br>Method or attribute name: name|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration<br>Method or attribute name: windowType|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration<br>Method or attribute name: ctx|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration<br>Method or attribute name: displayId|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Configuration<br>Method or attribute name: parentId|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: window<br>Method or attribute name: createWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: window<br>Method or attribute name: createWindow|@ohos.window.d.ts|
|Added||Method or attribute name: create<br>Function name: function create(ctx: BaseContext, id: string, type: WindowType): Promise<Window>;|@ohos.window.d.ts|
|Added||Method or attribute name: create<br>Function name: function create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback<Window>): void;|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: window<br>Method or attribute name: findWindow|@ohos.window.d.ts|
|Added||Method or attribute name: getTopWindow<br>Function name: function getTopWindow(ctx: BaseContext): Promise<Window>;|@ohos.window.d.ts|
|Added||Method or attribute name: getTopWindow<br>Function name: function getTopWindow(ctx: BaseContext, callback: AsyncCallback<Window>): void;|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: window<br>Method or attribute name: getLastWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: window<br>Method or attribute name: getLastWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: showWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: showWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: destroyWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: destroyWindow|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: moveWindowTo|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: moveWindowTo|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: resize|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: resize|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowMode|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowMode|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: getWindowProperties|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: getWindowAvoidArea|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowLayoutFullScreen|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowLayoutFullScreen|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowSystemBarEnable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowSystemBarEnable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowSystemBarProperties|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowSystemBarProperties|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setUIContent|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setUIContent|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: isWindowShowing|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: isWindowSupportWideGamut|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: isWindowSupportWideGamut|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowColorSpace|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowColorSpace|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: getWindowColorSpace|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowBackgroundColor|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowBrightness|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowBrightness|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowFocusable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowFocusable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowKeepScreenOn|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowKeepScreenOn|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowPrivacyMode|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowPrivacyMode|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowTouchable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: Window<br>Method or attribute name: setWindowTouchable|@ohos.window.d.ts|
|Added||Module name: ohos.window<br>Class name: WindowStage<br>Method or attribute name: getMainWindowSync|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getDefaultDisplay<br>Deprecated version: N/A|Method or attribute name: getDefaultDisplay<br>Deprecated version: 9<br>New API: ohos.display|@ohos.display.d.ts|
|Deprecated version changed|Method or attribute name: getDefaultDisplay<br>Deprecated version: N/A|Method or attribute name: getDefaultDisplay<br>Deprecated version: 9<br>New API: ohos.display|@ohos.display.d.ts|
|Deprecated version changed|Method or attribute name: getAllDisplay<br>Deprecated version: N/A|Method or attribute name: getAllDisplay<br>Deprecated version: 9<br>New API: ohos.display|@ohos.display.d.ts|
|Deprecated version changed|Method or attribute name: getAllDisplay<br>Deprecated version: N/A|Method or attribute name: getAllDisplay<br>Deprecated version: 9<br>New API: ohos.display|@ohos.display.d.ts|
|Deprecated version changed|Method or attribute name: create<br>Deprecated version: N/A|Method or attribute name: create<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: create<br>Deprecated version: N/A|Method or attribute name: create<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: find<br>Deprecated version: N/A|Method or attribute name: find<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: find<br>Deprecated version: N/A|Method or attribute name: find<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getTopWindow<br>Deprecated version: N/A|Method or attribute name: getTopWindow<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getTopWindow<br>Deprecated version: N/A|Method or attribute name: getTopWindow<br>Deprecated version: 9<br>New API: ohos.window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: show<br>Deprecated version: N/A|Method or attribute name: show<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: show<br>Deprecated version: N/A|Method or attribute name: show<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: destroy<br>Deprecated version: N/A|Method or attribute name: destroy<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: destroy<br>Deprecated version: N/A|Method or attribute name: destroy<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: moveTo<br>Deprecated version: N/A|Method or attribute name: moveTo<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: moveTo<br>Deprecated version: N/A|Method or attribute name: moveTo<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: resetSize<br>Deprecated version: N/A|Method or attribute name: resetSize<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: resetSize<br>Deprecated version: N/A|Method or attribute name: resetSize<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getProperties<br>Deprecated version: N/A|Method or attribute name: getProperties<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getProperties<br>Deprecated version: N/A|Method or attribute name: getProperties<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getAvoidArea<br>Deprecated version: N/A|Method or attribute name: getAvoidArea<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getAvoidArea<br>Deprecated version: N/A|Method or attribute name: getAvoidArea<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setFullScreen<br>Deprecated version: N/A|Method or attribute name: setFullScreen<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setFullScreen<br>Deprecated version: N/A|Method or attribute name: setFullScreen<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setLayoutFullScreen<br>Deprecated version: N/A|Method or attribute name: setLayoutFullScreen<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setLayoutFullScreen<br>Deprecated version: N/A|Method or attribute name: setLayoutFullScreen<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setSystemBarEnable<br>Deprecated version: N/A|Method or attribute name: setSystemBarEnable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setSystemBarEnable<br>Deprecated version: N/A|Method or attribute name: setSystemBarEnable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setSystemBarProperties<br>Deprecated version: N/A|Method or attribute name: setSystemBarProperties<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setSystemBarProperties<br>Deprecated version: N/A|Method or attribute name: setSystemBarProperties<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: loadContent<br>Deprecated version: N/A|Method or attribute name: loadContent<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: loadContent<br>Deprecated version: N/A|Method or attribute name: loadContent<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: isShowing<br>Deprecated version: N/A|Method or attribute name: isShowing<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: isShowing<br>Deprecated version: N/A|Method or attribute name: isShowing<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: isSupportWideGamut<br>Deprecated version: N/A|Method or attribute name: isSupportWideGamut<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: isSupportWideGamut<br>Deprecated version: N/A|Method or attribute name: isSupportWideGamut<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setColorSpace<br>Deprecated version: N/A|Method or attribute name: setColorSpace<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setColorSpace<br>Deprecated version: N/A|Method or attribute name: setColorSpace<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getColorSpace<br>Deprecated version: N/A|Method or attribute name: getColorSpace<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: getColorSpace<br>Deprecated version: N/A|Method or attribute name: getColorSpace<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setBackgroundColor<br>Deprecated version: N/A|Method or attribute name: setBackgroundColor<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setBackgroundColor<br>Deprecated version: N/A|Method or attribute name: setBackgroundColor<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setBrightness<br>Deprecated version: N/A|Method or attribute name: setBrightness<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setBrightness<br>Deprecated version: N/A|Method or attribute name: setBrightness<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setFocusable<br>Deprecated version: N/A|Method or attribute name: setFocusable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setFocusable<br>Deprecated version: N/A|Method or attribute name: setFocusable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setKeepScreenOn<br>Deprecated version: N/A|Method or attribute name: setKeepScreenOn<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setKeepScreenOn<br>Deprecated version: N/A|Method or attribute name: setKeepScreenOn<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setPrivacyMode<br>Deprecated version: N/A|Method or attribute name: setPrivacyMode<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setPrivacyMode<br>Deprecated version: N/A|Method or attribute name: setPrivacyMode<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setTouchable<br>Deprecated version: N/A|Method or attribute name: setTouchable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Deprecated version changed|Method or attribute name: setTouchable<br>Deprecated version: N/A|Method or attribute name: setTouchable<br>Deprecated version: 9<br>New API: ohos.window.Window|@ohos.window.d.ts|
|Permission changed|Method or attribute name: createVirtualScreen<br>Permission: ohos.permission.CAPTURE_SCREEN. if VirtualScreenOption.surfaceId is valid|Method or attribute name: createVirtualScreen<br>Permission: ohos.permission.CAPTURE_SCREEN|@ohos.screen.d.ts|
|Permission changed|Method or attribute name: createVirtualScreen<br>Permission: ohos.permission.CAPTURE_SCREEN. if VirtualScreenOption.surfaceId is valid|Method or attribute name: createVirtualScreen<br>Permission: ohos.permission.CAPTURE_SCREEN|@ohos.screen.d.ts|
# ChangeLog of JS API Changes of the Distributed Data Management Subsystem
Compared with OpenHarmony 3.2 Beta4, OpenHarmony 3.2.10.1(Mr) has the following API changes in the distributed data management subsystem:
## cl.distributeddatamgr.1 API Change
APIs in the **kv_store** component of the distributed data management subsystem are changed:
**createKVManager** is changed from asynchronous to synchronous, because the execution duration is fixed and short and there is no need to asynchronously wait for the execution result. Therefore, the original APIs **function createKVManager(config: KVManagerConfig): Promise\<KVManager\>;** and **function createKVManager(config: KVManagerConfig, callback: AsyncCallback<KVManager>): void;** are changed to **function createKVManager(config: KVManagerConfig): KVManager;**.
You need to adapt your applications based on the following information:
**Change Impacts**
JS APIs in API version 9 are affected. The application needs to adapt these APIs so that it can properly implement functions in the SDK environment of the new version.
**Key API/Component Changes**
| Module | Class | Method/Attribute/Enumeration/Constant | Change Type|
| ------------------------ | ------------------ | ------------------------------------------------------------ | -------- |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): Promise\<KVManager\>; | Deleted |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): KVManager; | Changed |
**Adaptation Guide**
The following illustrates how to call **createKVManager** to create a **KVManager** object.
Stage model:
```ts
import AbilityStage from '@ohos.application.Ability'
let kvManager;
export default class MyAbilityStage extends AbilityStage {
onCreate() {
console.log("MyAbilityStage onCreate")
let context = this.context
const kvManagerConfig = {
context: context,
bundleName: 'com.example.datamanagertest',
}
try {
kvManager = distributedKVStore.createKVManager(kvManagerConfig);
} catch (e) {
console.error(`Failed to create KVManager.code is ${e.code},message is ${e.message}`);
}
}
}
```
FA model:
```ts
import featureAbility from '@ohos.ability.featureAbility'
let kvManager;
let context = featureAbility.getContext()
const kvManagerConfig = {
context: context,
bundleName: 'com.example.datamanagertest',
}
try {
kvManager = distributedKVStore.createKVManager(kvManagerConfig);
} catch (e) {
console.error(`Failed to create KVManager.code is ${e.code},message is ${e.message}`);
}
```
## cl.distributeddatamgr.2 Migration of function getRdbStoreV9 from @ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts.
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
APIs:
```ts
function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number, callback: AsyncCallback<RdbStoreV9>): void;
function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise<RdbStoreV9>;
```
The APIs are migrated from **@ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts**.
```
function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback<RdbStore>): void;
function getRdbStore(context: Context, config: StoreConfig, version: number): Promise<RdbStore>;
```
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant methods should be changed according to the preceding changes.
## cl.distributeddatamgr.3 Migration of function deleteRdbStoreV9 from @ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
APIs:
```ts
function deleteRdbStoreV9(context: Context, name: string, callback: AsyncCallback<void>): void;
function deleteRdbStoreV9(context: Context, name: string): Promise<void>;
```
The APIs are migrated from **@ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts**.
```
function deleteRdbStoreV9(context: Context, name: string, callback: AsyncCallback<void>): void;
function deleteRdbStoreV9(context: Context, name: string): Promise<void>;
```
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant methods should be changed according to the preceding changes.
## cl.distributeddatamgr.4 Migration of interface StoreConfigV9 from @ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
**interface StoreConfigV9** is migrated from **@ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts** and is renamed as **interface StoreConfig**.
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant APIs should be changed according to the preceding changes.
## cl.distributeddatamgr.5 Migration of enum SecurityLevel from @ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
**enum SecurityLevel** is migrated from **ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts**.
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant APIs should be changed according to the preceding changes.
## cl.distributeddatamgr.6 Migration of interface RdbStoreV9 from @ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
**interface RdbStoreV9** is migrated from **@ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts** and is renamed as **interface RdbStore**.
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant APIs should be changed according to the preceding changes.
## cl.distributeddatamgr.7 Migration of class RdbPredicatesV9 from ohos.data.rdb.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
**class RdbPredicatesV9** is migrated from **ohos.data.rdb.d.ts** to **@ohos.data.relationalStore.d.ts** and is renamed as **interface RdbPredicates**.
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The names of relevant APIs should be changed according to the preceding changes.
## cl.distributeddatamgr.8 Migration of interface ResultSetV9 from api/@ohos.data.relationalStore.d.ts to @ohos.data.relationalStore.d.ts
**Change Impacts**
The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
**interface ResultSetV9** is migrated from **api/data/rdb/resultSet.d.ts** to **@ohos.data.relationalStore.d.ts** and is renamed as **interface ResultSet**.
**Adaptation Guide**
* `import rdb from "@ohos.data.rdb"` is changed to `import rdb from "@ohos.data.relationalStore"`.
* The **ResultSetV9** instance is obtained only via **getRdbStoreV9**. After modifications are made according to cl.distributeddatamgr.2, the code can automatically adapt to **ResultSet**.
## cl.multimedia.av_session.001 Change of All av_session APIs to System APIs
All av_session APIs are changed to system APIs.
**Change Impacts**
Non-system applications and applications without system API permission cannot call system APIs.
**Key API/Component Changes**
All APIs are changed to system APIs. The table below describes the APIs.
| API, Enumeration, or Variable| Type| Is System API|
| -------- | -------- | ------- |
| SessionToken | interface | Yes|
| AVMetadata | interface | Yes|
| AVPlaybackState | interface | Yes|
| PlaybackPosition | interface | Yes|
| OutputDeviceInfo | interface | Yes|
| AVSessionDescriptor | interface | Yes|
| AVSessionController | interface | Yes|
| AVControlCommand | interface | Yes|
| createAVSession | function | Yes|
| getAllSessionDescriptors | function | Yes|
| createController | function | Yes|
| castAudio | function | Yes|
| on | function | Yes|
| off | function | Yes|
| sendSystemAVKeyEvent | function | Yes|
| sendSystemControlCommand | function | Yes|
| sessionId | variable | Yes|
| setAVMetadata | function | Yes|
| setAVPlaybackState | function | Yes|
| setLaunchAbility | function | Yes|
| getController | function | Yes|
| getOutputDevice | function | Yes|
| activate | function | Yes|
| deactivate | function | Yes|
| destroy | function | Yes|
| getAVPlaybackState | function | Yes|
| getAVMetadata | function | Yes|
| getOutputDevice | function | Yes|
| sendAVKeyEvent | function | Yes|
| getLaunchAbility | function | Yes|
| getRealPlaybackPositionSync | function | Yes|
| isActive | function | Yes|
| getValidCommands | function | Yes|
| sendControlCommand | function | Yes|
| AVSessionType | type | Yes|
| AVControlCommandType | type | Yes|
| LoopMode | enum | Yes|
| PlaybackState | enum | Yes|
| AVSessionErrorCode | enum | Yes|
# Multimodal Input ChangeLog
## cl.multimodalinput.1 Error Information Return Method Change of APIs
The internal APIs of the following modules used service logic return values to indicate error information, which did not comply with the error code specifications of OpenHarmony. Therefore, they are modified in API version 9 and later.
- Input device management module (**@ohos.multimodalInput.inputDevice.d.ts**): third-party APIs
- Input consumer module (**@ohos.multimodalInput.inputConsumer.d.ts**): system APIs
- Screen hopping module (**@ohos.multimodalInput.inputDeviceCooperate.d.ts**): system APIs
- Key injection module (**@ohos.multimodalInput.inputEventClient.d.ts**): system APIs
- Input listening module (**@ohos.multimodalInput.inputMonitor.d.ts**): system APIs
- Mouse pointer module (**@ohos.multimodalInput.pointer.d.ts**): system APIs and third-party APIs
Asynchronous APIs in the preceding modules have the following changes: A parameter check error is returned synchronously; a service logic error is returned via **AsyncCallback** or the **error** object of **Promise**. No change is made to synchronous APIs.
**Change Impacts**
The application developed based on earlier versions needs to adapt the method for returning API error information. Otherwise, the original service logic will be affected.
**Key API/Component Changes**
- supportKeys(deviceId: number, keys: Array&lt;KeyCode&gt;, callback: AsyncCallback&lt;Array&lt;boolean&gt;&gt;): void;
- supportKeys(deviceId: number, keys: Array&lt;KeyCode&gt;): Promise&lt;Array&lt;boolean&gt;&gt;;
- getKeyboardType(deviceId: number, callback: AsyncCallback&lt;KeyboardType&gt;): void; &gt;
- getKeyboardType(deviceId: number): Promise&lt;KeyboardType&gt;;
- setPointerSpeed(speed: number, callback: AsyncCallback&lt;void&gt;): void;
- setPointerSpeed(speed: number): Promise&lt;void&gt;;
- getPointerSpeed(callback: AsyncCallback&lt;number&gt;): void;
- getPointerSpeed(): Promise&lt;number&gt;;
- setPointerStyle(windowId: number, pointerStyle: PointerStyle, callback: AsyncCallback&lt;void&gt;): void;
- setPointerStyle(windowId: number, pointerStyle: PointerStyle): Promise&lt;void&gt;;
- getPointerStyle(windowId: number, callback: AsyncCallback&lt;PointerStyle&gt;): void;
- getPointerStyle(windowId: number): Promise&lt;PointerStyle&gt;;
- setPointerVisible(visible: boolean, callback: AsyncCallback&lt;void&gt;): void;
- setPointerVisible(visible: boolean): Promise&lt;void&gt;;
- isPointerVisible(callback: AsyncCallback&lt;boolean&gt;): void;
- isPointerVisible(): Promise&lt;boolean&gt;;
- on(type:"touch", receiver:TouchEventReceiver):void;
- on(type:"mouse", receiver:Callback&lt;MouseEvent&gt;):void;
- off(type:"touch", receiver?:TouchEventReceiver):void;
- off(type:"mouse", receiver?:Callback&lt;MouseEvent&gt;):void;
- injectEvent({KeyEvent: KeyEvent}): void;
- enable(enable: boolean, callback: AsyncCallback&lt;void&gt;): void;
- enable(enable: boolean): Promise&lt;void&gt;;
- start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCallback&lt;void&gt;): void;
- start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise&lt;void&gt;;
- stop(callback: AsyncCallback&lt;void&gt;): void;
- stop(): Promise&lt;void&gt;;
- getState(deviceDescriptor: string, callback: AsyncCallback&lt;{ state: boolean }&gt;): void;
- getState(deviceDescriptor: string): Promise&lt;{ state: boolean }&gt;;
- on(type: 'cooperation', callback: AsyncCallback&lt;{ deviceDescriptor: string, eventMsg: EventMsg }&gt;): void;
- off(type: 'cooperation', callback?: AsyncCallback&lt;void&gt;): void;
- on(type: "key", keyOptions: KeyOptions, callback: Callback&lt;KeyOptions&gt;): void;
- off(type: "key", keyOptions: KeyOptions, callback?: Callback&lt;KeyOptions&gt;): void;
Deprecated APIs:
- getDeviceIds(callback: AsyncCallback&lt;Array&lt;number&gt;&gt;): void;
- getDeviceIds(): Promise&lt;Array&lt;number&gt;&gt;;
- getDevice(deviceId: number, callback: AsyncCallback&lt;InputDeviceData&gt;): void;
- getDevice(deviceId: number): Promise&lt;InputDeviceData&gt;;
Substitute APIs:
- getDeviceList(callback: AsyncCallback&lt;Array&lt;number&gt;&gt;): void;
- getDeviceList(): Promise&lt;Array&lt;number&gt;&gt;;
- getDeviceInfo(deviceId: number, callback: AsyncCallback&lt;InputDeviceData&gt;): void;
- getDeviceInfo(deviceId: number): Promise&lt;InputDeviceData&gt;;
Changed APIs:
Before change:
- supportKeys(deviceId: number, keys: Array&lt;KeyCode&gt;, callback: Callback&lt;Array&lt;boolean&gt;&gt;): void;
- getKeyboardType(deviceId: number, callback: Callback&lt;KeyboardType&gt;): void;
After change:
- supportKeys(deviceId: number, keys: Array&lt;KeyCode&gt;, callback: AsyncCallback&lt;Array&lt;boolean&gt;&gt;): void;
- getKeyboardType(deviceId: number, callback: AsyncCallback&lt;KeyboardType&gt;): void;
**Adaptation Guide**
The following uses **setPointerVisible** as an example:
```ts
import pointer from '@ohos.multimodalInput.pointer';
pointer.setPointerVisible(true, (error) => {
console.log(`Set pointer visible success`);
});
try {
pointer.setPointerVisible(true, (error) => {
if (error) {
console.log(`Set pointer visible failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
return;
}
console.log(`Set pointer visible success`);
});
} catch (error) {
console.log(`Set pointer visible failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
}
```
# Ability Subsystem ChangeLog
## cl.ability.1 Application Component Startup Rule Change
The rules for starting application components of the ability subsystem are changed in the following scenarios:
- Start application components when the application is in the background.
- Start invisible application components across applications.
- Start **serviceAbility** and **dataAbility** of the FA model across applications.
- Use the **startAbilityByCall** API.
You need to adapt your application based on the following information.
**Change Impacts**
If new rules are not adapted, application components cannot be started in the previous scenarios.
> **NOTE**
>
> Starting application components refers to any behavior starting or connecting to an ability.
>
> 1. Start an ability using APIs such as **startAbility**, **startServiceExtensionAbility**, and **startAbilityByCall**.
> 2. Connect to an ability using APIs such as **connectAbility**, **connectServiceExtensionAbility**, **acquireDataAbilityHelper**, and **createDataShareHelper**.
**Key API/Component Changes**
- Involved application components
- Stage model
- Ability
- ServiceExtension
- DataShareExtension
- FA model
- PageAbility
- ServiceAbility
- DataAbility
- Involved APIs
- Stage model
- startAbility(want: Want, callback: AsyncCallback<void>): void;
- startAbility(want: Want, options: StartOptions, callback: AsyncCallback<void>): void;
- startAbility(want: Want, options?: StartOptions): Promise<void>;
- startAbilityByCall(want: Want): Promise<Caller>;
- startAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void;
- startAbilityWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback<void>): void;
- startAbilityWithAccount(want: Want, accountId: number, options?: StartOptions): Promise<void>;
- startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): void;
- startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback<AbilityResult>): void;
- startAbilityForResult(want: Want, options?: StartOptions): Promise<AbilityResult>;
- startAbilityForResultWithAccount(want: Want, accountId: number, callback: AsyncCallback<AbilityResult>): void;
- startAbilityForResultWithAccount(want: Want, accountId: number, options: StartOptions, callback: AsyncCallback<void>): void;
- startAbilityForResultWithAccount(want: Want, accountId: number, options?: StartOptions): Promise<AbilityResult>;
- startServiceExtensionAbility(want: Want, callback: AsyncCallback<void>): void;
- startServiceExtensionAbility(want: Want): Promise<void>;
- startServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void;
- startServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise<void>;
- stopServiceExtensionAbility(want: Want, callback: AsyncCallback<void>): void;
- stopServiceExtensionAbility(want: Want): Promise<void>;
- stopServiceExtensionAbilityWithAccount(want: Want, accountId: number, callback: AsyncCallback<void>): void;
- stopServiceExtensionAbilityWithAccount(want: Want, accountId: number): Promise<void>;
- connectAbility(want: Want, options: ConnectOptions): number;
- connectAbilityWithAccount(want: Want, accountId: number, options: ConnectOptions): number;
- createDataShareHelper(context: Context, uri: string, callback: AsyncCallback<DataShareHelper>): void
- FA model
- startAbility(parameter: StartAbilityParameter, callback: AsyncCallback<number>): void;
- startAbility(parameter: StartAbilityParameter): Promise<number>;
- startAbilityForResult(parameter: StartAbilityParameter, callback: AsyncCallback<AbilityResult>): void;
- startAbilityForResult(parameter: StartAbilityParameter): Promise<AbilityResult>;
- acquireDataAbilityHelper(uri: string): DataAbilityHelper;
- connectAbility(request: Want, options:ConnectOptions ): number;
**Adaptation Guide**
Startup rules for different scenarios are as follows:
- **Start application components when the application is in the background.**
- OpenHarmony 3.2 Beta3 rules:
- Starting application components when the application is in the background is not restricted.
- OpenHarmony 3.2 Beta4 rules:
- When the application is in the background, starting application components requires authentication. The following permission needs to be applied for:
```json
{
"name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND",
"grantMode": "system_grant",
"availableLevel": "system_basic",
"provisionEnable": true,
"distributedSceneEnable": false
}
```
> **NOTE**
>
> 1. Starting components of the same application is also restricted by this rule.
> 2. For SDKs of API version 8 or earlier, starting **serviceAbility** and **dataAbility** is not restricted by this rule.
- **Start invisible application components across applications.**
- OpenHarmony 3.2 Beta3 rules:
- For applications whose APL is normal, invisible application components cannot be started across applications.
- OpenHarmony 3.2 Beta4 rules:
- For all applications, starting invisible application components across applications requires authentication. The following permission needs to be applied for:
```json
{
"name": "ohos.permission.START_INVISIBLE_ABILITY",
"grantMode": "system_grant",
"availableLevel": "system_core",
"provisionEnable": true,
"distributedSceneEnable": false
}
```
- **Start serviceAbility and dataAbility of the FA model across applications.**
- OpenHarmony 3.2 Beta3 rules:
- Starting **serviceAbility** and **dataAbility** across applications is not restricted.
- OpenHarmony 3.2 Beta4 rules:
- Associated startup needs to be configured for the provider of **serviceAbility** and **dataAbility**. Otherwise, **serviceAbility** and **dataAbility** cannot be started across applications. (Associated startup cannot be configured for common applications.)
- **Use the startAbilityByCall API.**
- OpenHarmony 3.2 Beta3 rules:
- The API call is not restricted.
- OpenHarmony 3.2 Beta4 rules:
- The **startAbilityByCall** API cannot be called by the same application.
- Calling the **startAbilityByCall** API across applications requires authentication. The following permission needs to be applied for:
```json
{
"name": "ohos.permission.ABILITY_BACKGROUND_COMMUNICATION",
"grantMode": "system_grant",
"availableLevel": "system_basic",
"provisionEnable": true,
"distributedSceneEnable": false
}
```
> **NOTE**
>
> Using the **startAbilityByCall** API is also restricted by the background startup and across-application invisible component startup rules.
## cl.ability.2 Cross-Device Application Component Startup Rule Change (for System Applications Only)
The rules for starting cross-device application components of the ability subsystem are changed in the following scenarios:
- Start application components when the application is in the background.
- Start invisible application components across applications.
- Start **serviceAbility** of the FA model across applications.
You need to adapt your application based on the following information.
**Change Impacts**
If new rules are not adapted, application components cannot be started in the previous scenarios.
>**NOTE**
>
>Starting application components refers to any behavior starting or connecting to an ability.
>
>1. Start an ability using APIs such as **startAbility**, **startAbilityForResult**, and **startAbilityByCall**.
>2. Connect to an ability using APIs such as **connectAbility**.
**Key API/Component Changes**
- Involved application components
- Stage model
- Ability
- ServiceExtension
- FA model
- PageAbility
- ServiceAbility
- Involved APIs
- Stage model
- startAbility(want: Want, callback: AsyncCallback<void>): void;
- startAbilityByCall(want: Want): Promise<Caller>;
- startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): void;
- connectAbility(want: Want, options: ConnectOptions): number;
- FA model
- startAbility(parameter: StartAbilityParameter, callback: AsyncCallback<number>): void;
- startAbility(parameter: StartAbilityParameter): Promise<number>;
- startAbilityForResult(parameter: StartAbilityParameter, callback: AsyncCallback<AbilityResult>): void;
- startAbilityForResult(parameter: StartAbilityParameter): Promise<AbilityResult>;
- connectAbility(request: Want, options:ConnectOptions ): number;
**Adaptation Guide**
Startup rules for different scenarios are as follows:
- **Start application components when the application is in the background.**
- OpenHarmony 3.2 Beta3 rules:
- Starting application components when the application is in the background is not restricted.
- OpenHarmony 3.2 Beta4 rules:
- When the application is in the background, starting application components requires authentication. The following permission needs to be applied for:
```json
{
"name": "ohos.permission.START_ABILITIES_FROM_BACKGROUND",
"grantMode": "system_grant",
"availableLevel": "system_basic",
"provisionEnable": true,
"distributedSceneEnable": false
}
```
> **NOTE**
>
> 1. Starting components of the same application is also restricted by this rule.
> 2. For SDKs of API version 8 or earlier, starting **serviceAbility** is not restricted by this rule.
- **Start invisible application components across applications.**
- OpenHarmony 3.2 Beta3 rules:
- Invisible application components cannot be started across applications.
- OpenHarmony 3.2 Beta4 rules:
- Starting invisible application components across applications requires authentication. The following permission needs to be applied for:
```json
{
"name": "ohos.permission.START_INVISIBLE_ABILITY",
"grantMode": "system_grant",
"availableLevel": "system_core",
"provisionEnable": true,
"distributedSceneEnable": false
}
```
- **Start serviceAbility of the FA model across applications.**
- OpenHarmony 3.2 Beta3 rules:
- Starting **serviceAbility** across applications is not restricted.
- OpenHarmony 3.2 Beta4 rules:
- Associated startup needs to be configured for the **serviceAbility** provider application. Otherwise, **serviceAbility** cannot be started across applications. (Associated startup cannot be configured for common applications.)
- Configure associated startup as follows:
```json
{
"bundleName": "",
"app_signature": ["xxxxxxxxxxxxxxxxxxx"],
"associatedWakeUp": true
}
```
## cl.ability.3 API Exception Handling Method Change
Certain APIs of the ability subsystem use service logic return values to indicate error information, which does not comply with the API error code specifications of OpenHarmony.
**Change Impacts**
The application developed based on earlier versions needs to adapt the new APIs and their method for returning API error information. Otherwise, the original service logic will be affected.
**Key API/Component Changes**
For adaptation to the unified API exception handling mode, certain ability subsystem APIs are deprecated (original APIs in the following table) and corresponding new APIs in the following table are added. (In the following table, original APIs in API version 9 will be deleted, and APIs in API version 8 and earlier will be deprecated.) The newly added APIs support unified error code handling specifications and function the same as the original APIs.
| Original API | New API |
| ----------------------------------------------- | ----------------------------------------------- |
| @ohos.ability.wantConstant.d.ts | @ohos.app.ability.wantConstant.d.ts |
| @ohos.application.Ability.d.ts | @ohos.app.ability.UIAbility.d.ts |
| @ohos.application.AbilityConstant.d.ts | @ohos.app.ability.AbilityConstant.d.ts |
| @ohos.application.abilityDelegatorRegistry.d.ts | @ohos.app.ability.abilityDelegatorRegistry.d.ts |
| @ohos.application.AbilityLifecycleCallback.d.ts | @ohos.app.ability.AbilityLifecycleCallback.d.ts |
| @ohos.application.abilityManager.d.ts | @ohos.app.ability.abilityManager.d.ts |
| @ohos.application.AbilityStage.d.ts | @ohos.app.ability.AbilityStage.d.ts |
| @ohos.application.appManager.d.ts | @ohos.app.ability.appManager.d.ts |
| @ohos.application.Configuration.d.ts | @ohos.app.ability.Configuration.d.ts |
| @ohos.application.ConfigurationConstant.d.ts | @ohos.app.ability.ConfigurationConstant.d.ts |
| @ohos.application.context.d.ts | @ohos.app.ability.common.d.ts |
| @ohos.application.EnvironmentCallback.d.ts | @ohos.app.ability.EnvironmentCallback.d.ts |
| @ohos.application.errorManager.d.ts | @ohos.app.ability.errorManager.d.ts |
| @ohos.application.ExtensionAbility.d.ts | @ohos.app.ability.ExtensionAbility.d.ts |
| @ohos.application.formBindingData.d.ts | @ohos.app.form.formBindingData.d.ts |
| @ohos.application.FormExtension.d.ts | @ohos.app.form.FormExtensionAbility.d.ts |
| @ohos.application.formHost.d.ts | @ohos.app.form.formHost.d.ts |
| @ohos.application.formInfo.d.ts | @ohos.app.form.formInfo.d.ts |
| @ohos.application.formProvider.d.ts | @ohos.app.form.formProvider.d.ts |
| @ohos.application.missionManager.d.ts | @ohos.app.ability.missionManager.d.ts |
| @ohos.application.quickFixManager.d.ts | @ohos.app.ability.quickFixManager.d.ts |
| @ohos.application.ServiceExtensionAbility.d.ts | @ohos.app.ability.ServiceExtensionAbility.d.ts |
| @ohos.application.StartOptions.d.ts | @ohos.app.ability.StartOptions.d.ts |
| @ohos.application.Want.d.ts | @ohos.app.ability.Want.d.ts |
| @ohos.wantAgent.d.ts | @ohos.app.ability.wantAgent.d.ts |
**Adaptation Guide**
The original APIs are only migrated to the new namespace. Therefore, you can modify **import** to solve the adaptation problem.
If the original API uses **@ohos.application.missionManager**:
```js
import missionManager from '@ohos.application.missionManager';
```
You can directly modify **import** to switch to the new namespace:
```js
import missionManager from '@ohos.app.ability.missionManager';
```
In addition, exception handling is needed. For details, see the API reference for the new APIs.
## cl.ability.4 API Change
The names of some ability subsystem APIs are changed.
**Key API/Component Changes**
| Module | Class | Method/Attribute/Enumeration/Constant | Change Type|
| ----------------------------------------- | ----------------------- | ------------------------------------------------------------ | -------- |
| @ohos.application.Ability | Caller | onRelease(callback: OnReleaseCallBack): **void**; | Deprecated |
| @ohos.app.ability.UIAbility | Caller | on(**type**: "release", callback: OnReleaseCallBack): **void**; | Added |
| @ohos.application.Ability | Ability | dump(params: Array<**string**>): Array<**string**>; | Deprecated |
| @ohos.app.ability.UIAbility | UIAbility | onDump(params: Array<**string**>): Array<**string**>; | Added |
| @ohos.application.appManager | appManager | **function** registerApplicationStateObserver(observer: ApplicationStateObserver): **number**; | Deprecated |
| @ohos.application.appManager | appManager | **function** registerApplicationStateObserver(observer: ApplicationStateObserver, bundleNameList: Array<**string**>): **number**; | Deprecated |
| @ohos.application.appManager | appManager | **function** unregisterApplicationStateObserver(observerId: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.application.appManager | appManager | **function** unregisterApplicationStateObserver(observerId: **number**): Promise<**void**>; | Deprecated |
| @ohos.app.ability.appManager | appManager | **function** on(**type**: "applicationState", observer: ApplicationStateObserver): **number**; | Added |
| @ohos.app.ability.appManager | appManager | **function** on(**type**: "applicationState", observer: ApplicationStateObserver, bundleNameList: Array<**string**>): **number**; | Added |
| @ohos.app.ability.appManager | appManager | **function** off(**type**: "applicationState", observerId: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.app.ability.appManager | appManager | **function** off(**type**: "applicationState", observerId: **number**): Promise<**void**>; | Added |
| @ohos.application.errorManager | errorManager | **function** registerErrorObserver(observer: ErrorObserver): **number**; | Deprecated |
| @ohos.application.errorManager | errorManager | **function** unregisterErrorObserver(observerId: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.application.errorManager | errorManager | **function** unregisterErrorObserver(observerId: **number**): Promise<**void**>; | Deprecated |
| @ohos.app.ability.errorManager | errorManager | **function** on(**type**: "error", observer: ErrorObserver): **number**; | Added |
| @ohos.app.ability.errorManager | errorManager | **function** off(**type**: "error", observerId: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.app.ability.errorManager | errorManager | **function** off(**type**: "error", observerId: **number**): Promise<**void**>; | Added |
| @ohos.application.missionManager | missionManager | **function** registerMissionListener(listener: MissionListener): **number**; | Deprecated |
| @ohos.application.missionManager | missionManager | **function** unregisterMissionListener(listenerId: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.application.missionManager | missionManager | **function** unregisterMissionListener(listenerId: **number**): Promise<**void**>; | Deprecated |
| @ohos.app.ability.missionManager | missionManager | **function** on(**type**: "mission", listener: MissionListener): **number**; | Added |
| @ohos.app.ability.missionManager | missionManager | **function** off(**type**: "mission", listenerId: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.app.ability.missionManager | missionManager | **function** off(**type**: "mission", listenerId: **number**): Promise<**void**>; | Added |
| @ohos.application.FormExtension | FormExtension | onCreate(want: Want): formBindingData.FormBindingData; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onCastToNormal(formId: **string**): **void**; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onUpdate(formId: **string**): **void**; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onVisibilityChange(newStatus: { [key: **string**]: **number** }): **void**; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onEvent(formId: **string**, message: **string**): **void**; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onDestroy(formId: **string**): **void**; | Deprecated |
| @ohos.application.FormExtension | FormExtension | onShare?(formId: **string**): {[key: **string**]: **any**}; | Deprecated |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onAddForm(want: Want): formBindingData.FormBindingData; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onCastToNormalForm(formId: **string**): **void**; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onUpdateForm(formId: **string**): **void**; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onChangeFormVisibility(newStatus: { [key: **string**]: **number** }): **void**; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onFormEvent(formId: **string**, message: **string**): **void**; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onRemoveForm(formId: **string**): **void**; | Added |
| @ohos.app.form.FormExtensionAbility | FormExtensionAbility | onShareForm?(formId: **string**): {[key: **string**]: **any**}; | Added |
| @ohos.application.formHost.d.ts | formHost | **function** castTempForm(formId: **string**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.application.formHost.d.ts | formHost | **function** castTempForm(formId: **string**): Promise<**void**>; | Deprecated |
| @ohos.app.form.formHost.d.ts | formHost | **function** castToNormalForm(formId: **string**, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.app.form.formHost.d.ts | formHost | **function** castToNormalForm(formId: **string**): Promise<**void**>; | Added |
| @ohos.application.ServiceExtensionAbility | ServiceExtensionAbility | dump(params: Array<**string**>): Array<**string**>; | Deprecated |
| @ohos.app.ability.ServiceExtensionAbility | ServiceExtensionAbility | onDump(params: Array<**string**>): Array<**string**>; | Added |
| application/AbilityContext | AbilityContext | connectAbility(want: Want, options: ConnectOptions): **number**; | Deprecated |
| application/AbilityContext | AbilityContext | connectAbilityWithAccount(want: Want, accountId: **number**, options: ConnectOptions): **number**; | Deprecated |
| application/AbilityContext | AbilityContext | disconnectAbility(connection: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| application/AbilityContext | AbilityContext | disconnectAbility(connection: **number**): Promise<**void**>; | Deprecated |
| application/UIAbilityContext | UIAbilityContext | connectServiceExtensionAbilityWithAccount(want: Want, accountId: **number**, options: ConnectOptions): **number**; | Added |
| application/UIAbilityContext | UIAbilityContext | connectServiceExtensionAbilityWithAccount(want: Want, accountId: **number**, options: ConnectOptions): **number**; | Added |
| application/UIAbilityContext | UIAbilityContext | disconnectServiceExtensionAbility(connection: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| application/UIAbilityContext | UIAbilityContext | disconnectServiceExtensionAbility(connection: **number**): Promise<**void**>; | Added |
| application/ApplicationContext | ApplicationContext | registerAbilityLifecycleCallback(callback: AbilityLifecycleCallback): **number**; | Deprecated |
| application/ApplicationContext | ApplicationContext | unregisterAbilityLifecycleCallback(callbackId: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| application/ApplicationContext | ApplicationContext | unregisterAbilityLifecycleCallback(callbackId: **number**): Promise<**void**>; | Deprecated |
| application/ApplicationContext | ApplicationContext | registerEnvironmentCallback(callback: EnvironmentCallback): **number**; | Deprecated |
| application/ApplicationContext | ApplicationContext | unregisterEnvironmentCallback(callbackId: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| application/ApplicationContext | ApplicationContext | unregisterEnvironmentCallback(callbackId: **number**): Promise<**void**>; | Deprecated |
| application/ApplicationContext | ApplicationContext | on(**type**: "abilityLifecycle", callback: AbilityLifecycleCallback): **number**; | Added |
| application/ApplicationContext | ApplicationContext | off(**type**: "abilityLifecycle", callbackId: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| application/ApplicationContext | ApplicationContext | off(**type**: "abilityLifecycle", callbackId: **number**): Promise<**void**>; | Added |
| application/ApplicationContext | ApplicationContext | on(**type**: "environment", callback: EnvironmentCallback): **number**; | Added |
| application/ApplicationContext | ApplicationContext | off(**type**: "environment", callbackId: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| application/ApplicationContext | ApplicationContext | off(**type**: "environment", callbackId: **number**): Promise<**void**>; | Added |
| application/ServiceExtensionContext | ServiceExtensionContext | connectAbility(want: Want, options: ConnectOptions): **number**; | Deprecated |
| application/ServiceExtensionContext | ServiceExtensionContext | connectAbilityWithAccount(want: Want, accountId: **number**, options: ConnectOptions): **number**; | Deprecated |
| application/ServiceExtensionContext | ServiceExtensionContext | disconnectAbility(connection: **number**, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| application/ServiceExtensionContext | ServiceExtensionContext | disconnectAbility(connection: **number**): Promise<**void**>; | Deprecated |
| application/ServiceExtensionContext | ServiceExtensionContext | connectServiceExtensionAbility(want: Want, options: ConnectOptions): **number**; | Added |
| application/ServiceExtensionContext | ServiceExtensionContext | connectServiceExtensionAbilityWithAccount(want: Want, accountId: **number**, options: ConnectOptions): **number**; | Added |
| application/ServiceExtensionContext | ServiceExtensionContext | disconnectServiceExtensionAbility(connection: **number**, callback: AsyncCallback<**void**>): **void**; | Added |
| application/ServiceExtensionContext | ServiceExtensionContext | disconnectServiceExtensionAbility(connection: **number**): Promise<**void**>; | Added |
# Account Subsystem ChangeLog
## cl.account_os_account.1 Change in Error Information Return Method of Account System APIs
Certain system APIs of the account subsystem use service logic return values to indicate error information, which does not comply with the API error code specifications of OpenHarmony. The following changes are made in API version 9 and later:
Asynchronous API: An error message is returned via **AsyncCallback** or the **error** object of **Promise**.
Synchronous API: An error message is returned via an exception.
**Change Impacts**
The application developed based on earlier versions needs to adapt the new APIs and their method for returning API error information. Otherwise, the original service logic will be affected.
**Key API/Component Changes**
Before change:
- class UserAuth
- setProperty(request: SetPropertyRequest, callback: AsyncCallback&lt;number&gt;): void;
- setProperty(request: SetPropertyRequest): Promise&lt;number&gt;;
- cancelAuth(contextID: Uint8Array): number;
- class PINAuth
- registerInputer(inputer: Inputer): boolean;
- UserIdentityManager
- cancel(challenge: Uint8Array): number;
After change:
- class UserAuth
- setProperty(request: SetPropertyRequest, callback: AsyncCallback&lt;void&gt;): void;
- setProperty(request: SetPropertyRequest): Promise&lt;void&gt;;
- cancelAuth(contextID: Uint8Array): void;
- class PINAuth
- registerInputer(inputer: Inputer): void;
- UserIdentityManager
- cancel(challenge: Uint8Array): void;
**Adaptation Guide**
The following uses **setProperty** as an example for asynchronous APIs:
```
import account_osAccount from "@ohos.account.osAccount"
userAuth.setProperty({
authType: account_osAccount.AuthType.PIN,
key: account_osAccount.SetPropertyType.INIT_ALGORITHM,
setInfo: new Uint8Array([0])
}, (err) => {
if (err) {
console.log("setProperty failed, error: " + JSON.stringify(err));
} else {
console.log("setProperty successfully");
}
});
userAuth.setProperty({
authType: account_osAccount.AuthType.PIN,
key: account_osAccount.SetPropertyType.INIT_ALGORITHM,
setInfo: new Uint8Array([0])
}).catch((err) => {
if (err) {
console.log("setProperty failed, error: " + JSON.stringify(err));
} else {
console.log("setProperty successfully");
}
});
```
The following uses **registerInputer** as an example for synchronous APIs:
```
import account_osAccount from "@ohos.account.osAccount"
let pinAuth = new account_osAccount.PINAuth()
let inputer = {
onGetData: (authType, passwordRecipient) => {
let password = new Uint8Array([0]);
passwordRecipient.onSetData(authType, password);
}
}
try {
pinAuth.registerInputer(inputer);
} catch (err) {
console.log("registerInputer failed, error: " + JSON.stringify(err));
}
```
## cl.account_os_account.2 ACTION Definition Change for the Application Account Authentication Service
**Change Impacts**
For the application developed based on an earlier version, you need to modify **ACTION** in the application configuration file (**config.json** for the FA model and **module.json5** for the Stage model) to normally provide the application authentication service.
**Key API/Component Changes**
Involved constant:
@ohos.ability.wantConstant.ACTION_APP_ACCOUNT_AUTH
Before change:
ACTION_APP_ACCOUNT_AUTH = "account.appAccount.action.auth"
After change:
ACTION_APP_ACCOUNT_AUTH = "ohos.appAccount.action.auth"
**Adaptation Guide**
For a third-party application providing the account authentication service, adapt the changed application account authentication **ACTION** in the **ServiceAbility** configuration file (**config.json** for the FA module or **module.json5** for the Stage module).
```
"abilities": [
{
"name": "ServiceAbility",
"srcEntrance": "./ets/ServiceAbility/ServiceAbility.ts",
...
"visible": true,
"skills": {
{
"actions": [
"ohos.appAccount.action.auth"
]
}
}
}]
}
# Common Event and Notification Subsystem ChangeLog
## cl.notification.1 API Exception Handling Method Changes
Certain event notification APIs use service logic return values to indicate error information, which does not comply with the API error code specifications of OpenHarmony.
**Change Impacts**
The application developed based on earlier versions needs to adapt the new APIs and their method for returning API error information. Otherwise, the original service logic will be affected.
**Key API/Component Changes**
For adaptation to the unified API exception handling mode, certain event notification APIs are deprecated (original APIs in the following table) and corresponding new APIs in the following table are added. The newly added APIs support unified error code handling specifications and function the same as the original APIs.
| Original API | New API |
| ----------------------- | -------------------------------- |
| @ohos.commonEvent.d.ts | @ohos.commonEventManager.d.ts |
| @ohos.notification.d.ts | @ohos.notificationManager.d.ts |
| @ohos.notification.d.ts | @ohos.notificationSubscribe.d.ts |
**Adaptation Guide**
The original APIs are only migrated to the new namespace. Therefore, you can modify **import** to solve the adaptation problem.
If the original API uses **@ohos.commonEvent**:
```js
import commonEvent from '@ohos.commonEvent';
```
You can directly modify **import** to switch to the new namespace:
```js
import commonEvent from '@ohos.commonEventManager';
```
**@ohos.notification** is split into two namespaces. You need to select a new namespace for adaptation.
In addition, exception handling is needed. For details, see the API reference for the new APIs.
## cl.notification.2 API Changes
The names of some event notification APIs are changed.
**Key API/Component Changes**
| Module | Class | Method/Attribute/Enumeration/Constant | Change Type|
| ------------------------- | ------------------- | ------------------------------------------------------------ | -------- |
| @ohos.notification | notification | **function** enableNotification(bundle: BundleOption, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.notification | notification | **function** enableNotification(bundle: BundleOption, enable: boolean): Promise<**void**>; | Deprecated |
| @ohos.notificationManager | notificationManager | **function** setNotificationEnable(bundle: BundleOption, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.notificationManager | notificationManager | **function** setNotificationEnable(bundle: BundleOption, enable: boolean): Promise<**void**>; | Added |
| @ohos.notification | notification | **function** enableNotificationSlot(bundle: BundleOption, **type**: SlotType, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.notification | notification | **function** enableNotificationSlot(bundle: BundleOption, **type**: SlotType, enable: boolean): Promise<**void**>; | Deprecated |
| @ohos.notificationManager | notificationManager | **function** setNotificationEnableSlot(bundle: BundleOption, **type**: SlotType, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.notificationManager | notificationManager | **function** setNotificationEnableSlot(bundle: BundleOption, **type**: SlotType, enable: boolean): Promise<**void**>; | Added |
| @ohos.notification | notification | **function** enableDistributed(enable: boolean, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.notification | notification | **function** enableDistributed(enable: boolean, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.notificationManager | notificationManager | **function** setDistributedEnable(enable: boolean, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.notificationManager | notificationManager | **function** setDistributedEnable(enable: boolean): Promise<**void**>; | Added |
| @ohos.notification | notification | **function** enableDistributedByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Deprecated |
| @ohos.notification | notification | **function** enableDistributedByBundle(bundle: BundleOption, enable: boolean): Promise<**void**>; | Deprecated |
| @ohos.notificationManager | notificationManager | **function** setDistributedEnableByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback<**void**>): **void**; | Added |
| @ohos.notificationManager | notificationManager | **function** setDistributedEnableByBundle(bundle: BundleOption, enable: boolean): Promise<**void**>; | Added |
# *Example* Subsystem ChangeLog
Changes that affect contract compatibility of the last version should be described in the ChangeLog. The changes include but are not limited to those related to API names, parameters, return values, required permissions, call sequence, enumerated values, configuration parameters, and paths. The last version can be an LTS, release, beta, or monthly version, or the like. Contract compatibility, also called semantic compatibility, means that the original program behavior should remain consistent over versions.
## cl.subsystemname.x xxx Function Change (Example: DeviceType Attribute Change or Camera Permission Change. Use a short description.)
Add the number **cl.*subsystemname*.*x*** before each change title, where **cl** is the abbreviation of ChangeLog, *subsystemname* is the standard English name of the subsystem, and *x* indicates the change sequence number (starting from 1 in ascending order).
Describe the changes in terms of functions. Example: *n* and *m* of the *a* function are changed. Developers need to adapt their applications based on the change description.
If there is a requirement or design document corresponding to the change, attach the requirement number or design document number in the description.
**Change Impacts**
Describe whether released APIs (JS or native APIs) are affected or API behavior is changed.
Describe whether available applications are affected, that is, whether an adaptation is required for building the application code in the SDK environment of the new version.
**Key API/Component Changes**
List the API/component changes involved in the function change.
**Adaptation Guide (Optional)**
Provide guidance for developers on how to adapt their application to the changes to be compatible with the new version.
Example:
Change parameter *n* to *m* in the *a* file.
```
sample code
```
# ArkUI Subsystem ChangeLog
## cl.arkui.1 xcomponent API Change
The following APIs of the **xcomponent** component of the ArkUI subsystem are changed:
- **getXComponentSurfaceId** and **setXComponentSurfaceSize**: The **@systemapi** tag is removed.
- **getXComponentSurfaceId**, **getXComponentContext**, and **setXComponentSurfaceSize**: The return value types are specified.
You need to adapt your applications based on the following information.
**Change Impacts**
Released JS APIs are affected. The application needs to adapt these APIs so that it can be properly compiled in the SDK environment of the new version.
**Key API/Component Changes**
- **getXComponentSurfaceId**: is changed to a public API, with its return value type specified as string.
- **setXComponentSurfaceSize**: is changed to a public API, with its return value type specified as void.
- **getXComponentContext**: has its return value type specified as object.
**Adaptation Guide**
Startup rules for different scenarios are as follows:
Adaptions to be made:
- **getXComponentSurfaceId**
- OpenHarmony 3.2 Beta3 rules:
- System API
- No specified return value
- OpenHarmony 3.2 Beta4 rules:
- Public API
- Return value type specified as string
- You need to process the return value as a string.
- **setXComponentSurfaceSize**
- OpenHarmony 3.2 Beta3 rules:
- System API
- No specified return value
- OpenHarmony 3.2 Beta4 rules:
- Public API
- Return value type specified as void
- You need to process the return value as a void.
- **getXComponentContext**
- OpenHarmony 3.2 Beta3 rules:
- No specified return value
- OpenHarmony 3.2 Beta4 rules:
- Return value type specified as object
- You need to process the return value as an object.
## cl.arkui.2 Change of Styles of Popup Component and APIs
The styles of the **alertDialog**, **actionSheet**, and **customDialog** components, as well as the **prompt** and **promptAction** APIs were changed. Specifically speaking:
The popup background blurring effect is added to **promptAction.showDialog**, **promptAction.showActionMenu**, **alertDialog**, **actionSheet**, and **customDialog**.
**Change Impacts**
The popup background blurring effect is set by default.
**Key API/Component Changes**
APIs: **promptAction.showDialog** and **promptAction.showActionMenu;**
Components: **alertDialog**, **actionSheet**, and **customDialog**
**Adaptation Guide**
No adaptation is required.
## cl.arkui.3 Supplementation of the Initialization Mode and Restriction Verification Scenarios of Custom Components' Member Variables
For details, see [Restrictions and Extensions](../../../application-dev/quick-start/arkts-restrictions-and-extensions.md).
**Change Impacts**
If custom components' member variables are initialized or assigned with values not according to the document specifications, an error will be reported during compilation.
**Key API/Component Changes**
N/A
**Adaptation Guide**
Make modification according to specifications in the above document.
## cl.arkui.4 Supplementation of Verification Scenarios of Value Assignment Restrictions on Member Variables of Custom Parent Components and Child Components
For details, see [Restrictions and Extensions](../../../application-dev/quick-start/arkts-restrictions-and-extensions.md).
**Change Impacts**
If member variables of the parent component or child component are initialized not according to the document specifications, an error will be reported during compilation.
**Key API/Component Changes**
N/A
**Adaptation Guide**
Make modification according to specifications in the above document, using other decorators or normal member variables for value assignment.
## cl.arkui.5 Supplementation of Verification for a Single Subcomponent
Verification for a single subcomponent is enabled for the following components: **Button**, **FlowItem**, **GridItem**, **GridCol**, **ListItem**, **Navigator**, **Refresh**, **RichText**, **ScrollBar**, **StepperItem**, and **TabContent**.
**Change Impacts**
If one of the preceding components contains more than one subcomponent, an error will be reported during compilation.
**Key API/Component Changes**
```js
RichText('RichText') {
Text('Text1')
Text('Text2')
}
/* ArkTS:ERROR File: /root/newOH/developtools/ace-ets2bundle/compiler/sample/pages/home.ets:25:7
The component 'RichText' can only have a single child component. */
```
**Adaptation Guide**
Make modification based on the error message. Make sure that the specified component contains only one subcomponent.
# Telephony Subsystem ChangeLog
## cl.telephony.1 Input Parameter Change of System APIs of the SMS Module
Input parameters are changed for some released system APIs of the SMS module of the telephony subsystem, which do not comply with the API specifications of OpenHarmony. The following changes are made in API version 9 and later:
The **slotId** parameter is added to the **isImsSmsSupported** API, indicating the slot ID.
**Change Impacts**
Input parameters of JavaScript APIs need to be adapted for applications developed based on earlier versions. Otherwise, relevant functions will be affected.
**Key API/Component Changes**
- Involved APIs
isImsSmsSupported(callback: AsyncCallback<boolean>): void;
isImsSmsSupported(): Promise<boolean>;
- Before change:
```js
function isImsSmsSupported(callback: AsyncCallback<boolean>): void;
function isImsSmsSupported(): Promise<boolean>;
```
- After change:
```js
function isImsSmsSupported(slotId: number, callback: AsyncCallback<boolean>): void;
function isImsSmsSupported(slotId: number): Promise<boolean>;
```
**Adaptation Guide**
Add an input parameter. The sample code is as follows:
Callback mode
```js
let slotId = 0;
sms.isImsSmsSupported(slotId, (err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
Promise mode
```js
let slotId = 0;
let promise = sms.isImsSmsSupported(slotId);
promise.then(data => {
console.log(`isImsSmsSupported success, promise: data->${JSON.stringify(data)}`);
}).catch(err => {
console.error(`isImsSmsSupported failed, promise: err->${JSON.stringify(err)}`);
});
```
# *Example* Subsystem ChangeLog
Changes that affect contract compatibility of the last version should be described in the ChangeLog. The changes include but are not limited to those related to API names, parameters, return values, required permissions, call sequence, enumerated values, configuration parameters, and paths. The last version can be an LTS, release, beta, or monthly version, or the like. Contract compatibility, also called semantic compatibility, means that the original program behavior should remain consistent over versions.
## cl.subsystemname.x xxx Function Change (Example: DeviceType Attribute Change or Camera Permission Change. Use a short description.)
Add the number **cl.*subsystemname*.*x*** before each change title, where **cl** is the abbreviation of ChangeLog, *subsystemname* is the standard English name of the subsystem, and *x* indicates the change sequence number (starting from 1 in ascending order).
Describe the changes in terms of functions. Example: *n* and *m* of the *a* function are changed. Developers need to adapt their applications based on the change description.
If there is a requirement or design document corresponding to the change, attach the requirement number or design document number in the description.
**Change Impacts**
Describe whether released APIs (JS or native APIs) are affected or API behavior is changed.
Describe whether available applications are affected, that is, whether an adaptation is required for building the application code in the SDK environment of the new version.
**Key API/Component Changes**
List the API/component changes involved in the function change.
**Adaptation Guide (Optional)**
Provide guidance for developers on how to adapt their application to the changes to be compatible with the new version.
Example:
Change parameter *n* to *m* in the *a* file.
```
sample code
```
# *Example* Subsystem ChangeLog
Changes that affect contract compatibility of the last version should be described in the ChangeLog. The changes include but are not limited to those related to API names, parameters, return values, required permissions, call sequence, enumerated values, configuration parameters, and paths. The last version can be an LTS, release, beta, or monthly version, or the like. Contract compatibility, also called semantic compatibility, means that the original program behavior should remain consistent over versions.
## cl.subsystemname.x xxx Function Change (Example: DeviceType Attribute Change or Camera Permission Change. Use a short description.)
Add the number **cl.*subsystemname*.*x*** before each change title, where **cl** is the abbreviation of ChangeLog, *subsystemname* is the standard English name of the subsystem, and *x* indicates the change sequence number (starting from 1 in ascending order).
Describe the changes in terms of functions. Example: *n* and *m* of the *a* function are changed. Developers need to adapt their applications based on the change description.
If there is a requirement or design document corresponding to the change, attach the requirement number or design document number in the description.
**Change Impacts**
Describe whether released APIs (JS or native APIs) are affected or API behavior is changed.
Describe whether available applications are affected, that is, whether an adaptation is required for building the application code in the SDK environment of the new version.
**Key API/Component Changes**
List the API/component changes involved in the function change.
**Adaptation Guide (Optional)**
Provide guidance for developers on how to adapt their application to the changes to be compatible with the new version.
Example:
Change parameter *n* to *m* in the *a* file.
```
sample code
```
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
- [OpenHarmony Project](OpenHarmony-Overview.md) - [OpenHarmony Project](OpenHarmony-Overview.md)
- [Glossary](glossary.md) - [Glossary](glossary.md)
- OpenHarmony Release Notes - Release Notes
- OpenHarmony 3.x Releases - OpenHarmony 3.x Releases
- [OpenHarmony v3.2 Beta3 (2022-09-30)](release-notes/OpenHarmony-v3.2-beta3.md) - [OpenHarmony v3.2 Beta3 (2022-09-30)](release-notes/OpenHarmony-v3.2-beta3.md)
- [OpenHarmony v3.2 Beta2 (2022-07-30)](release-notes/OpenHarmony-v3.2-beta2.md) - [OpenHarmony v3.2 Beta2 (2022-07-30)](release-notes/OpenHarmony-v3.2-beta2.md)
...@@ -33,132 +33,132 @@ ...@@ -33,132 +33,132 @@
- [OpenHarmony v1.1.1 LTS (2021-06-22)](release-notes/OpenHarmony-1-1-1-LTS.md) - [OpenHarmony v1.1.1 LTS (2021-06-22)](release-notes/OpenHarmony-1-1-1-LTS.md)
- [OpenHarmony v1.1.0 LTS (2021-04-01)](release-notes/OpenHarmony-1-1-0-LTS.md) - [OpenHarmony v1.1.0 LTS (2021-04-01)](release-notes/OpenHarmony-1-1-0-LTS.md)
- API Differences - API Differences
- OpenHarmony 3.2 Beta3 - OpenHarmony 3.2 Beta3
- JS API Differences - JS API Differences
- [Ability framework](release-notes/api-change/v3.2-beta3/js-apidiff-ability.md) - [Ability framework](release-notes/api-diff/v3.2-beta3/js-apidiff-ability.md)
- [Accessibility subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-accessibility.md) - [Accessibility subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-accessibility.md)
- [Account subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-account.md) - [Account subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-account.md)
- [ArkUI development framework](release-notes/api-change/v3.2-beta3/js-apidiff-arkui.md) - [ArkUI development framework](release-notes/api-diff/v3.2-beta3/js-apidiff-arkui.md)
- [Power management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-battery.md) - [Power management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-battery.md)
- [Bundle management framework](release-notes/api-change/v3.2-beta3/js-apidiff-bundle.md) - [Bundle management framework](release-notes/api-diff/v3.2-beta3/js-apidiff-bundle.md)
- [Communication subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-communicate.md) - [Communication subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-communicate.md)
- [Utils subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-compiler-and-runtime.md) - [Utils subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-compiler-and-runtime.md)
- [DFX subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-dfx.md) - [DFX subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-dfx.md)
- [Distributed data management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-distributed-data.md) - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-distributed-data.md)
- [Distributed hardware subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-distributed-hardware.md) - [Distributed hardware subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-distributed-hardware.md)
- [Common event and notification subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-event-and-notification.md) - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-event-and-notification.md)
- [File management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-file-management.md) - [File management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-file-management.md)
- [Globalization subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-global.md) - [Globalization subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-global.md)
- [Graphics subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-graphic.md) - [Graphics subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-graphic.md)
- [Misc services subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-misc.md) - [Misc services subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-misc.md)
- [Multimodal input subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-multi-modal-input.md) - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-multi-modal-input.md)
- [Multimedia subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-multimedia.md) - [Multimedia subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-multimedia.md)
- [Resource scheduler subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-resource-scheduler.md) - [Resource scheduler subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-resource-scheduler.md)
- [Security subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-security.md) - [Security subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-security.md)
- [Pan-sensor subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-sensor.md) - [Pan-sensor subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-sensor.md)
- [DSoftBus subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-soft-bus.md) - [DSoftBus subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-soft-bus.md)
- [Telephony subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-telephony.md) - [Telephony subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-telephony.md)
- [Test subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-unitest.md) - [Test subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-unitest.md)
- [Update subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-update.md) - [Update subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-update.md)
- [Web subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-web.md) - [Web subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-web.md)
- [Window manager subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-window.md) - [Window manager subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-window.md)
- [Updates (OpenHarmony 3.2 Beta2 -> OpenHarmony 3.2 Beta3)](release-notes/api-change/v3.2-beta3/changelog-v3.2-beta3.md) - [Updates (OpenHarmony 3.2 Beta2 -> OpenHarmony 3.2 Beta3)](release-notes/changelogs/v3.2-beta3/changelog-v3.2-beta3.md)
- OpenHarmony 3.2 Beta2 - OpenHarmony 3.2 Beta2
- JS API Differences - JS API Differences
- [Ability framework](release-notes/api-change/v3.2-beta2/js-apidiff-ability.md) - [Ability framework](release-notes/api-diff/v3.2-beta2/js-apidiff-ability.md)
- [Accessibility subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-accessibility.md) - [Accessibility subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-accessibility.md)
- [Account subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-account.md) - [Account subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-account.md)
- [ArkUI development framework](release-notes/api-change/v3.2-beta2/js-apidiff-arkui.md) - [ArkUI development framework](release-notes/api-diff/v3.2-beta2/js-apidiff-arkui.md)
- [Bundle management framework](release-notes/api-change/v3.2-beta2/js-apidiff-bundle.md) - [Bundle management framework](release-notes/api-diff/v3.2-beta2/js-apidiff-bundle.md)
- [Communication subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-communicate.md) - [Communication subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-communicate.md)
- [Utils subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-compiler-and-runtime.md) - [Utils subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-compiler-and-runtime.md)
- [DFX subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-dfx.md) - [DFX subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-dfx.md)
- [Distributed data management subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-distributed-data.md) - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-distributed-data.md)
- [Common event and notification subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-event-and-notification.md) - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-event-and-notification.md)
- [File management subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-file-management.md) - [File management subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-file-management.md)
- [Location subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-geolocation.md) - [Location subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-geolocation.md)
- [Globalization subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-global.md) - [Globalization subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-global.md)
- [Graphics subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-graphic.md) - [Graphics subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-graphic.md)
- [Misc services subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-misc.md) - [Misc services subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-misc.md)
- [Multimodal input subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-multi-modal-input.md) - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-multi-modal-input.md)
- [Multimedia subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-multimedia.md) - [Multimedia subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-multimedia.md)
- [Resource scheduler subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-resource-scheduler.md) - [Resource scheduler subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-resource-scheduler.md)
- [Security subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-security.md) - [Security subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-security.md)
- [Pan-sensor subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-sensor.md) - [Pan-sensor subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-sensor.md)
- [DSoftBus subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-soft-bus.md) - [DSoftBus subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-soft-bus.md)
- [Test subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-unitest.md) - [Test subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-unitest.md)
- [Update subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-update.md) - [Update subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-update.md)
- [USB subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-usb.md) - [USB subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-usb.md)
- [User IAM subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-user-authentication.md) - [User IAM subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-user-authentication.md)
- [Web subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-web.md) - [Web subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-web.md)
- [Window manager subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-window.md) - [Window manager subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-window.md)
- ChangeLog - ChangeLog
- [Updates (OpenHarmony 3.2 Beta1 -> OpenHarmony 3.2 Beta2)](release-notes/api-change/v3.2-beta2/changelog-v3.2-beta2.md) - [Updates (OpenHarmony 3.2 Beta1 -> OpenHarmony 3.2 Beta2)](release-notes/changelogs/v3.2-beta2/changelog-v3.2-beta2.md)
- [Adaptation Guide for the Application Sandbox](release-notes/api-change/v3.2-beta2/application-sandbox-adaptation-guide.md) - [Adaptation Guide for the Application Sandbox](release-notes/changelogs/v3.2-beta2/application-sandbox-adaptation-guide.md)
- OpenHarmony 3.2 Beta1 - OpenHarmony 3.2 Beta1
- JS API Differences - JS API Differences
- [Ability framework](release-notes/api-change/v3.2-beta1/js-apidiff-ability.md) - [Ability framework](release-notes/api-diff/v3.2-beta1/js-apidiff-ability.md)
- [ArkUI development framework](release-notes/api-change/v3.2-beta1/js-apidiff-arkui.md) - [ArkUI development framework](release-notes/api-diff/v3.2-beta1/js-apidiff-arkui.md)
- [Power management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-battery.md) - [Power management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-battery.md)
- [Bundle management framework](release-notes/api-change/v3.2-beta1/js-apidiff-bundle.md) - [Bundle management framework](release-notes/api-diff/v3.2-beta1/js-apidiff-bundle.md)
- [Communication subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-communicate.md) - [Communication subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-communicate.md)
- [DFX subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-dfx.md) - [DFX subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-dfx.md)
- [Distributed data management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-distributed-data.md) - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-distributed-data.md)
- [Common event and notification subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-event-and-notification.md) - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-event-and-notification.md)
- [File management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-file-management.md) - [File management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-file-management.md)
- [Globalization subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-global.md) - [Globalization subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-global.md)
- [Startup subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-init.md) - [Startup subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-init.md)
- [Misc services subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-misc.md) - [Misc services subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-misc.md)
- [Multimodal input subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-multi-modal-input.md) - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-multi-modal-input.md)
- [Multimedia subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-multimedia.md) - [Multimedia subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-multimedia.md)
- [Distributed scheduler subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-resource-scheduler.md) - [Distributed scheduler subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-resource-scheduler.md)
- [Test subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-unitest.md) - [Test subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-unitest.md)
- [Web subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-web.md) - [Web subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-web.md)
- [Window manager subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-window.md) - [Window manager subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-window.md)
- [Native API Differences](release-notes/api-change/v3.2-beta1/native-apidiff-v3.2-beta.md) - [Native API Differences](release-notes/api-diff/v3.2-beta1/native-apidiff-v3.2-beta.md)
- OpenHarmony 3.1 Release - OpenHarmony 3.1 Release
- JS API Differences (API Version 8) - JS API Differences (API Version 8)
- [Ability framework](release-notes/api-change/v3.1-Release/js-apidiff-ability.md) - [Ability framework](release-notes/api-diff/v3.1-Release/js-apidiff-ability.md)
- [Accessibility subsystem](release-notes/api-change/v3.1-Release/js-apidiff-accessibility.md) - [Accessibility subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-accessibility.md)
- [Account subsystem](release-notes/api-change/v3.1-Release/js-apidiff-account.md) - [Account subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-account.md)
- [ArkUI development framework](release-notes/api-change/v3.1-Release/js-apidiff-ace.md) - [ArkUI development framework](release-notes/api-diff/v3.1-Release/js-apidiff-ace.md)
- [Power management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-battery.md) - [Power management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-battery.md)
- [Bundle management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-bundle.md) - [Bundle management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-bundle.md)
- [Communication subsystem](release-notes/api-change/v3.1-Release/js-apidiff-communicate.md) - [Communication subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-communicate.md)
- [Multi-language Runtime subsystem](release-notes/api-change/v3.1-Release/js-apidiff-compiler-and-runtime.md) - [Multi-language Runtime subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-compiler-and-runtime.md)
- [DFX subsystem](release-notes/api-change/v3.1-Release/js-apidiff-dfx.md) - [DFX subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-dfx.md)
- [Distributed data management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-distributed-data.md) - [Distributed data management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-distributed-data.md)
- [Distributed hardware subsystem](release-notes/api-change/v3.1-Release/js-apidiff-distributed-hardware.md) - [Distributed hardware subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-distributed-hardware.md)
- [Common event and notification subsystem](release-notes/api-change/v3.1-Release/js-apidiff-event-and-notification.md) - [Common event and notification subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-event-and-notification.md)
- [File management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-file-management.md) - [File management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-file-management.md)
- [Location subsystem](release-notes/api-change/v3.1-Release/js-apidiff-geolocation.md) - [Location subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-geolocation.md)
- [Globalization subsystem](release-notes/api-change/v3.1-Release/js-apidiff-global.md) - [Globalization subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-global.md)
- [Graphics subsystem](release-notes/api-change/v3.1-Release/js-apidiff-graphic.md) - [Graphics subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-graphic.md)
- [Misc services subsystem](release-notes/api-change/v3.1-Release/js-apidiff-misc.md) - [Misc services subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-misc.md)
- [Multimodal input subsystem](release-notes/api-change/v3.1-Release/js-apidiff-multi-modal-input.md) - [Multimodal input subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-multi-modal-input.md)
- [Multimedia subsystem](release-notes/api-change/v3.1-Release/js-apidiff-multimedia.md) - [Multimedia subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-multimedia.md)
- [Network management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-network.md) - [Network management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-network.md)
- [Distributed scheduler subsystem](release-notes/api-change/v3.1-Release/js-apidiff-resource-scheduler.md) - [Distributed scheduler subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-resource-scheduler.md)
- [Security subsystem](release-notes/api-change/v3.1-Release/js-apidiff-security.md) - [Security subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-security.md)
- [Pan-sensor subsystem](release-notes/api-change/v3.1-Release/js-apidiff-sensor.md) - [Pan-sensor subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-sensor.md)
- [Application framework subsystem](release-notes/api-change/v3.1-Release/js-apidiff-settings.md) - [Application framework subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-settings.md)
- [DSoftBus subsystem](release-notes/api-change/v3.1-Release/js-apidiff-soft-bus.md) - [DSoftBus subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-soft-bus.md)
- [Telephony subsystem](release-notes/api-change/v3.1-Release/js-apidiff-telephony.md) - [Telephony subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-telephony.md)
- [USB subsystem](release-notes/api-change/v3.1-Release/js-apidiff-usb.md) - [USB subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-usb.md)
- [User IAM subsystem](release-notes/api-change/v3.1-Release/js-apidiff-user-authentication.md) - [User IAM subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-user-authentication.md)
- [Window manager subsystem](release-notes/api-change/v3.1-Release/js-apidiff-window.md) - [Window manager subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-window.md)
- [Native API Differences](release-notes/api-change/v3.1-Release/native-apidiff-v3.1-release.md) - [Native API Differences](release-notes/api-diff/v3.1-Release/native-apidiff-v3.1-release.md)
- [Updates (OpenHarmony 3.1 Beta -> OpenHarmony 3.1 Release)](release-notes/api-change/v3.1-Release/changelog-v3.1-release.md) - [Updates (OpenHarmony 3.1 Beta -> OpenHarmony 3.1 Release)](release-notes/changelogs/v3.1-Release/changelog-v3.1-release.md)
- OpenHarmony 3.1 Beta - OpenHarmony 3.1 Beta
- [JS API Differences](release-notes/api-change/v3.1-beta/js-apidiff-v3.1-beta.md) - [JS API Differences](release-notes/api-diff/v3.1-beta/js-apidiff-v3.1-beta.md)
- [Native API Differences](release-notes/api-change/v3.1-beta/native-apidiff-v3.1-beta.md) - [Native API Differences](release-notes/api-diff/v3.1-beta/native-apidiff-v3.1-beta.md)
- [Updates (OpenHarmony 3.0 -> OpenHarmony 3.1 Beta)](release-notes/api-change/v3.1-beta/changelog-v3.1-beta.md) - [Updates (OpenHarmony 3.0 -> OpenHarmony 3.1 Beta)](release-notes/api-diff/v3.1-beta/changelog-v3.1-beta.md)
- OpenHarmony 3.0 LTS - OpenHarmony 3.0 LTS
- [JS API Differences](release-notes/api-change/v3.0-LTS/js-apidiff-v3.0-lts.md) - [JS API Differences](release-notes/api-diff/v3.0-LTS/js-apidiff-v3.0-lts.md)
- OpenHarmony v2.2 Beta2 - OpenHarmony v2.2 Beta2
- [JS API Differences](release-notes/api-change/v2.2-beta2/js-apidiff-v2.2-beta2.md) - [JS API Differences](release-notes/api-diff/v2.2-beta2/js-apidiff-v2.2-beta2.md)
- [Native API Differences](release-notes/api-change/v2.2-beta2/native-apidiff-v2.2-beta2.md) - [Native API Differences](release-notes/api-diff/v2.2-beta2/native-apidiff-v2.2-beta2.md)
- OpenHarmony Third-Party Components - OpenHarmony Third-Party Components
- [OpenHarmony Third-Party Components](third-party-components/third-party-components-introduction.md) - [OpenHarmony Third-Party Components](third-party-components/third-party-components-introduction.md)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册