diff --git a/en/application-dev/file-management/medialibrary-resource-guidelines.md b/en/application-dev/file-management/medialibrary-resource-guidelines.md index 737ea4e48fa24c38f47fe7595e9df6e1370ab69a..d3ca37dc5be9163a4de8c303aa81704d95056bc1 100644 --- a/en/application-dev/file-management/medialibrary-resource-guidelines.md +++ b/en/application-dev/file-management/medialibrary-resource-guidelines.md @@ -6,7 +6,7 @@ Your applications can use the APIs provided by the **mediaLibrary** module to pe > > Before developing features, read [MediaLibrary Overview](medialibrary-overview.md) to learn how to obtain a **MediaLibrary** instance and request the permissions to call the APIs of **MediaLibrary**. -To ensure the application running efficiency, most **MediaLibrary** API calls are asynchronous, and both callback and promise modes are provided for these APIs. The following code samples use the promise mode. For details about the APIs, see [MediaLibrary API Reference](../reference/apis/js-apis-medialibrary.md). +To maximize the application running efficiency, most **MediaLibrary** API calls are asynchronous in callback or promise mode. The following code samples use the promise mode. For details about the APIs, see [MediaLibrary API Reference](../reference/apis/js-apis-medialibrary.md). ## Querying Media Assets @@ -215,7 +215,7 @@ async function getCameraImagePromise() { ## Obtaining the Thumbnail of an Image or a Video -You can call [FileAsset.getThumbnail](../reference/apis/js-apis-medialibrary.md#getthumbnail8-2) with the thumbnail size passed in to obtain the thumbnail of an image or a video. Thumbnails are usually displayed on the UI. +You can call [FileAsset.getThumbnail](../reference/apis/js-apis-medialibrary.md#getthumbnail8-2) with the thumbnail size passed in to obtain the thumbnail of an image or a video. Your application can use thumbnails to offer a quick preview on images and videos. **Prerequisites** @@ -224,8 +224,6 @@ You can call [FileAsset.getThumbnail](../reference/apis/js-apis-medialibrary.md# ### Obtaining the Thumbnail of an Image -Your application may need to obtain the thumbnail of an image for preview purposes. - The following describes how to obtain the thumbnail (size: 720 x 720) of the first image in the album. **How to Develop** @@ -273,7 +271,7 @@ You can call [MediaLibrary.createAsset](../reference/apis/js-apis-medialibrary.m - You have obtained a **MediaLibrary** instance. - You have granted the permission **ohos.permission.WRITE_MEDIA**. -- [Obtain the public directory](medialibrary-filepath-guidelines.md). +- [You have obtained a public directory](medialibrary-filepath-guidelines.md). The following describes how to create a file of the **MediaType.FILE** type. @@ -296,7 +294,7 @@ async function example() { You can use [FileAsset.trash](../reference/apis/js-apis-medialibrary.md#trash8) to move a media asset to the recycle bin. -By default, files in the recycle bin will be stored for 30 days. During this period, you can set **isTrash** in **trash** to **false** to recover the files from the recycle bin. Application users can also recover the files through the system applications **Files** or **Gallery**. +By default, files in the recycle bin will be stored for 30 days before being permanently removed. During this period, you can set **isTrash** in **trash** to **false** to recover the files. Application users can also recover the files through the system applications **Files** or **Gallery**. **Prerequisites** @@ -339,11 +337,9 @@ async function example() { ## Renaming a Media Asset -Renaming modifies the **FileAsset.displayName** attribute of a file, that is, the displayed file name, including the file name extension. - -After the modification, call [FileAsset.commitModify](../reference/apis/js-apis-medialibrary.md#commitmodify8-1) to commit the modification to the database. +To rename a media asset, modify the **FileAsset.displayName** attribute (which specifies the displayed file name, including the file name extension) and commit the modification through [FileAsset.commitModify](../reference/apis/js-apis-medialibrary.md#commitmodify8-1). -Before renaming a file, you must call [FetchFileResult](../reference/apis/js-apis-medialibrary.md#fetchfileresult7) to obtain the file. +Before renaming a file, you must obtain the file, for example, by calling [FetchFileResult](../reference/apis/js-apis-medialibrary.md#fetchfileresult7). **Prerequisites** @@ -358,7 +354,7 @@ The following describes how to rename the first file in the result set as **newt 2. Call **getFileAssets** to obtain the images in the target album. 3. Call **getFirstObject** to obtain the first image among all the images obtained. 4. Rename the image as **newImage.jpg**. -5. Call **FileAsset.commitModify** to commit the modification of the attributes to the database. +5. Call **FileAsset.commitModify** to commit the modification to the database. ```ts async function example() { diff --git a/en/application-dev/media/avsession-guidelines.md b/en/application-dev/media/avsession-guidelines.md new file mode 100644 index 0000000000000000000000000000000000000000..6106509fbfe30a7b437ec574843f50cd7bf1aceb --- /dev/null +++ b/en/application-dev/media/avsession-guidelines.md @@ -0,0 +1,629 @@ +# AVSession Development + +## Development for the Session Access End + +### Basic Concepts +- **AVMetadata**: media data related attributes, including the IDs of the current media asset, previous media asset, and next media asset, title, author, album, writer, and duration. +- **AVSessionDescriptor**: descriptor about a media session, including the session ID, session type (audio/video), custom session name (**sessionTag**), and information about the corresponding application (**elementName**). +- **AVPlaybackState**: information related to the media playback state, including the playback state, position, speed, buffered time, loop mode, and whether the media asset is favorited (**isFavorite**). + +### Available APIs +The table below lists the APIs available for the development of the session access end. The APIs use either a callback or promise to return the result. The APIs listed below use a callback, which provide the same functions as their counterparts that use a promise. For details, see [AVSession Management](../reference/apis/js-apis-avsession.md). + +Table 1 Common APIs for session access end development + +| API | Description | +|----------------------------------------------------------------------------------|-------------| +| createAVSession(context: Context, tag: string, type: AVSessionType, callback: AsyncCallback\): void | Creates a session.| +| setAVMetadata(data: AVMetadata, callback: AsyncCallback\): void | Sets session metadata. | +| setAVPlaybackState(state: AVPlaybackState, callback: AsyncCallback\): void | Sets the playback state information. | +| setLaunchAbility(ability: WantAgent, callback: AsyncCallback\): void | Sets the launcher ability.| +| getController(callback: AsyncCallback\): void | Obtains the controller of this session.| +| getOutputDevice(callback: AsyncCallback\): void | Obtains the output device information. | +| activate(callback: AsyncCallback\): void | Activates this session. | +| destroy(callback: AsyncCallback\): void | Destroys this session. | + +### How to Develop +1. Import the modules. + +```js +import avSession from '@ohos.multimedia.avsession'; +import wantAgent from '@ohos.wantAgent'; +import featureAbility from '@ohos.ability.featureAbility'; +``` + +2. Create and activate a session. +```js +// Define global variables. +let mediaFavorite = false; +let currentSession = null; +let context = featureAbility.getContext(); + +// Create an audio session. +avSession.createAVSession(context, "AudioAppSample", 'audio').then((session) => { + currentSession = session; + currentSession.activate(); // Activate the session. +}).catch((err) => { + console.info(`createAVSession : ERROR : ${err.message}`); +}); +``` + +3. Set the session information, including: +- Session metadata. In addition to the current media asset ID (mandatory), you can set the title, album, author, duration, and previous/next media asset ID. For details about the session metadata, see **AVMetadata** in the API document. +- Launcher ability, which is implemented by calling an API of **WantAgent**. Generally, **WantAgent** is used to encapsulate want information. For more information, see [wantAgent](../reference/apis/js-apis-wantAgent.md). +- Playback state information. +```js +// Set the session metadata. +let metadata = { + assetId: "121278", + title: "lose yourself", + artist: "Eminem", + author: "ST", + album: "Slim shady", + writer: "ST", + composer: "ST", + duration: 2222, + mediaImage: "https://www.example.com/example.jpg", // Set it based on your project requirements. + subtitle: "8 Mile", + description: "Rap", + lyric: "https://www.example.com/example.lrc", // Set it based on your project requirements. + previousAssetId: "121277", + nextAssetId: "121279", +}; +currentSession.setAVMetadata(metadata).then(() => { + console.info('setAVMetadata successfully'); +}).catch((err) => { + console.info(`setAVMetadata : ERROR : ${err.message}`); +}); +``` + +```js +// Set the launcher ability. +let wantAgentInfo = { + wants: [ + { + bundleName: "com.neu.setResultOnAbilityResultTest1", + abilityName: "com.example.test.MainAbility", + } + ], + operationType: wantAgent.OperationType.START_ABILITIES, + requestCode: 0, + wantAgentFlags:[wantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG] +} + +wantAgent.getWantAgent(wantAgentInfo).then((agent) => { + currentSession.setLaunchAbility(agent).then(() => { + console.info('setLaunchAbility successfully'); + }).catch((err) => { + console.info(`setLaunchAbility : ERROR : ${err.message}`); + }); +}); +``` + +```js +// Set the playback state information. +let PlaybackState = { + state: avSession.PlaybackState.PLAYBACK_STATE_STOP, + speed: 1.0, + position:{elapsedTime: 0, updateTime: (new Date()).getTime()}, + bufferedTime: 1000, + loopMode: avSession.LoopMode.LOOP_MODE_SEQUENCE, + isFavorite: false, +}; +currentSession.setAVPlaybackState(PlaybackState).then(() => { + console.info('setAVPlaybackState successfully'); +}).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); +}); +``` + +```js +// Obtain the controller of this session. +currentSession.getController().then((selfController) => { + console.info('getController successfully'); +}).catch((err) => { + console.info(`getController : ERROR : ${err.message}`); +}); +``` + +```js +// Obtain the output device information. +currentSession.getOutputDevice().then((outputInfo) => { + console.info(`getOutputDevice successfully, deviceName : ${outputInfo.deviceName}`); +}).catch((err) => { + console.info(`getOutputDevice : ERROR : ${err.message}`); +}); +``` + +4. Subscribe to control command events. +```js +// Subscribe to the 'play' command event. +currentSession.on('play', () => { + console.log ("Call AudioPlayer.play."); + // Set the playback state information. + currentSession.setAVPlaybackState({state: avSession.PlaybackState.PLAYBACK_STATE_PLAY}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + + +// Subscribe to the 'pause' command event. +currentSession.on('pause', () => { + console.log ("Call AudioPlayer.pause."); + // Set the playback state information. + currentSession.setAVPlaybackState({state: avSession.PlaybackState.PLAYBACK_STATE_PAUSE}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'stop' command event. +currentSession.on('stop', () => { + console.log ("Call AudioPlayer.stop."); + // Set the playback state information. + currentSession.setAVPlaybackState({state: avSession.PlaybackState.PLAYBACK_STATE_STOP}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'playNext' command event. +currentSession.on('playNext', () => { + // When the media file is not ready, download and cache the media file, and set the 'PREPARE' state. + currentSession.setAVPlaybackState({state: avSession.PlaybackState.PLAYBACK_STATE_PREPARE}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); + // The media file is obtained. + currentSession.setAVMetadata({assetId: '58970105', title: 'See you tomorrow'}).then(() => { + console.info('setAVMetadata successfully'); + }).catch((err) => { + console.info(`setAVMetadata : ERROR : ${err.message}`); + }); + console.log ("Call AudioPlayer.play."); + // Set the playback state information. + let time = (new Data()).getTime(); + currentSession.setAVPlaybackState({state: avSession.PlaybackState.PLAYBACK_STATE_PLAY, position: {elapsedTime: 0, updateTime: time}, bufferedTime:2000}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'fastForward' command event. +currentSession.on('fastForward', () => { + console.log("Call AudioPlayer for fast forwarding."); + // Set the playback state information. + currentSession.setAVPlaybackState({speed: 2.0}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'seek' command event. +currentSession.on('seek', (time) => { + console.log("Call AudioPlayer.seek."); + // Set the playback state information. + currentSession.setAVPlaybackState({position: {elapsedTime: time, updateTime: (new Data()).getTime()}}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'setSpeed' command event. +currentSession.on('setSpeed', (speed) => { + console.log(`Call AudioPlayer to set the speed to ${speed}`); + // Set the playback state information. + currentSession.setAVPlaybackState({speed: speed}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'setLoopMode' command event. +currentSession.on('setLoopMode', (mode) => { + console.log(`The application switches to the loop mode ${mode}`); + // Set the playback state information. + currentSession.setAVPlaybackState({loopMode: mode}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); +}); + +// Subscribe to the 'toggleFavorite' command event. +currentSession.on('toggleFavorite', (assetId) => { + console.log(`The application favorites ${assetId}.`); + // Perform the switch based on the last status. + let favorite = mediaFavorite == false ? true : false; + currentSession.setAVPlaybackState({isFavorite: favorite}).then(() => { + console.info('setAVPlaybackState successfully'); + }).catch((err) => { + console.info(`setAVPlaybackState : ERROR : ${err.message}`); + }); + mediaFavorite = favorite; +}); + +// Subscribe to the key event. +currentSession.on('handleKeyEvent', (event) => { + console.log(`User presses the key ${event.keyCode}`); +}); + +// Subscribe to output device changes. +currentSession.on('outputDeviceChange', (device) => { + console.log(`Output device changed to ${device.deviceName}`); +}); +``` + +5. Release resources. +```js +// Unsubscribe from the events. +currentSession.off('play'); +currentSession.off('pause'); +currentSession.off('stop'); +currentSession.off('playNext'); +currentSession.off('playPrevious'); +currentSession.off('fastForward'); +currentSession.off('rewind'); +currentSession.off('seek'); +currentSession.off('setSpeed'); +currentSession.off('setLoopMode'); +currentSession.off('toggleFavorite'); +currentSession.off('handleKeyEvent'); +currentSession.off('outputDeviceChange'); + +// Deactivate the session and destroy the object. +currentSession.deactivate().then(() => { + currentSession.destory(); +}); +``` + +### Verification +Touch the play, pause, or next button on the media application. Check whether the media playback state changes accordingly. + +### FAQs + +1. Session Service Exception +- Symptoms + + The session service is abnormal, and the application cannot obtain a response from the session service. For example, the session service is not running or the communication with the session service fails. The error message "Session service exception" is displayed. + +- Possible causes + + The session service is killed during session restart. + +- Solution + + (1) The system retries the operation automatically. If the error persists for 3 seconds or more, stop the operation on the session or controller. + + (2) Destroy the current session or session controller and re-create it. If the re-creation fails, stop the operation on the session. + +2. Session Does Not Exist +- Symptoms + + Parameters are set for or commands are sent to the session that does not exist. The error message "The session does not exist" is displayed. + +- Possible causes + + The session has been destroyed, and no session record exists on the server. + +- Solution + + (1) If the error occurs on the application, re-create the session. If the error occurs on Media Controller, stop sending query or control commands to the session. + + (2) If the error occurs on the session service, query the current session record and pass the correct session ID when creating the controller. + +3. Session Not Activated +- Symptoms + + A control command or event is sent to the session when it is not activated. The error message "The session not active" is displayed. + +- Possible causes + + The session is in the inactive state. + +- Solution + + Stop sending the command or event. Subscribe to the session activation status, and resume the sending when the session is activated. + +## Development for the Session Control End (Media Controller) + +### Basic Concepts +- Remote projection: A local media session is projected to a remote device. The local controller sends commands to control media playback on the remote device. +- Sending key events: The controller controls media playback by sending key events. +- Sending control commands: The controller controls media playback by sending control commands. +- Sending system key events: A system application calls APIs to send system key events to control media playback. +- Sending system control commands: A system application calls APIs to send system control commands to control media playback. + +### Available APIs + +The table below lists the APIs available for the development of the session control end. The APIs use either a callback or promise to return the result. The APIs listed below use a callback, which provide the same functions as their counterparts that use a promise. For details, see [AVSession Management](../reference/apis/js-apis-avsession.md). + +Table 2 Common APIs for session control end development + +| API | Description | +| ------------------------------------------------------------------------------------------------ | ----------------- | +| getAllSessionDescriptors(callback: AsyncCallback\>>): void | Obtains the descriptors of all sessions. | +| createController(sessionId: string, callback: AsyncCallback\): void | Creates a controller. | +| sendAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void | Sends a key event. | +| getLaunchAbility(callback: AsyncCallback\): void | Obtains the launcher ability. | +| sendControlCommand(command: AVControlCommand, callback: AsyncCallback\): void | Sends a control command. | +| sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void | Send a system key event. | +| sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback\): void | Sends a system control command. | +| castAudio(session: SessionToken \| 'all', audioDevices: Array\, callback: AsyncCallback\): void | Casts the media session to a remote device.| + +### How to Develop +1. Import the modules. +```js +import avSession from '@ohos.multimedia.avsession'; +import {Action, KeyEvent} from '@ohos.multimodalInput.KeyEvent'; +import wantAgent from '@ohos.wantAgent'; +import audio from '@ohos.multimedia.audio'; +``` + +2. Obtain the session descriptors and create a controller. +```js +// Define global variables. +let g_controller = new Array(); +let g_centerSupportCmd:Set = new Set(['play', 'pause', 'playNext', 'playPrevious', 'fastForward', 'rewind', 'seek','setSpeed', 'setLoopMode', 'toggleFavorite']); +let g_validCmd:Set; + +// Obtain the session descriptors and create a controller. +avSession.getAllSessionDescriptors().then((descriptors) => { + descriptors.forEach((descriptor) => { + avSession.createController(descriptor.sessionId).then((controller) => { + g_controller.push(controller); + }).catch((err) => { + console.error('createController error'); + }); + }); +}).catch((err) => { + console.error('getAllSessionDescriptors error'); +}); + +// Subscribe to the 'sessionCreate' event and create a controller. +avSession.on('sessionCreate', (session) => { + // After a session is added, you must create a controller. + avSession.createController(session.sessionId).then((controller) => { + g_controller.push(controller); + }).catch((err) => { + console.info(`createController : ERROR : ${err.message}`); + }); +}); +``` + +3. Subscribe to the session state and service changes. +```js +// Subscribe to the 'activeStateChange' event. +controller.on('activeStateChange', (isActive) => { + if (isActive) { + console.log ("The widget corresponding to the controller is highlighted."); + } else { + console.log("The widget corresponding to the controller is invalid."); + } +}); + +// Subscribe to the 'sessionDestroy' event to enable Media Controller to get notified when the session dies. +controller.on('sessionDestroy', () => { + console.info('on sessionDestroy : SUCCESS '); + controller.destroy().then(() => { + console.info('destroy : SUCCESS '); + }).catch((err) => { + console.info(`destroy : ERROR :${err.message}`); + }); +}); + +// Subscribe to the 'sessionDestroy' event to enable the application to get notified when the session dies. +avSession.on('sessionDestroy', (session) => { + let index = g_controller.findIndex((controller) => { + return controller.sessionId == session.sessionId; + }); + if (index != 0) { + g_controller[index].destroy(); + g_controller.splice(index, 1); + } +}); + +// Subscribe to the 'topSessionChange' event. +avSession.on('topSessionChange', (session) => { + let index = g_controller.findIndex((controller) => { + return controller.sessionId == session.sessionId; + }); + // Place the session on the top. + if (index != 0) { + g_controller.sort((a, b) => { + return a.sessionId == session.sessionId ? -1 : 0; + }); + } +}); + +// Subscribe to the 'sessionServiceDie' event. +avSession.on('sessionServiceDie', () => { + // The server is abnormal, and the application clears resources. + console.log("Server exception"); +}) +``` + +4. Subscribe to media session information changes. +```js +// Subscribe to metadata changes. +let metaFilter = ['assetId', 'title', 'description']; +controller.on('metadataChange', metaFilter, (metadata) => { + console.info(`on metadataChange assetId : ${metadata.assetId}`); +}); + +// Subscribe to playback state changes. +let playbackFilter = ['state', 'speed', 'loopMode']; +controller.on('playbackStateChange', playbackFilter, (playbackState) => { + console.info(`on playbackStateChange state : ${playbackState.state}`); +}); + +// Subscribe to supported command changes. +controller.on('validCommandChange', (cmds) => { + console.info(`validCommandChange : SUCCESS : size : ${cmds.size}`); + console.info(`validCommandChange : SUCCESS : cmds : ${cmds.values()}`); + g_validCmd.clear(); + for (let c of g_centerSupportCmd) { + if (cmds.has(c)) { + g_validCmd.add(c); + } + } +}); + +// Subscribe to output device changes. +controller.on('outputDeviceChange', (device) => { + console.info(`on outputDeviceChange device isRemote : ${device.isRemote}`); +}); +``` + +5. Control the session behavior. +```js +// When the user touches the play button, the control command 'play' is sent to the session. +if (g_validCmd.has('play')) { + controller.sendControlCommand({command:'play'}).then(() => { + console.info('sendControlCommand successfully'); + }).catch((err) => { + console.info(`sendControlCommand : ERROR : ${err.message}`); + }); +} + +// When the user selects the single loop mode, the corresponding control command is sent to the session. +if (g_validCmd.has('setLoopMode')) { + controller.sendControlCommand({command: 'setLoopMode', parameter: avSession.LoopMode.LOOP_MODE_SINGLE}).then(() => { + console.info('sendControlCommand successfully'); + }).catch((err) => { + console.info(`sendControlCommand : ERROR : ${err.message}`); + }); +} + +// Send a key event. +let keyItem = {code: 0x49, pressedTime: 123456789, deviceId: 0}; +let event = {action: 2, key: keyItem, keys: [keyItem]}; +controller.sendAVKeyEvent(event).then(() => { + console.info('sendAVKeyEvent Successfully'); +}).catch((err) => { + console.info(`sendAVKeyEvent : ERROR : ${err.message}`); +}); + +// The user touches the blank area on the widget to start the application. +controller.getLaunchAbility().then((want) => { + console.log("Starting the application in the foreground"); +}).catch((err) => { + console.info(`getLaunchAbility : ERROR : ${err.message}`); +}); + +// Send the system key event. +let keyItem = {code: 0x49, pressedTime: 123456789, deviceId: 0}; +let event = {action: 2, key: keyItem, keys: [keyItem]}; +avSession.sendSystemAVKeyEvent(event).then(() => { + console.info('sendSystemAVKeyEvent Successfully'); +}).catch((err) => { + console.info(`sendSystemAVKeyEvent : ERROR : ${err.message}`); +}); + +// Send a system control command to the top session. +let avcommand = {command: 'toggleFavorite', parameter: "false"}; +avSession.sendSystemControlCommand(avcommand).then(() => { + console.info('sendSystemControlCommand successfully'); +}).catch((err) => { + console.info(`sendSystemControlCommand : ERROR : ${err.message}`); +}); + +// Cast the session to another device. +let audioManager = audio.getAudioManager(); +let audioDevices; +await audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => { + audioDevices = data; + console.info('Promise returned to indicate that the device list is obtained.'); +}).catch((err) => { + console.info(`getDevices : ERROR : ${err.message}`); +}); + +avSession.castAudio('all', audioDevices).then(() => { + console.info('createController : SUCCESS'); +}).catch((err) => { + console.info(`createController : ERROR : ${err.message}`); +}); +``` + +6. Release resources. +```js +// Unsubscribe from the events. + controller.off('metadataChange'); + controller.off('playbackStateChange'); + controller.off('sessionDestroy'); + controller.off('activeStateChange'); + controller.off('validCommandChange'); + controller.off('outputDeviceChange'); + + // Destroy the controller. + controller.destroy().then(() => { + console.info('destroy : SUCCESS '); + }).catch((err) => { + console.info(`destroy : ERROR : ${err.message}`); + }); +``` + +### Verification +When you touch the play, pause, or next button in Media Controller, the playback state of the application changes accordingly. + +### FAQs +1. Controller Does Not Exist +- Symptoms + + A control command or an event is sent to the controller that does not exist. The error message "The session controller does not exist" is displayed. + +- Possible causes + + The controller has been destroyed. + +- Solution + + Query the session record and create the corresponding controller. + +2. Remote Session Connection Failure +- Symptoms + + The communication between the local session and the remote session fails. The error information "The remote session connection failed" is displayed. + +- Possible causes + + The communication between devices is interrupted. + +- Solution + + Stop sending control commands to the session. Subscribe to output device changes, and resume the sending when the output device is changed. + +3. Invalid Session Command +- Symptoms + + The control command or event sent to the session is not supported. The error message "Invalid session command" is displayed. + +- Possible causes + + The session does not support this command. + +- Solution + + Stop sending the command or event. Query the commands supported by the session, and send a command supported. + +4. Too Many Commands or Events +- Symptoms + + The session client sends too many messages or commands to the server in a period of time, causing the server to be overloaded. The error message "Command or event overload" is displayed. + +- Possible causes + + The server is overloaded with messages or events. + +- Solution + + Control the frequency of sending commands or events. diff --git a/en/application-dev/media/avsession-overview.md b/en/application-dev/media/avsession-overview.md new file mode 100644 index 0000000000000000000000000000000000000000..761483bf5052ef48cd9313261ead681b295d6604 --- /dev/null +++ b/en/application-dev/media/avsession-overview.md @@ -0,0 +1,52 @@ +# AVSession Overview + +## Overview + + AVSession, short for audio and video session, is also known as media session. + - Application developers can use the APIs provided by the **AVSession** module to connect their audio and video applications to the system's Media Controller. + - System developers can use the APIs provided by the **AVSession** module to display media information of system audio and video applications and carry out unified playback control. + + You can implement the following features through the **AVSession** module: + + 1. Unified playback control entry + + If there are multiple audio and video applications on the device, users need to switch to and access different applications to control media playback. With AVSession, a unified playback control entry of the system (such as Media Controller) is used for playback control of these audio and video applications. No more switching is required. + + 2. Better background application management + + When an application running in the background automatically starts audio playback, it is difficult for users to locate the application. With AVSession, users can quickly find the application that plays the audio clip in Media Controller. + +## Basic Concepts + +- AVSession + + A channel used for information exchange between applications and Media Controller. For AVSession, one end is the media application under control, and the other end is Media Controller. Through AVSession, an application can transfer the media playback information to Media Controller and receive control commands from Media Controller. + +- AVSessionController + + Object that controls media sessions and thereby controls the playback behavior of applications. Through AVSessionController, Media Controller can control the playback behavior of applications, obtain playback information, and send control commands. It can also monitor the playback state of applications to ensure synchronization of the media session information. + +- Media Controller + + Holder of AVSessionController. Through AVSessionController, Media Controller sends commands to control media playback of applications. + +## Implementation Principle + +The **AVSession** module provides two classes: **AVSession** and **AVSessionController**. + +**Figure 1** AVSession interaction + +![en-us_image_avsession](figures/en-us_image_avsession.png) + +- Interaction between the application and Media Controller: First, an audio application creates an **AVSession** object and sets session information, including media metadata, launcher ability, and playback state information. Then, Media Controller creates an **AVSessionController** object to obtain session-related information and send the 'play' command to the audio application. Finally, the audio application responds to the command and updates the playback state. + +- Distributed projection: When a connected device creates a local session, Media Controller or the audio application can select another device to be projected based on the device list, synchronize the local session to the remote device, and generate a controllable remote session. The remote session is controlled by sending control commands to the remote device's application through its AVSessionController. + +## Constraints + +- The playback information displayed in Media Controller is the media information proactively written by the media application to AVSession. +- Media Controller controls the playback of a media application based on the responses of the media application to control commands. +- AVSession can transmit media playback information and control commands. It does not display information or execute control commands. +- Do not develop Media Controller for common applications. For common audio and video applications running on OpenHarmony, the default control end is Media Controller, which is a system application. You do not need to carry out additional development for Media Controller. +- If you want to develop your own system running OpenHarmony, you can develop your own Media Controller. +- For better background management of audio and video applications, the **AVSession** module enforces background control for third-party applications. Only third-party applications that have accessed AVSession can play audio in the background. Otherwise, the system forcibly pauses the playback when a third-party application switches to the background. diff --git a/en/application-dev/media/figures/en-us_image_avsession.png b/en/application-dev/media/figures/en-us_image_avsession.png new file mode 100644 index 0000000000000000000000000000000000000000..3f2fede08e9c232280af09ff8c1736a8f9b8114b Binary files /dev/null and b/en/application-dev/media/figures/en-us_image_avsession.png differ diff --git a/en/application-dev/reference/apis/js-apis-avsession.md b/en/application-dev/reference/apis/js-apis-avsession.md new file mode 100644 index 0000000000000000000000000000000000000000..14e4656758b6ef17f98345767a07d7759a691eda --- /dev/null +++ b/en/application-dev/reference/apis/js-apis-avsession.md @@ -0,0 +1,3226 @@ +# AVSession Management + +The **avSession** module provides APIs for media playback control so that applications can access the system's Media Controller. + +This module provides the following common features related to media sessions: +- [AVSession](#section652893): used to set session metadata, playback state information, and more. +- [AVSessionController](#section974602): used to obtain session IDs, send commands and events to sessions, and obtain the session metadata and playback state information. + +> **NOTE** +> +> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version. + +## Modules to Import + +```js +import avSession from '@ohos.multimedia.avsession'; +``` + +## avSession.createAVSession + +createAVSession(context: Context, tag: string, type: AVSessionType): Promise\ + +Creates a media session. This API uses a promise to return the result. An ability can have only one session, and repeated calling of this API fails. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name| Type | Mandatory| Description | +| ------ | ------------------------------- | ---- | ------------------------------ | +| context| [Context](../../ability/context-userguide.md) | Yes| Application context, which provides application environment information.| +| tag | string | Yes | Custom session name. | +| type | [AVSessionType](#avsessiontype) | Yes | Session type, which can be audio or video.| + + +**Return value** + +| Type | Description | +| --------------------------------- | ------------------------------------------------------------ | +| Promise<[AVSession](#avsession)\> | Promise used to return the media session obtained, which can be used to obtain the session ID, set the metadata and playback state information, and send key events.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +import featureAbility from '@ohos.ability.featureAbility'; + +let session; +let tag = "createNewSession"; +let context = featureAbility.getContext(); + +await avSession.createAVSession(context, tag, "audio").then((data) => { + session = data; + console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`); +}).catch((err) => { + console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +## avSession.createAVSession + +createAVSession(context: Context, tag: string, type: AVSessionType, callback: AsyncCallback\): void + +Creates a media session. This API uses an asynchronous callback to return the result. An ability can have only one session, and repeated calling of this API fails. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | --------------------------------------- | ---- | ------------------------------------------------------------ | +| context| [Context](../../ability/context-userguide.md) | Yes| Application context, which provides application environment information. | +| tag | string | Yes | Custom session name. | +| type | [AVSessionType](#avsessiontype) | Yes | Session type, which can be audio or video. | +| callback | AsyncCallback<[AVSession](#avsession)\> | Yes | Callback used to return the media session obtained, which can be used to obtain the session ID, set the metadata and playback state information, and send key events.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +import featureAbility from '@ohos.ability.featureAbility'; + +let session; +let tag = "createNewSession"; +let context = featureAbility.getContext(); + +avSession.createAVSession(context, tag, "audio", function (err, data) { + if (err) { + console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + session = data; + console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`); + } +}); +``` + +## avSession.getAllSessionDescriptors + +getAllSessionDescriptors(): Promise\>> + +Obtains the descriptors of all sessions. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Return value** + +| Type | Description | +| ------------------------------------------------------------ | --------------------------------------------- | +| Promise\\>\> | Promise used to return an array of **AVSessionDescriptor** objects, each of which is read only.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +avSession.getAllSessionDescriptors().then((descriptors) => { + console.info(`getAllSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`); + if(descriptors.length > 0 ){ + console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`); + console.info(`GetAllSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`); + console.info(`GetAllSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`); + } +}).catch((err) => { + console.info(`GetAllSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +## avSession.getAllSessionDescriptors + +getAllSessionDescriptors(callback: AsyncCallback\>>): void + +Obtains the descriptors of all sessions. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------ | +| callback | AsyncCallback\>\> | Yes | Callback used to return an array of **AVSessionDescriptor** objects, each of which is read only.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 |Session service exception | + +**Example** + +```js +avSession.getAllSessionDescriptors(function (err, descriptors) { + if (err) { + console.info(`GetAllSessionDescriptors BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetAllSessionDescriptors : SUCCESS : descriptors.length : ${descriptors.length}`); + if(descriptors.length > 0 ){ + console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].isActive : ${descriptors[0].isActive}`); + console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].type : ${descriptors[0].type}`); + console.info(`getAllSessionDescriptors : SUCCESS : descriptors[0].sessionTag : ${descriptors[0].sessionTag}`); + } + } +}); +``` + +## avSession.createController + +createController(sessionId: string): Promise\ + +Creates a session controller based on the session ID. Multiple session controllers can be created. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| --------- | ------ | ---- | -------- | +| sessionId | string | Yes | Session ID.| + +**Return value** + +| Type | Description | +| ----------------------------------------------------- | ------------------------------------------------------------ | +| Promise<[AVSessionController](#avsessioncontroller)\> | Promise used to return the session controller created, which can be used to obtain the session ID,
send commands and events to sessions, and obtain metadata and playback state information.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +import featureAbility from '@ohos.ability.featureAbility'; + +let session; +let tag = "createNewSession"; +let context = featureAbility.getContext(); + +await avSession.createAVSession(context, tag, "audio").then((data) => { + session = data; + console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`); +}).catch((err) => { + console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`); +}); + +let controller; +await avSession.createController(session.sessionId).then((avcontroller) => { + controller = avcontroller; + console.info(`CreateController : SUCCESS : ${controller.sessionId}`); +}).catch((err) => { + console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +## avSession.createController + +createController(sessionId: string, callback: AsyncCallback\): void + +Creates a session controller based on the session ID. Multiple session controllers can be created. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| --------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ | +| sessionId | string | Yes | Session ID. | +| callback | AsyncCallback<[AVSessionController](#avsessioncontroller)\> | Yes | Callback used to return the session controller created, which can be used to obtain the session ID,
send commands and events to sessions, and obtain metadata and playback state information.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +import featureAbility from '@ohos.ability.featureAbility'; + +let session; +let tag = "createNewSession"; +let context = featureAbility.getContext(); + +await avSession.createAVSession(context, tag, "audio").then((data) => { + session = data; + console.info(`CreateAVSession : SUCCESS : sessionId = ${session.sessionId}`); +}).catch((err) => { + console.info(`CreateAVSession BusinessError: code: ${err.code}, message: ${err.message}`); +}); + +let controller; +avSession.createController(session.sessionId, function (err, avcontroller) { + if (err) { + console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + controller = avcontroller; + console.info(`CreateController : SUCCESS : ${controller.sessionId}`); + } +}); +``` + +## avSession.castAudio + +castAudio(session: SessionToken | 'all', audioDevices: Array): Promise\ + +Casts a session to a list of devices. This API uses a promise to return the result. + +Before calling this API, import the **ohos.multimedia.audio** module to obtain the descriptors of these audio devices. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| ------------ |--------------------------------------------------------------------------------------------------------------------------------------------------------------------| ---- | ------------------------------------------------------------ | +| session | [SessionToken](#sessiontoken) | 'all' | Yes | Session token. **SessionToken** indicates a specific token, and **'all'** indicates all tokens.| +| audioDevices | Array\<[audio.AudioDeviceDescriptor](js-apis-audio.md#audiodevicedescriptor)\> | Yes | Audio devices. | + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the cast is successful, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600104 | The remote session connection failed | + +**Example** + +```js +import audio from '@ohos.multimedia.audio'; + +let audioManager = audio.getAudioManager(); +let audioDevices; +await audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => { + audioDevices = data; + console.info('Promise returned to indicate that the device list is obtained.'); +}).catch((err) => { + console.info(`GetDevices BusinessError: code: ${err.code}, message: ${err.message}`); +}); + +avSession.castAudio('all', audioDevices).then(() => { + console.info('CreateController : SUCCESS'); +}).catch((err) => { + console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +## avSession.castAudio + +castAudio(session: SessionToken | 'all', audioDevices: Array, callback: AsyncCallback\): void + +Casts a session to a list of devices. This API uses an asynchronous callback to return the result. + +Before calling this API, import the **ohos.multimedia.audio** module to obtain the descriptors of these audio devices. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| ------------ |--------------------------------------------| ---- | ------------------------------------------------------------ | +| session | [SessionToken](#sessiontoken) | 'all' | Yes | Session token. **SessionToken** indicates a specific token, and **'all'** indicates all tokens.| +| audioDevices | Array\<[audio.AudioDeviceDescriptor](js-apis-audio.md#audiodevicedescriptor)\> | Yes | Audio devices. | +| callback | AsyncCallback | Yes | Callback used to return the result. If the casting is successful, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600104 | The remote session connection failed | + +**Example** + +```js +import audio from '@ohos.multimedia.audio'; + +let audioManager = audio.getAudioManager(); +let audioDevices; +await audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data) => { + audioDevices = data; + console.info('Promise returned to indicate that the device list is obtained.'); +}).catch((err) => { + console.info(`GetDevices BusinessError: code: ${err.code}, message: ${err.message}`); +}); + +avSession.castAudio('all', audioDevices, function (err) { + if (err) { + console.info(`CastAudio BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('CastAudio : SUCCESS '); + } +}); +``` + +## avSession.on('sessionCreate' | 'sessionDestroy' | 'topSessionChange') + +on(type: 'sessionCreate' | 'sessionDestroy' | 'topSessionChange', callback: (session: AVSessionDescriptor) => void): void + +Subscribes to session creation, session destruction, and top session change events. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type.
- **'sessionCreate'**: session creation event, which is reported when a session is created.
- **'sessionDestroy'**: session destruction event, which is reported when a session is destroyed.
- **'topSessionChange'**: top session change event, which is reported when the top session is changed.| +| callback | (session: [AVSessionDescriptor](#avsessiondescriptor)) => void | Yes | Callback used to report the session descriptor. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +avSession.on('sessionCreate', (descriptor) => { + console.info(`on sessionCreate : isActive : ${descriptor.isActive}`); + console.info(`on sessionCreate : type : ${descriptor.type}`); + console.info(`on sessionCreate : sessionTag : ${descriptor.sessionTag}`); +}); + +avSession.on('sessionDestroy', (descriptor) => { + console.info(`on sessionDestroy : isActive : ${descriptor.isActive}`); + console.info(`on sessionDestroy : type : ${descriptor.type}`); + console.info(`on sessionDestroy : sessionTag : ${descriptor.sessionTag}`); +}); + +avSession.on('topSessionChange', (descriptor) => { + console.info(`on topSessionChange : isActive : ${descriptor.isActive}`); + console.info(`on topSessionChange : type : ${descriptor.type}`); + console.info(`on topSessionChange : sessionTag : ${descriptor.sessionTag}`); +}); +``` + +## avSession.off('sessionCreate' | 'sessionDestroy' | 'topSessionChange') + +off(type: 'sessionCreate' | 'sessionDestroy' | 'topSessionChange', callback?: (session: AVSessionDescriptor) => void): void + +Unsubscribes from session creation, session destruction, and top session change events. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type.
- **'sessionCreate'**: session creation event, which is reported when a session is created.
- **'sessionDestroy'**: session destruction event, which is reported when a session is destroyed.
- **'topSessionChange'**: top session change event, which is reported when the top session is changed.| +| callback | (session: [AVSessionDescriptor](#avsessiondescriptor)) => void | No | Callback used for unsubscription. If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The **session** parameter in the callback describes a media session. The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +avSession.off('sessionCreate'); +avSession.off('sessionDestroy'); +avSession.off('topSessionChange'); +``` + +## avSession.on('sessionServiceDie') + +on(type: 'sessionServiceDie', callback: () => void): void + +Subscribes to session service death events. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'sessionServiceDie'** is reported when the session service dies.| +| callback | callback: () => void | Yes | Callback used for subscription. If the subscription is successful, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +avSession.on('sessionServiceDie', () => { + console.info('on sessionServiceDie : session is Died '); +}); +``` + +## avSession.off('sessionServiceDie') + +off(type: 'sessionServiceDie', callback?: () => void): void + +Unsubscribes from session service death events. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory | Description | +| ------ | ---------------------- | ---- | ------------------------------------------------------- | +| type | string | Yes | Event type. The event **'sessionServiceDie'** is reported when the session service dies.| +| callback | callback: () => void | No | Callback used for unsubscription. If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | + +**Example** + +```js +avSession.off('sessionServiceDie'); +``` + +## avSession.sendSystemAVKeyEvent + +sendSystemAVKeyEvent(event: KeyEvent): Promise\ + +Sends a system key event to the top session. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name| Type | Mandatory| Description | +| ------ | ------------------------------- | ---- | ---------- | +| event | [KeyEvent](js-apis-keyevent.md) | Yes | Key event.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the event is sent, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600105 | Invalid session command | + +**Example** + +```js + +let keyItem = {code:0x49, pressedTime:2, deviceId:0}; +let event = {id:1, deviceId:0, actionTime:1, screenId:1, windowId:1, action:2, key:keyItem, unicodeChar:0, keys:[keyItem], ctrlKey:false, altKey:false, shiftKey:false, logoKey:false, fnKey:false, capsLock:false, numLock:false, scrollLock:false}; + +avSession.sendSystemAVKeyEvent(event).then(() => { + console.info('SendSystemAVKeyEvent Successfully'); +}).catch((err) => { + console.info(`SendSystemAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`); +}); + +``` + +## avSession.sendSystemAVKeyEvent + +sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void + +Sends a system key event to the top session. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------- | +| event | [KeyEvent](js-apis-keyevent.md) | Yes | Key event. | +| callback | AsyncCallback | Yes | Callback used to return the result. If the event is sent, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600105 | Invalid session command | + +**Example** + +```js +let keyItem = {code:0x49, pressedTime:2, deviceId:0}; +let event = {id:1, deviceId:0, actionTime:1, screenId:1, windowId:1, action:2, key:keyItem, unicodeChar:0, keys:[keyItem], ctrlKey:false, altKey:false, shiftKey:false, logoKey:false, fnKey:false, capsLock:false, numLock:false, scrollLock:false}; + +avSession.sendSystemAVKeyEvent(event, function (err) { + if (err) { + console.info(`SendSystemAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SendSystemAVKeyEvent : SUCCESS '); + } +}); +``` + +## avSession.sendSystemControlCommand + +sendSystemControlCommand(command: AVControlCommand): Promise\ + +Sends a system control command to the top session. This API uses a promise to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| ------- | ------------------------------------- | ---- | ----------------------------------- | +| command | [AVControlCommand](#avcontrolcommand) | Yes | Command to send.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the command is sent, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600105 | Invalid session command | +| 6600107 | Command or event overload | + +**Example** + +```js +let cmd : avSession.AVControlCommandType = 'play'; +// let cmd : avSession.AVControlCommandType = 'pause'; +// let cmd : avSession.AVControlCommandType = 'stop'; +// let cmd : avSession.AVControlCommandType = 'playNext'; +// let cmd : avSession.AVControlCommandType = 'playPrevious'; +// let cmd : avSession.AVControlCommandType = 'fastForward'; +// let cmd : avSession.AVControlCommandType = 'rewind'; +let avcommand = {command:cmd}; +// let cmd : avSession.AVControlCommandType = 'seek'; +// let avcommand = {command:cmd, parameter:10}; +// let cmd : avSession.AVControlCommandType = 'setSpeed'; +// let avcommand = {command:cmd, parameter:2.6}; +// let cmd : avSession.AVControlCommandType = 'setLoopMode'; +// let avcommand = {command:cmd, parameter:avSession.LoopMode.LOOP_MODE_SINGLE}; +// let cmd : avSession.AVControlCommandType = 'toggleFavorite'; +// let avcommand = {command:cmd, parameter:"false"}; +avSession.sendSystemControlCommand(avcommand).then(() => { + console.info('SendSystemControlCommand successfully'); +}).catch((err) => { + console.info(`SendSystemControlCommand BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +## avSession.sendSystemControlCommand + +sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback\): void + +Sends a system control command to the top session. This API uses an asynchronous callback to return the result. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------- | ---- | ------------------------------------- | +| command | [AVControlCommand](#avcontrolcommand) | Yes | Command to send. | +| callback | AsyncCallback | Yes | Callback used to return the result. If the command is sent, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600105 | Invalid session command | +| 6600107 | Command or event overload | + +**Example** + +```js +let cmd : avSession.AVControlCommandType = 'play'; +// let cmd : avSession.AVControlCommandType = 'pause'; +// let cmd : avSession.AVControlCommandType = 'stop'; +// let cmd : avSession.AVControlCommandType = 'playNext'; +// let cmd : avSession.AVControlCommandType = 'playPrevious'; +// let cmd : avSession.AVControlCommandType = 'fastForward'; +// let cmd : avSession.AVControlCommandType = 'rewind'; +let avcommand = {command:cmd}; +// let cmd : avSession.AVControlCommandType = 'seek'; +// let avcommand = {command:cmd, parameter:10}; +// let cmd : avSession.AVControlCommandType = 'setSpeed'; +// let avcommand = {command:cmd, parameter:2.6}; +// let cmd : avSession.AVControlCommandType = 'setLoopMode'; +// let avcommand = {command:cmd, parameter:avSession.LoopMode.LOOP_MODE_SINGLE}; +// let cmd : avSession.AVControlCommandType = 'toggleFavorite'; +// let avcommand = {command:cmd, parameter:"false"}; +avSession.sendSystemControlCommand(avcommand, function (err) { + if (err) { + console.info(`SendSystemControlCommand BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('sendSystemControlCommand successfully'); + } +}); +``` + +## AVSession + +An **AVSession** object is created by calling [avSession.createAVSession](#avsessioncreateavsession). The object enables you to obtain the session ID and set the metadata and playback state. + +### Attributes + +**System capability**: SystemCapability.Multimedia.AVSession.Core + + +| Name | Type | Readable| Writable| Description | +| :-------- | :----- | :--- | :--- | :---------------------------- | +| sessionId | string | Yes | No | Unique session ID of the **AVSession** object.| + + +**Example** +```js +let sessionId = session.sessionId; +``` + +### setAVMetadata + +setAVMetadata(data: AVMetadata): Promise\ + +Sets session metadata. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name| Type | Mandatory| Description | +| ------ | ------------------------- | ---- | ------------ | +| data | [AVMetadata](#avmetadata) | Yes | Session metadata.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the setting is successful, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let metadata = { + assetId: "121278", + title: "lose yourself", + artist: "Eminem", + author: "ST", + album: "Slim shady", + writer: "ST", + composer: "ST", + duration: 2222, + mediaImage: "https://www.example.com/example.jpg", + subtitle: "8 Mile", + description: "Rap", + lyric: "https://www.example.com/example.lrc", + previousAssetId: "121277", + nextAssetId: "121279", +}; +session.setAVMetadata(metadata).then(() => { + console.info('SetAVMetadata successfully'); +}).catch((err) => { + console.info(`SetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### setAVMetadata + +setAVMetadata(data: AVMetadata, callback: AsyncCallback\): void + +Sets session metadata. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------- | ---- | ------------------------------------- | +| data | [AVMetadata](#avmetadata) | Yes | Session metadata. | +| callback | AsyncCallback | Yes | Callback used to return the result. If the setting is successful, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let metadata = { + assetId: "121278", + title: "lose yourself", + artist: "Eminem", + author: "ST", + album: "Slim shady", + writer: "ST", + composer: "ST", + duration: 2222, + mediaImage: "https://www.example.com/example.jpg", + subtitle: "8 Mile", + description: "Rap", + lyric: "https://www.example.com/example.lrc", + previousAssetId: "121277", + nextAssetId: "121279", +}; +session.setAVMetadata(metadata, function (err) { + if (err) { + console.info(`SetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SetAVMetadata successfully'); + } +}); +``` + +### setAVPlaybackState + +setAVPlaybackState(state: AVPlaybackState): Promise\ + +Sets information related to the session playback state. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name| Type | Mandatory| Description | +| ------ | ----------------------------------- | ---- | ---------------------------------------------- | +| data | [AVPlaybackState](#avplaybackstate) | Yes | Information related to the session playback state.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the setting is successful, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let playbackState = { + state:avSession.PlaybackState.PLAYBACK_STATE_PLAY, + speed: 1.0, + position:{elapsedTime:10, updateTime:(new Date()).getTime()}, + bufferedTime:1000, + loopMode:avSession.LoopMode.LOOP_MODE_SINGLE, + isFavorite:true, +}; +session.setAVPlaybackState(playbackState).then(() => { + console.info('SetAVPlaybackState successfully'); +}).catch((err) => { + console.info(`SetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### setAVPlaybackState + +setAVPlaybackState(state: AVPlaybackState, callback: AsyncCallback\): void + +Sets information related to the session playback state. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------- | ---- | ---------------------------------------------- | +| data | [AVPlaybackState](#avplaybackstate) | Yes | Information related to the session playback state.| +| callback | AsyncCallback | Yes | Callback used to return the result. If the setting is successful, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let PlaybackState = { + state:avSession.PlaybackState.PLAYBACK_STATE_PLAY, + speed: 1.0, + position:{elapsedTime:10, updateTime:(new Date()).getTime()}, + bufferedTime:1000, + loopMode:avSession.LoopMode.LOOP_MODE_SINGLE, + isFavorite:true, +}; +session.setAVPlaybackState(PlaybackState, function (err) { + if (err) { + console.info(`SetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SetAVPlaybackState successfully'); + } +}); +``` + +### setLaunchAbility + +setLaunchAbility(ability: WantAgent): Promise\ + +Sets a launcher ability. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| ------- | --------------------------------- | ---- | ----------------------------------------------------------- | +| ability | [WantAgent](js-apis-wantAgent.md) | Yes | Application attributes, such as the bundle name, ability name, and deviceID.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the setting is successful, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +import wantAgent from '@ohos.wantAgent'; + +// WantAgentInfo object +let wantAgentInfo = { + wants: [ + { + deviceId: "deviceId", + bundleName: "com.neu.setResultOnAbilityResultTest1", + abilityName: "com.example.test.MainAbility", + action: "action1", + entities: ["entity1"], + type: "MIMETYPE", + uri: "key={true,true,false}", + parameters: + { + mykey0: 2222, + mykey1: [1, 2, 3], + mykey2: "[1, 2, 3]", + mykey3: "ssssssssssssssssssssssssss", + mykey4: [false, true, false], + mykey5: ["qqqqq", "wwwwww", "aaaaaaaaaaaaaaaaa"], + mykey6: true, + } + } + ], + operationType: wantAgent.OperationType.START_ABILITIES, + requestCode: 0, + wantAgentFlags:[wantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG] +} + +wantAgent.getWantAgent(wantAgentInfo).then((agent) => { + session.setLaunchAbility(agent).then(() => { + console.info('SetLaunchAbility successfully'); + }).catch((err) => { + console.info(`SetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`); + }); +}); +``` + +### setLaunchAbility + +setLaunchAbility(ability: WantAgent, callback: AsyncCallback\): void + +Sets a launcher ability. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | --------------------------------- | ---- | ----------------------------------------------------------- | +| ability | [WantAgent](js-apis-wantAgent.md) | Yes | Application attributes, such as the bundle name, ability name, and deviceID.| +| callback | AsyncCallback | Yes | Callback used to return the result. If the setting is successful, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +import wantAgent from '@ohos.wantAgent'; + +// WantAgentInfo object +let wantAgentInfo = { + wants: [ + { + deviceId: "deviceId", + bundleName: "com.neu.setResultOnAbilityResultTest1", + abilityName: "com.example.test.MainAbility", + action: "action1", + entities: ["entity1"], + type: "MIMETYPE", + uri: "key={true,true,false}", + parameters: + { + mykey0: 2222, + mykey1: [1, 2, 3], + mykey2: "[1, 2, 3]", + mykey3: "ssssssssssssssssssssssssss", + mykey4: [false, true, false], + mykey5: ["qqqqq", "wwwwww", "aaaaaaaaaaaaaaaaa"], + mykey6: true, + } + } + ], + operationType: wantAgent.OperationType.START_ABILITIES, + requestCode: 0, + wantAgentFlags:[wantAgent.WantAgentFlags.UPDATE_PRESENT_FLAG] +} + +wantAgent.getWantAgent(wantAgentInfo).then((agent) => { + session.setLaunchAbility(agent, function (err) { + if (err) { + console.info(`SetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SetLaunchAbility successfully'); + } + }); +}); +``` + +### getController + +getController(): Promise\ + +Obtains the controller corresponding to this session. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ---------------------------------------------------- | ----------------------------- | +| Promise<[AVSessionController](#avsessioncontroller)> | Promise used to return the session controller.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let controller; +session.getController().then((avcontroller) => { + controller = avcontroller; + console.info(`GetController : SUCCESS : sessionid : ${controller.sessionId}`); +}).catch((err) => { + console.info(`GetController BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getController + +getController(callback: AsyncCallback\): void + +Obtains the controller corresponding to this session. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------------------------- | ---- | -------------------------- | +| callback | AsyncCallback<[AVSessionController](#avsessioncontroller)\> | Yes | Callback used to return the session controller.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +let controller; +session.getController(function (err, avcontroller) { + if (err) { + console.info(`GetController BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + controller = avcontroller; + console.info(`GetController : SUCCESS : sessionid : ${controller.sessionId}`); + } +}); +``` + +### getOutputDevice + +getOutputDevice(): Promise\ + +Obtains information about the output device for this session. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ---------------------------------------------- | --------------------------------- | +| Promise<[OutputDeviceInfo](#outputdeviceinfo)> | Promise used to return the output device information.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.getOutputDevice().then((outputDeviceInfo) => { + console.info(`GetOutputDevice : SUCCESS : isRemote : ${outputDeviceInfo.isRemote}`); +}).catch((err) => { + console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getOutputDevice + +getOutputDevice(callback: AsyncCallback\): void + +Obtains information about the output device for this session. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------------------- | ---- | ------------------------------ | +| callback | AsyncCallback<[OutputDeviceInfo](#outputdeviceinfo)\> | Yes | Callback used to return the information obtained.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.getOutputDevice(function (err, outputDeviceInfo) { + if (err) { + console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetOutputDevice : SUCCESS : isRemote : ${outputDeviceInfo.isRemote}`); + } +}); +``` + +### activate + +activate(): Promise\ + +Activates this session. A session can be used only after being activated. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the session is activated, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.activate().then(() => { + console.info('Activate : SUCCESS '); +}).catch((err) => { + console.info(`Activate BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### activate + +activate(callback: AsyncCallback\): void + +Activates this session. A session can be used only after being activated. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ---------- | +| callback | AsyncCallback | Yes | Callback used to return the result. If the session is activated, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.activate(function (err) { + if (err) { + console.info(`Activate BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('Activate : SUCCESS '); + } +}); +``` + +### deactivate + +deactivate(): Promise\ + +Deactivates this session. You can use [activate](#activate) to activate the session again. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the session is deactivated, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.deactivate().then(() => { + console.info('Deactivate : SUCCESS '); +}).catch((err) => { + console.info(`Deactivate BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### deactivate + +deactivate(callback: AsyncCallback\): void + +Deactivates this session. This API uses an asynchronous callback to return the result. + +Deactivates this session. You can use [activate](#activate) to activate the session again. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ---------- | +| callback | AsyncCallback | Yes | Callback used to return the result. If the session is deactivated, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.deactivate(function (err) { + if (err) { + console.info(`Deactivate BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('Deactivate : SUCCESS '); + } +}); +``` + +### destroy + +destroy(): Promise\ + +Destroys this session. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the session is destroyed, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.destroy().then(() => { + console.info('Destroy : SUCCESS '); +}).catch((err) => { + console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### destroy + +destroy(callback: AsyncCallback\): void + +Destroys this session. This API uses an asynchronous callback to return the result. + + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ---------- | +| callback | AsyncCallback | Yes | Callback used to return the result. If the session is destroyed, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.destroy(function (err) { + if (err) { + console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('Destroy : SUCCESS '); + } +}); +``` + +### on('play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind') + +on(type: 'play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind', callback: () => void): void + +Subscribes to playback command events. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The following events are supported: **'play'**, **'pause'**, **'stop'**, **'playNext'**, **'playPrevious'**, **'fastForward'**, and **'rewind'**.
The event is reported when the corresponding playback command is sent to the session.| +| callback | callback: () => void | Yes | Callback used for subscription. If the subscription is successful, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('play', () => { + console.info('on play entry'); +}); +session.on('pause', () => { + console.info('on pause entry'); +}); +session.on('stop', () => { + console.info('on stop entry'); +}); +session.on('playNext', () => { + console.info('on playNext entry'); +}); +session.on('playPrevious', () => { + console.info('on playPrevious entry'); +}); +session.on('fastForward', () => { + console.info('on fastForward entry'); +}); +session.on('rewind', () => { + console.info('on rewind entry'); +}); +``` + +### on('seek') + +on(type: 'seek', callback: (time: number) => void): void + +Subscribes to the seek event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ---------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'seek'** is reported when the seek command is sent to the session.| +| callback | (time: number) => void | Yes | Callback used for subscription. The **time** parameter in the callback indicates the time to seek to, in milliseconds. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** +The session does not exist +```js +session.on('seek', (time) => { + console.info(`on seek entry time : ${time}`); +}); +``` + +### on('setSpeed') + +on(type: 'setSpeed', callback: (speed: number) => void): void + +Subscribes to the event for setting the playback speed. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'setSpeed'** is reported when the command for setting the playback speed is sent to the session.| +| callback | (speed: number) => void | Yes | Callback used for subscription. The **speed** parameter in the callback indicates the playback speed. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('setSpeed', (speed) => { + console.info(`on setSpeed speed : ${speed}`); +}); +``` + +### on('setLoopMode') + +on(type: 'setLoopMode', callback: (mode: LoopMode) => void): void + +Subscribes to the event for setting the loop mode. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------- | ---- | ---- | +| type | string | Yes | Event type. The event **'setLoopMode'** is reported when the command for setting the loop mode is sent to the session.| +| callback | (mode: [LoopMode](#loopmode)) => void | Yes | Callback used for subscription. The **mode** parameter in the callback indicates the loop mode. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('setLoopMode', (mode) => { + console.info(`on setLoopMode mode : ${mode}`); +}); +``` + +### on('toggleFavorite') + +on(type: 'toggleFavorite', callback: (assetId: string) => void): void + +Subscribes to the event for favoriting a media asset. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'toggleFavorite'** is reported when the command for favoriting the media asset is sent to the session.| +| callback | (assetId: string) => void | Yes | Callback used for subscription. The **assetId** parameter in the callback indicates the media asset ID. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('toggleFavorite', (assetId) => { + console.info(`on toggleFavorite mode : ${assetId}`); +}); +``` + +### on('handleKeyEvent') + +on(type: 'handleKeyEvent', callback: (event: KeyEvent) => void): void + +Subscribes to the key event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'handleKeyEvent'** is reported when a key event is sent to the session.| +| callback | (event: [KeyEvent](js-apis-keyevent.md)) => void | Yes | Callback used for subscription. The **event** parameter in the callback indicates the key event. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('handleKeyEvent', (event) => { + console.info(`on handleKeyEvent event : ${event}`); +}); +``` + +### on('outputDeviceChange') + +on(type: 'outputDeviceChange', callback: (device: OutputDeviceInfo) => void): void + +Subscribes to output device changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'outputDeviceChange'** is reported when the output device changes.| +| callback | (device: [OutputDeviceInfo](#outputdeviceinfo)) => void | Yes | Callback used for subscription. The **device** parameter in the callback indicates the output device information. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.on('outputDeviceChange', (device) => { + console.info(`on outputDeviceChange device isRemote : ${device.isRemote}`); +}); +``` + +### off('play'|'pause'|'stop'|'playNext'|'playPrevious'|'fastForward'|'rewind') + +off(type: 'play' | 'pause' | 'stop' | 'playNext' | 'playPrevious' | 'fastForward' | 'rewind', callback?: () => void): void + +Unsubscribes from playback command events. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ---------------------------------------------------------------------------------------------------------------------------- | +| type | string | Yes | Event type. The following events are supported: **'play'**, **'pause'**, **'stop'**, **'playNext'**, **'playPrevious'**, **'fastForward'**, and **'rewind'**.| +| callback | callback: () => void | No | Callback used for unsubscription. If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('play'); +session.off('pause'); +session.off('stop'); +session.off('playNext'); +session.off('playPrevious'); +session.off('fastForward'); +session.off('rewind'); +``` + +### off('seek') + +off(type: 'seek', callback?: (time: number) => void): void + +Unsubscribes from the seek event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ---------------------- | ---- | ----------------------------------------- | +| type | string | Yes | Event type. The value is fixed at **'seek'**. | +| callback | (time: number) => void | No | Callback used for unsubscription. The **time** parameter in the callback indicates the time to seek to, in milliseconds.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('seek'); +``` + +### off('setSpeed') + +off(type: 'setSpeed', callback?: (speed: number) => void): void + +Unsubscribes from the event for setting the playback speed. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------- | ---- | -------------------------------------------| +| type | string | Yes | Event type. The value is fixed at **'setSpeed'**. | +| callback | (speed: number) => void | No | Callback used for unsubscription. The **speed** parameter in the callback indicates the playback speed.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('setSpeed'); +``` + +### off('setLoopMode') + +off(type: 'setLoopMode', callback?: (mode: LoopMode) => void): void + +Unsubscribes from the event for setting loop mode. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------- | ---- | ----- | +| type | string | Yes | Event type. The value is fixed at **'setLoopMode'**.| +| callback | (mode: [LoopMode](#loopmode)) => void | No | Callback used for unsubscription. The **mode** parameter in the callback indicates the loop mode.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('setLoopMode'); +``` + +### off('toggleFavorite') + +off(type: 'toggleFavorite', callback?: (assetId: string) => void): void + +Unsubscribes from the event for favoriting a media asset. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------- | ---- | -------------------------------------------------------- | +| type | string | Yes | Event type. The value is fixed at **'toggleFavorite'**. | +| callback | (assetId: string) => void | No | Callback used for unsubscription. The **assetId** parameter in the callback indicates the media asset ID.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('toggleFavorite'); +``` + +### off('handleKeyEvent') + +off(type: 'handleKeyEvent', callback?: (event: KeyEvent) => void): void + +Unsubscribes from the key event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The value is fixed at **'handleKeyEvent'**. | +| callback | (event: [KeyEvent](js-apis-keyevent.md)) => void | No | Callback used for unsubscription. The **event** parameter in the callback indicates the key event.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('handleKeyEvent'); +``` + +### off('outputDeviceChange') + +off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void + +Unsubscribes from playback device changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------ | +| type | string | Yes | Event type. The value is fixed at **'outputDeviceChange'**. | +| callback | (device: [OutputDeviceInfo](#outputdeviceinfo)) => void | No | Callback used for unsubscription. The **device** parameter in the callback indicates the output device information.
If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | + +**Example** + +```js +session.off('outputDeviceChange'); +``` + + + +## AVSessionController + +An AV session controller is created by calling [avSession.createController](#avsessioncreatecontroller). Through the AV session controller, you can query the session ID, send commands and events to a session, and obtain session metadata and playback state information. + +### Attributes + +**System capability**: SystemCapability.Multimedia.AVSession.Core + + +| Name | Type | Readable| Writable| Description | +| :-------- | :----- | :--- | :--- | :-------------------------------------- | +| sessionId | string | Yes | No | Unique session ID of the **AVSessionController** object.| + + +**Example** +```js +let sessionId; +await avSession.createController(session.sessionId).then((controller) => { + sessionId = controller.sessionId; +}).catch((err) => { + console.info(`CreateController BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getAVPlaybackState + +getAVPlaybackState(): Promise\ + +Obtains the information related to the playback state. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| --------------------------------------------- | --------------------------- | +| Promise<[AVPlaybackState](#avplaybackstate)\> | Promise used to return the **AVPlaybackState** object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** +```js +controller.getAVPlaybackState().then((playbackState) => { + console.info(`GetAVPlaybackState : SUCCESS : state : ${playbackState.state}`); +}).catch((err) => { + console.info(`GetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getAVPlaybackState + +getAVPlaybackState(callback: AsyncCallback\): void + +Obtains the information related to the playback state. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | --------------------------------------------------- | ---- | ---------------------------- | +| callback | AsyncCallback<[AVPlaybackState](#avplaybackstate)\> | Yes | Callback used to return the **AVPlaybackState** object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** +```js +controller.getAVPlaybackState(function (err, playbackState) { + if (err) { + console.info(`GetAVPlaybackState BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetAVPlaybackState : SUCCESS : state : ${playbackState.state}`); + } +}); +``` + +### getAVMetadata + +getAVMetadata(): Promise\ + +Obtains the session metadata. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ----------------------------------- | ----------------------------- | +| Promise<[AVMetadata](#avmetadata)\> | Promise used to return the metadata obtained.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** +```js +controller.getAVMetadata().then((metadata) => { + console.info(`GetAVMetadata : SUCCESS : assetId : ${metadata.assetId}`); +}).catch((err) => { + console.info(`GetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getAVMetadata + +getAVMetadata(callback: AsyncCallback\): void + +Obtains the session metadata. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------- | ---- | -------------------------- | +| callback | AsyncCallback<[AVMetadata](#avmetadata)\> | Yes | Callback used to return the metadata obtained.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** +```js +controller.getAVMetadata(function (err, metadata) { + if (err) { + console.info(`GetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetAVMetadata : SUCCESS : assetId : ${metadata.assetId}`); + } +}); +``` + +### getOutputDevice + +getOutputDevice(): Promise\ + +Obtains the output device information. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ----------------------------------------------- | --------------------------------- | +| Promise<[OutputDeviceInfo](#outputdeviceinfo)\> | Promise used to return the information obtained.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** +```js +controller.getOutputDevice().then((deviceInfo) => { + console.info(`GetOutputDevice : SUCCESS : isRemote : ${deviceInfo.isRemote}`); +}).catch((err) => { + console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getOutputDevice + +getOutputDevice(callback: AsyncCallback\): void + +Obtains the output device information. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------------------------------------- | ---- | ------------------------------ | +| callback | AsyncCallback<[OutputDeviceInfo](#outputdeviceinfo)\> | Yes | Callback used to return the information obtained.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.getOutputDevice(function (err, deviceInfo) { + if (err) { + console.info(`GetOutputDevice BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetOutputDevice : SUCCESS : isRemote : ${deviceInfo.isRemote}`); + } +}); +``` + +### sendAVKeyEvent + +sendAVKeyEvent(event: KeyEvent): Promise\ + +Sends a key event to the session corresponding to this controller. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name| Type | Mandatory| Description | +| ------ | ------------------------------------------------------------ | ---- | ---------- | +| event | [KeyEvent](js-apis-keyevent.md) | Yes | Key event.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | +| 6600105 | Invalid session command | +| 6600106 | The session not active | + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the event is sent, no value is returned; otherwise, an error object is returned.| + +**Example** + +```js +let keyItem = {code:0x49, pressedTime:2, deviceId:0}; +let event = {action:2, key:keyItem, keys:[keyItem]}; + +controller.sendAVKeyEvent(event).then(() => { + console.info('SendAVKeyEvent Successfully'); +}).catch((err) => { + console.info(`SendAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### sendAVKeyEvent + +sendAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void + +Sends a key event to the session corresponding to this controller. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ---------- | +| event | [KeyEvent](js-apis-keyevent.md) | Yes | Key event.| +| callback | AsyncCallback | Yes | Callback used to return the result. If the event is sent, **err** is **undefined**. Otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | +| 6600105 | Invalid session command | +| 6600106 | The session not active | + +**Example** + +```js +let keyItem = {code:0x49, pressedTime:2, deviceId:0}; +let event = {action:2, key:keyItem, keys:[keyItem]}; + +controller.sendAVKeyEvent(event, function (err) { + if (err) { + console.info(`SendAVKeyEvent BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SendAVKeyEvent Successfully'); + } +}); +``` + +### getLaunchAbility + +getLaunchAbility(): Promise\ + +Obtains the **WantAgent** object saved by the application in the session. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ------------------------------------------- | ------------------------------------------------------------ | +| Promise<[WantAgent](js-apis-wantAgent.md)\> | Promise used to return the object saved by calling [setLaunchAbility](#setlaunchability). The object includes the application attribute, such as the bundle name, ability name, and device ID.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +import wantAgent from '@ohos.wantAgent'; + +controller.getLaunchAbility().then((agent) => { + console.info(`GetLaunchAbility : SUCCESS : wantAgent : ${agent}`); +}).catch((err) => { + console.info(`GetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getLaunchAbility + +getLaunchAbility(callback: AsyncCallback\): void + +Obtains the **WantAgent** object saved by the application in the session. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------- | ---- | ------------------------------------------------------------ | +| callback | AsyncCallback<[WantAgent](js-apis-wantAgent.md)\> | Yes | Callback used to return the object saved by calling [setLaunchAbility](#setlaunchability). The object includes the application attribute, such as the bundle name, ability name, and device ID.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +import wantAgent from '@ohos.wantAgent'; + +controller.getLaunchAbility(function (err, agent) { + if (err) { + console.info(`GetLaunchAbility BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetLaunchAbility : SUCCESS : wantAgent : ${agent}`); + } +}); +``` + +### getRealPlaybackPositionSync + +getRealPlaybackPositionSync(): number + +Obtains the playback position. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ------ | ------------------ | +| number | Playback position, in milliseconds.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +let time = controller.getRealPlaybackPositionSync(); +``` + +### isActive + +isActive(): Promise\ + +Checks whether the session is activated. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ----------------- | ------------------------------------------------------------ | +| Promise | Promise used to return the activation state. If the session is activated, **true** is returned; otherwise, **false** is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.isActive().then((isActive) => { + console.info(`IsActive : SUCCESS : isactive : ${isActive}`); +}).catch((err) => { + console.info(`IsActive BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### isActive + +isActive(callback: AsyncCallback\): void + +Checks whether the session is activated. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ----------------------- | ---- | ------------------------------------------------------------ | +| callback | AsyncCallback | Yes | Callback used to return the activation state. If the session is activated, **true** is returned; otherwise, **false** is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.isActive(function (err, isActive) { + if (err) { + console.info(`IsActive BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`IsActive : SUCCESS : isactive : ${isActive}`); + } +}); +``` + +### destroy + +destroy(): Promise\ + +Destroys this controller. A controller can no longer be used after being destroyed. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the controller is destroyed, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.destroy().then(() => { + console.info('Destroy : SUCCESS '); +}).catch((err) => { + console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### destroy + +destroy(callback: AsyncCallback\): void + +Destroys this controller. A controller can no longer be used after being destroyed. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | -------------------- | ---- | ---------- | +| callback | AsyncCallback | Yes | Callback used to return the result. If the controller is destroyed, **err** is **undefined**; otherwise, **err** is an error object.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.destroy(function (err) { + if (err) { + console.info(`Destroy BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('Destroy : SUCCESS '); + } +}); +``` + +### getValidCommands + +getValidCommands(): Promise\> + +Obtains valid commands supported by the session. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Return value** + +| Type | Description | +| ------------------------------------------------------------ | --------------------------------- | +| Promise\> | Promise used to return a set of valid commands.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.getValidCommands.then((validCommands) => { + console.info(`GetValidCommands : SUCCESS : size : ${validCommands.length}`); +}).catch((err) => { + console.info(`GetValidCommands BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### getValidCommands + +getValidCommands(callback: AsyncCallback\>): void + +Obtains valid commands supported by the session. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------ | +| callback | AsyncCallback\\> | Yes | Callback used to return a set of valid commands.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.getValidCommands(function (err, validCommands) { + if (err) { + console.info(`GetValidCommands BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info(`GetValidCommands : SUCCESS : size : ${validCommands.length}`); + } +}); +``` + +### sendControlCommand + +sendControlCommand(command: AVControlCommand): Promise\ + +Sends a control command to the session through the controller. This API uses a promise to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| ------- | ------------------------------------- | ---- | ------------------------------ | +| command | [AVControlCommand](#avcontrolcommand) | Yes | Command to send.| + +**Return value** + +| Type | Description | +| -------------- | ----------------------------- | +| Promise | Promise used to return the result. If the command is sent, no value is returned; otherwise, an error object is returned.| + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | +| 6600105 | Invalid session command | +| 6600106 | The session not active | +| 6600107 | Command or event overload | + +**Example** + +```js +let avCommand = {command:'play'}; +// let avCommand = {command:'pause'}; +// let avCommand = {command:'stop'}; +// let avCommand = {command:'playNext'}; +// let avCommand = {command:'playPrevious'}; +// let avCommand = {command:'fastForward'}; +// let avCommand = {command:'rewind'}; +// let avCommand = {command:'seek', parameter:10}; +// let avCommand = {command:'setSpeed', parameter:2.6}; +// let avCommand = {command:'setLoopMode', parameter:avSession.LoopMode.LOOP_MODE_SINGLE}; +// let avCommand = {command:'toggleFavorite', parameter:"false"}; +controller.sendControlCommand(avCommand).then(() => { + console.info('SendControlCommand successfully'); +}).catch((err) => { + console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`); +}); +``` + +### sendControlCommand + +sendControlCommand(command: AVControlCommand, callback: AsyncCallback\): void + +Sends a control command to the session through the controller. This API uses an asynchronous callback to return the result. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------- | ---- | ------------------------------ | +| command | [AVControlCommand](#avcontrolcommand) | Yes | Command to send.| +| callback | AsyncCallback | Yes | Callback used to return the result. If the command is sent, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ------------------------------- | +| 6600101 | Session service exception | +| 6600102 | The session does not exist | +| 6600103 | The session controller does not exist | +| 6600105 | Invalid session command | +| 6600106 | The session not active | +| 6600107 | Command or event overload | + +**Example** + +```js +let avCommand = {command:'play'}; +// let avCommand = {command:'pause'}; +// let avCommand = {command:'stop'}; +// let avCommand = {command:'playNext'}; +// let avCommand = {command:'playPrevious'}; +// let avCommand = {command:'fastForward'}; +// let avCommand = {command:'rewind'}; +// let avCommand = {command:'seek', parameter:10}; +// let avCommand = {command:'setSpeed', parameter:2.6}; +// let avCommand = {command:'setLoopMode', parameter:avSession.LoopMode.LOOP_MODE_SINGLE}; +// let avCommand = {command:'toggleFavorite', parameter:"false"}; +controller.sendControlCommand(avCommand, function (err) { + if (err) { + console.info(`SendControlCommand BusinessError: code: ${err.code}, message: ${err.message}`); + } else { + console.info('SendControlCommand successfully'); + } +}); +``` + +### on('metadataChange') + +on(type: 'metadataChange', filter: Array\ | 'all', callback: (data: AVMetadata) => void) + +Subscribes to the metadata change event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'metadataChange'** is reported when the session metadata changes.| +| filter | Array\ | 'all' | Yes | The value **'all'** indicates that any metadata field change will trigger the event, and **Array** indicates that only changes to the listed metadata field will trigger the event.| +| callback | (data: [AVMetadata](#avmetadata)) => void | Yes | Callback used for subscription. The **data** parameter in the callback indicates the changed metadata. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ------------------------------ | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.on('metadataChange', 'all', (metadata) => { + console.info(`on metadataChange assetId : ${metadata.assetId}`); +}); + +let metaFilter = ['assetId', 'title', 'description']; +controller.on('metadataChange', metaFilter, (metadata) => { + console.info(`on metadataChange assetId : ${metadata.assetId}`); +}); +``` + +### on('playbackStateChange') + +on(type: 'playbackStateChange', filter: Array\ | 'all', callback: (state: AVPlaybackState) => void) + +Subscribes to the playback state change event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'playbackStateChange'** is reported when the playback state changes.| +| filter | Array\ | 'all' | Yes | The value **'all'** indicates that any playback state field change will trigger the event, and **Array** indicates that only changes to the listed playback state field will trigger the event.| +| callback | (state: [AVPlaybackState](#avplaybackstate)) => void | Yes | Callback used for subscription. The **state** parameter in the callback indicates the changed playback state. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ------------------------------ | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.on('playbackStateChange', 'all', (playbackState) => { + console.info(`on playbackStateChange state : ${playbackState.state}`); +}); + +let playbackFilter = ['state', 'speed', 'loopMode']; +controller.on('playbackStateChange', playbackFilter, (playbackState) => { + console.info(`on playbackStateChange state : ${playbackState.state}`); +}); +``` + +### on('sessionDestroy') + +on(type: 'sessionDestroy', callback: () => void) + +Subscribes to the session destruction event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ---------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'sessionDestroy'** is reported when the session is destroyed.| +| callback | () => void | Yes | Callback used for subscription. If the subscription is successful, **err** is **undefined**; otherwise, **err** is an error object. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ------------------------------ | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.on('sessionDestroy', () => { + console.info('on sessionDestroy : SUCCESS '); +}); +``` + +### on('activeStateChange') + +on(type: 'activeStateChange', callback: (isActive: boolean) => void) + +Subscribes to the session activation state change event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | --------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'activeStateChange'** is reported when the activation state of the session changes.| +| callback | (isActive: boolean) => void | Yes | Callback used for subscription. The **isActive** parameter in the callback specifies whether the session is activated. The value **true** means that the service is activated, and **false** means the opposite. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ----------------------------- | +| 6600101 | Session service exception | +| 6600103 |The session controller does not exist | + +**Example** + +```js +controller.on('activeStateChange', (isActive) => { + console.info(`on activeStateChange : SUCCESS : isActive ${isActive}`); +}); +``` + +### on('validCommandChange') + +on(type: 'validCommandChange', callback: (commands: Array\) => void) + +Subscribes to valid command changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'validCommandChange'** is reported when the valid commands supported by the session changes.| +| callback | (commands: Array<[AVControlCommandType](#avcontrolcommandtype)\>) => void | Yes | Callback used for subscription. The **commands** parameter in the callback is a set of valid commands. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ------------------------------ | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.on('validCommandChange', (validCommands) => { + console.info(`validCommandChange : SUCCESS : size : ${validCommands.size}`); + console.info(`validCommandChange : SUCCESS : validCommands : ${validCommands.values()}`); +}); +``` + +### on('outputDeviceChange') + +on(type: 'outputDeviceChange', callback: (device: OutputDeviceInfo) => void): void + +Subscribes to output device changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The event **'outputDeviceChange'** is reported when the output device changes.| +| callback | (device: [OutputDeviceInfo](#outputdeviceinfo)) => void | Yes | Callback used for subscription. The **device** parameter in the callback indicates the output device information. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ----------------------- | +| 6600101 | Session service exception | +| 6600103 | The session controller does not exist | + +**Example** + +```js +controller.on('outputDeviceChange', (device) => { + console.info(`on outputDeviceChange device isRemote : ${device.isRemote}`); +}); +``` + +### off('metadataChange') + +off(type: 'metadataChange', callback?: (data: AVMetadata) => void) + +Unsubscribes from metadata changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------ | ---- | ------------------------------------------------------ | +| type | string | Yes | Event type. The event **'metadataChange'** is reported when the session metadata changes. | +| callback | (data: [AVMetadata](#avmetadata)) => void | No | Callback used for subscription. The **data** parameter in the callback indicates the changed metadata.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('metadataChange'); +``` + +### off('playbackStateChange') + +off(type: 'playbackStateChange', callback?: (state: AVPlaybackState) => void) + +Unsubscribes from playback state changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------- | +| type | string | Yes | Event type. The event **'playbackStateChange'** is reported when the playback state changes. | +| callback | (state: [AVPlaybackState](#avplaybackstate)) => void | No | Callback used for subscription. The **state** parameter in the callback indicates the changed playback state.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('playbackStateChange'); +``` + +### off('sessionDestroy') + +off(type: 'sessionDestroy', callback?: () => void) + +Unsubscribes from the session destruction event. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ---------- | ---- | ----------------------------------------------------- | +| type | string | Yes | Event type. The event **'sessionDestroy'** is reported when the session is destroyed. | +| callback | () => void | No | Callback used for unsubscription. If the unsubscription is successful, **err** is **undefined**; otherwise, **err** is an error object.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('sessionDestroy'); +``` + +### off('activeStateChange') + +off(type: 'activeStateChange', callback?: (isActive: boolean) => void) + +Unsubscribes from session activation state changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | --------------------------- | ---- | ----------------------------------------------------- | +| type | string | Yes | Event type. The event **'activeStateChange'** is reported when the session activation state changes. | +| callback | (isActive: boolean) => void | No | Callback used for unsubscription. The **isActive** parameter in the callback specifies whether the session is activated. The value **true** means that the session is activated, and **false** means the opposite.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message| +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('activeStateChange'); +``` + +### off('validCommandChange') + +off(type: 'validCommandChange', callback?: (commands: Array\) => void) + +Unsubscribes from valid command changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------------ | ---- | -------------------------------------------------------- | +| type | string | Yes | Event type. The event **'validCommandChange'** is reported when the supported commands change. | +| callback | (commands: Array<[AVControlCommandType](#avcontrolcommandtype)\>) => void | No | Callback used for unsubscription. The **commands** parameter in the command is a set of valid commands.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID| Error Message | +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('validCommandChange'); +``` + +### off('outputDeviceChange') + +off(type: 'outputDeviceChange', callback?: (device: OutputDeviceInfo) => void): void + +Unsubscribes from output device changes. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +**Parameters** + +| Name | Type | Mandatory| Description | +| -------- | ------------------------------------------------------- | ---- | ------------------------------------------------------ | +| type | string | Yes | Event type. The event **'outputDeviceChange'** is reported when the output device changes. | +| callback | (device: [OutputDeviceInfo](#outputdeviceinfo)) => void | No | Callback used for unsubscription. The **device** parameter in the callback indicates the output device information.
The callback parameter is optional. If it is not specified, the specified event is no longer listened for all sessions. | + +**Error codes** + +For details about the error codes, see [AVSession Management Error Codes](../errorcodes/errorcode-avsession.md). + +| ID | Error Message | +| -------- | ---------------- | +| 6600101 | Session service exception | + +**Example** + +```js +controller.off('outputDeviceChange'); +``` + +## SessionToken + +Describes the information about a session token. + +**Required permissions**: ohos.permission.MANAGE_MEDIA_RESOURCES (available only to system applications) + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +| Name | Type | Mandatory| Description | +| :-------- | :----- | :--- | :----------- | +| sessionId | string | Yes | Session ID. | +| pid | number | Yes | Process ID of the session.| +| uid | number | Yes | User ID. | + +## AVSessionType +Enumerates the session types supported by the session. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Description| +| ----- | ------ | ---- | +| audio | string | Audio session.| +| video | string | Video session.| + +## AVSessionDescriptor + +Declares the session descriptor. + +**System capability**: SystemCapability.Multimedia.AVSession.Manager + +**System API**: This is a system API. + +| Name | Type | Readable| Writable| Description | +| ------------ | ------------------------------------------------------------ | ---- | --------------------------------------------------- | --------------------------------------------------- | +| sessionId | string | Yes | No| Session ID. | +| type | [AVSessionType](#avsessiontype) | Yes | No | Session type. | +| sessionTag | string | Yes | No | Custom session name. | +| elementName | [ElementName](js-apis-bundle-ElementName.md) | Yes | No | Information about the application to which the session belongs, including the bundle name and ability name.| +| isActive | boolean | Yes | No | Whether the session is activated. | +| isTopSession | boolean | Yes | No | Whether the session is the top session. | +| outputDevice | [OutputDeviceInfo](#outputdeviceinfo) | Yes | No | Information about the output device. | + +## AVControlCommandType + +Enumerates the commands that can be sent to a session. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Description | +| -------------- | ------ | ------------ | +| play | string | Play the media. | +| pause | string | Pause the playback. | +| stop | string | Stop the playback. | +| playNext | string | Play the next media asset. | +| playPrevious | string | Play the previous media asset. | +| fastForward | string | Fast-forward. | +| rewind | string | Rewind. | +| seek | string | Seek to a playback position.| +| setSpeed | string | Set the playback speed.| +| setLoopMode | string | Set the loop mode.| +| toggleFavorite | string | Favorite the media asset. | + +## AVControlCommand + +Describes the command that can be sent to the session. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Mandatory| Description | +| --------- | ------------------------------------------------- | ---- | -------------- | +| command | [AVControlCommandType](#avcontrolcommandtype) | Yes | Command. | +| parameter | [LoopMode](#loopmode) | string | number | No | Parameters carried in the command.| + +## AVMetadata + +Describes the media metadata. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Mandatory| Description | +| --------------- |-------------------------| ---- |---------------------------------------------------------------------| +| assetId | string | Yes | Media ID. | +| title | string | No | Title. | +| artist | string | No | Artist. | +| author | string | No | Author. | +| album | string | No | Album name. | +| writer | string | No | Writer. | +| composer | string | No | composer. | +| duration | string | No | Media duration, in ms. | +| mediaImage | image.PixelMap | string | No | Pixel map or image path (local path or network path) of the image. | +| publishDate | Date | No | Release date. | +| subtitle | string | No | Subtitle. | +| description | string | No | Media description. | +| lyric | string | No | Lyric file path (local path or network path).| +| previousAssetId | string | No | ID of the previous media asset. | +| nextAssetId | string | No | ID of the next media asset. | + +## AVPlaybackState + +Describes the information related to the media playback state. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Mandatory| Description | +| ------------ | ------------------------------------- | ---- | ------- | +| state | [PlaybackState](#playbackstate) | No | Playback state.| +| speed | number | No | Playback speed.| +| position | [PlaybackPosition](#playbackposition) | No | Playback position.| +| bufferedTime | number | No | Buffered time.| +| loopMode | [LoopMode](#loopmode) | No | Loop mode.| +| isFavorite | boolean | No | Whether the media asset is favorited.| + +## PlaybackPosition + +Describes the information related to the playback position. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Mandatory| Description | +| ----------- | ------ | ---- | ------------------ | +| elapsedTime | number | Yes | Elapsed time, in ms.| +| updateTime | number | Yes | Updated time, in ms.| + +## OutputDeviceInfo + +Describes the information related to the output device. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Type | Mandatory| Description | +| ---------- | -------------- | ---- | ---------------------- | +| isRemote | boolean | Yes | Whether the device is connected. | +| audioDeviceId | Array | Yes | IDs of output devices. | +| deviceName | Array | Yes | Names of output devices. | + +## PlaybackState + +Enumerates the media playback states. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Value | Description | +| --------------------------- | ---- | ----------- | +| PLAYBACK_STATE_INITIAL | 0 | Initial. | +| PLAYBACK_STATE_PREPARE | 1 | Preparing. | +| PLAYBACK_STATE_PLAY | 2 | Playing. | +| PLAYBACK_STATE_PAUSE | 3 | Paused. | +| PLAYBACK_STATE_FAST_FORWARD | 4 | Fast-forwarding. | +| PLAYBACK_STATE_REWIND | 5 | Rewinding. | +| PLAYBACK_STATE_STOP | 6 | Stopped. | + + +## LoopMode + +Enumerates the loop modes of media playback. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Value | Description | +| ------------------ | ---- | -------- | +| LOOP_MODE_SEQUENCE | 0 | Sequential playback.| +| LOOP_MODE_SINGLE | 1 | Single loop.| +| LOOP_MODE_LIST | 2 | Playlist loop.| +| LOOP_MODE_SHUFFLE | 3 | Shuffle.| + +## AVSessionErrorCode + +Enumerates the error codes used in the media session. + +**System capability**: SystemCapability.Multimedia.AVSession.Core + +| Name | Value | Description | +| ------------------------------ | ------- | ------------------------------- | +| ERR_CODE_SERVICE_EXCEPTION | 6600101 | Session service exception | +| ERR_CODE_SESSION_NOT_EXIST | 6600102 | The session does not exist | +| ERR_CODE_CONTROLLER_NOT_EXIST | 6600103 | The session controller does not exist | +| ERR_CODE_REMOTE_CONNECTION_ERR | 6600104 | The remote session connection failed | +| ERR_CODE_COMMAND_INVALID | 6600105 | Invalid session command | +| ERR_CODE_SESSION_INACTIVE | 6600106 | The session not active | +| ERR_CODE_MESSAGE_OVERLOAD | 6600107 | Command or event overload | diff --git a/en/application-dev/reference/apis/js-apis-featureAbility.md b/en/application-dev/reference/apis/js-apis-featureAbility.md index 93941ea52e332de2f3306673c20c74ef176cb808..66999a98279dc43aa0fee542883a6ed70ad5ee8d 100644 --- a/en/application-dev/reference/apis/js-apis-featureAbility.md +++ b/en/application-dev/reference/apis/js-apis-featureAbility.md @@ -1,6 +1,6 @@ # FeatureAbility -The **FeatureAbility** module provides a UI for interacting with users. You can use APIs of this module to start a new ability, obtain the **dataAbilityHelper**, set a Page ability, obtain the window corresponding to this ability, and connecting to a Service ability. +The **FeatureAbility** module provides a UI for interacting with users. You can use APIs of this module to start a new ability, obtain the **dataAbilityHelper**, set a Page ability, obtain the window corresponding to this ability, and connect to a Service ability. > **NOTE** > @@ -14,7 +14,7 @@ APIs of the **FeatureAbility** module can be called only by Page abilities. ## Modules to Import ``` -import featureAbility from '@ohos.ability.featureAbility' +import featureAbility from '@ohos.ability.featureAbility'; ``` ## featureAbility.startAbility @@ -35,8 +35,8 @@ Starts an ability. This API uses an asynchronous callback to return the result. **Example** ```javascript -import featureAbility from '@ohos.ability.featureAbility' -import wantConstant from '@ohos.ability.wantConstant' +import featureAbility from '@ohos.ability.featureAbility'; +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.startAbility( { want: @@ -47,11 +47,14 @@ featureAbility.startAbility( flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri: "" }, }, + (err, data) => { + console.info("startAbility err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)); + } ); ``` @@ -74,8 +77,8 @@ Starts an ability. This API uses a promise to return the result. **Example** ```javascript -import featureAbility from '@ohos.ability.featureAbility' -import wantConstant from '@ohos.ability.wantConstant' +import featureAbility from '@ohos.ability.featureAbility'; +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.startAbility( { want: @@ -83,16 +86,16 @@ featureAbility.startAbility( action: "action.system.home", entities: ["entity.system.home"], type: "MIMETYPE", - flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, + flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri: "" }, } ).then((data) => { - console.info("==========================>startAbility=======================>"); + console.info("startAbility data: " + JSON.stringify(data)); }); ``` @@ -119,10 +122,10 @@ Obtains a **dataAbilityHelper** object. **Example** ```javascript -import featureAbility from '@ohos.ability.featureAbility' -featureAbility.acquireDataAbilityHelper( +import featureAbility from '@ohos.ability.featureAbility'; +var dataAbilityHelper = featureAbility.acquireDataAbilityHelper( "dataability:///com.example.DataAbility" -) +); ``` ## featureAbility.startAbilityForResult7+ @@ -144,7 +147,7 @@ Starts an ability. This API uses an asynchronous callback to return the executio ```javascript import featureAbility from '@ohos.ability.featureAbility'; -import wantConstant from '@ohos.ability.wantConstant' +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.startAbilityForResult( { want: @@ -155,15 +158,15 @@ featureAbility.startAbilityForResult( flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri:"" }, }, (err, data) => { - console.info("err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)) + console.info("startAbilityForResult err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)); } -) +); ``` ## featureAbility.startAbilityForResult7+ @@ -190,7 +193,7 @@ Starts an ability. This API uses a promise to return the execution result when t ```javascript import featureAbility from '@ohos.ability.featureAbility'; -import wantConstant from '@ohos.ability.wantConstant' +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.startAbilityForResult( { want: @@ -201,7 +204,7 @@ featureAbility.startAbilityForResult( flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri:"", parameters: @@ -218,7 +221,7 @@ featureAbility.startAbilityForResult( }, }, ).then((data) => { - console.info("==========================>startAbilityForResult=======================>"); + console.info("startAbilityForResult data: " + JSON.stringify(data)); }); ``` @@ -234,14 +237,14 @@ Destroys this Page ability, with the result code and data sent to the caller. Th | Name | Type | Mandatory | Description | | --------- | ------------------------------- | ---- | -------------- | -| parameter | [AbilityResult](#abilityresult) | Yes | Ability to start.| +| parameter | [AbilityResult](#abilityresult) | Yes | Ability to destroy.| | callback | AsyncCallback\ | Yes | Callback used to return the result. | **Example** ```javascript -import featureAbility from '@ohos.ability.featureAbility' -import wantConstant from '@ohos.ability.wantConstant' +import featureAbility from '@ohos.ability.featureAbility'; +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.terminateSelfWithResult( { resultCode: 1, @@ -253,7 +256,7 @@ featureAbility.terminateSelfWithResult( flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri:"", parameters: { @@ -268,6 +271,9 @@ featureAbility.terminateSelfWithResult( } }, }, + (err) => { + console.info("err: " + JSON.stringify(err)) + } ); ``` @@ -283,7 +289,7 @@ Destroys this Page ability, with the result code and data sent to the caller. Th | Name | Type | Mandatory | Description | | --------- | ------------------------------- | ---- | ------------- | -| parameter | [AbilityResult](#abilityresult) | Yes | Ability to start.| +| parameter | [AbilityResult](#abilityresult) | Yes | Ability to destroy.| **Return value** @@ -295,7 +301,7 @@ Destroys this Page ability, with the result code and data sent to the caller. Th ```javascript import featureAbility from '@ohos.ability.featureAbility'; -import wantConstant from '@ohos.ability.wantConstant' +import wantConstant from '@ohos.ability.wantConstant'; featureAbility.terminateSelfWithResult( { resultCode: 1, @@ -307,7 +313,7 @@ featureAbility.terminateSelfWithResult( flags: wantConstant.Flags.FLAG_AUTH_READ_URI_PERMISSION, deviceId: "", bundleName: "com.example.myapplication", - /* In the FA model, abilityName consists of package and ability name. */ + /* In the FA model, abilityName consists of package and ability names. */ abilityName: "com.example.entry.secondAbility", uri:"", parameters: { @@ -345,7 +351,9 @@ Checks whether the main window of this ability has the focus. This API uses an a ```javascript import featureAbility from '@ohos.ability.featureAbility'; -featureAbility.hasWindowFocus() +featureAbility.hasWindowFocus((err, data) => { + console.info("hasWindowFocus err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)); +}); ``` ## featureAbility.hasWindowFocus7+ @@ -367,7 +375,7 @@ Checks whether the main window of this ability has the focus. This API uses a pr ```javascript import featureAbility from '@ohos.ability.featureAbility'; featureAbility.hasWindowFocus().then((data) => { - console.info("==========================>hasWindowFocus=======================>"); + console.info("hasWindowFocus data: " + JSON.stringify(data)); }); ``` @@ -389,7 +397,9 @@ Obtains the **Want** object sent from this ability. This API uses an asynchronou ```javascript import featureAbility from '@ohos.ability.featureAbility'; -featureAbility.getWant() +featureAbility.getWant((err, data) => { + console.info("getWant err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)); +}); ``` ## featureAbility.getWant @@ -411,7 +421,7 @@ Obtains the **Want** object sent from this ability. This API uses a promise to r ```javascript import featureAbility from '@ohos.ability.featureAbility'; featureAbility.getWant().then((data) => { - console.info("==========================>getWantCallBack=======================>"); + console.info("getWant data: " + JSON.stringify(data)); }); ``` @@ -427,14 +437,16 @@ Obtains the application context. | Type | Description | | ------- | ---------- | -| Context | Application context returned.| +| Context | Application context.| **Example** ```javascript import featureAbility from '@ohos.ability.featureAbility'; var context = featureAbility.getContext() -context.getBundleName() +context.getBundleName((err, data) => { + console.info("getBundleName err: " + JSON.stringify(err) + "data: " + JSON.stringify(data)); +}); ``` ## featureAbility.terminateSelf7+ @@ -455,7 +467,11 @@ Destroys this Page ability, with the result code and data sent to the caller. Th ```javascript import featureAbility from '@ohos.ability.featureAbility'; -featureAbility.terminateSelf() +featureAbility.terminateSelf( + (err) => { + console.info("err: " + JSON.stringify(err)) + } +) ``` ## featureAbility.terminateSelf7+ @@ -477,7 +493,7 @@ Destroys this Page ability, with the result code and data sent to the caller. Th ```javascript import featureAbility from '@ohos.ability.featureAbility'; featureAbility.terminateSelf().then((data) => { - console.info("==========================>terminateSelfCallBack=======================>"); + console.info("==========================>terminateSelf=======================>"); }); ``` @@ -498,27 +514,27 @@ Connects this ability to a specific Service ability. This API uses an asynchrono ## ConnectOptions -ConnectOptions +Describes the connection options. **System capability**: SystemCapability.Ability.AbilityRuntime.Core -| Name | Readable/Writable| Type | Mandatory | Description | -| ------------ | ---- | -------- | ---- | ------------------------- | -| onConnect7+ | Read-only | function | Yes | Callback invoked when the connection is successful. | -| onDisconnect7+ | Read-only | function | Yes | Callback invoked when the connection fails. | -| onFailed7+ | Read-only | function | Yes | Callback invoked when **connectAbility** fails to be called.| +| Name | Readable|Writable| Type | Mandatory | Description | +| ------------ | -- | -- | -------- | ---- | ------------------------- | +| onConnect7+ | Yes|No | function | Yes | Callback invoked when the connection is successful. | +| onDisconnect7+ | Yes|No | function | Yes | Callback invoked when the connection fails. | +| onFailed7+ | Yes|No | function | Yes | Callback invoked when **connectAbility** fails to be called.| **Return value** | Type | Description | | ------ | -------------------- | -| number | Returns the ID of the Service ability connected.| +| number | ID of the Service ability connected.| **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -528,7 +544,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { deviceId: "", bundleName: "com.ix.ServiceAbility", @@ -560,8 +576,8 @@ Disconnects this ability from a specific Service ability. This API uses an async **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -571,7 +587,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { bundleName: "com.ix.ServiceAbility", abilityName: "ServiceAbilityA", @@ -582,9 +598,9 @@ var connId = featureAbility.connectAbility( onFailed: onFailedCallback, }, ); -var result = featureAbility.disconnectAbility(connId, - (error,data) => { - console.log('featureAbilityTest DisConnectJsSameBundleName result errCode : ' + error.code + " data: " + data) +var result = featureAbility.disconnectAbility(connectId, + (error) => { + console.log('featureAbilityTest DisConnectJsSameBundleName result errCode : ' + error.code) }, ); ``` @@ -612,8 +628,8 @@ Disconnects this ability from a specific Service ability. This API uses a promis **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -623,7 +639,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { bundleName: "com.ix.ServiceAbility", abilityName: "ServiceAbilityA", @@ -635,7 +651,7 @@ var connId = featureAbility.connectAbility( }, ); -featureAbility.disconnectAbility(connId).then((data) => { +featureAbility.disconnectAbility(connectId).then((data) => { console.log('data : ' + data); }).catch((error)=>{ console.log('featureAbilityTest result errCode : ' + error.code); @@ -660,7 +676,9 @@ Obtains the window corresponding to this ability. This API uses an asynchronous **Example** ```javascript -featureAbility.getWindow() +featureAbility.getWindow((err, data) => { + console.info("getWindow err: " + JSON.stringify(err) + "data: " + typeof(data)); +}); ``` ## featureAbility.getWindow7+ @@ -681,7 +699,7 @@ Obtains the window corresponding to this ability. This API uses a promise to ret ```javascript featureAbility.getWindow().then((data) => { - console.info("=============getWindowPromise========== " + JSON.stringify(data)); + console.info("getWindow data: " + typeof(data)); }); ``` @@ -703,8 +721,8 @@ Callback invoked when the connection is successful. **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -714,7 +732,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { deviceId: "", bundleName: "com.ix.ServiceAbility", @@ -745,8 +763,8 @@ Callback invoked when the connection fails. **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -756,7 +774,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { deviceId: "", bundleName: "com.ix.ServiceAbility", @@ -787,8 +805,8 @@ Callback invoked when **connectAbility** fails to be called. **Example** ```javascript -import rpc from '@ohos.rpc' -import featureAbility from '@ohos.ability.featureAbility' +import rpc from '@ohos.rpc'; +import featureAbility from '@ohos.ability.featureAbility'; function onConnectCallback(element, remote){ console.log('ConnectAbility onConnect remote is proxy:' + (remote instanceof rpc.RemoteProxy)); } @@ -798,7 +816,7 @@ function onDisconnectCallback(element){ function onFailedCallback(code){ console.log('featureAbilityTest ConnectAbility onFailed errCode : ' + code) } -var connId = featureAbility.connectAbility( +var connectId = featureAbility.connectAbility( { deviceId: "", bundleName: "com.ix.ServiceAbility", @@ -828,7 +846,7 @@ featureAbility.AbilityWindowConfiguration.WINDOW_MODE_UNDEFINED **System capability**: SystemCapability.Ability.AbilityRuntime.FAModel -| Name | Name | Description | +| Name | Value | Description | | ---------------------------------------- | ---- | ---------------------------------------- | | WINDOW_MODE_UNDEFINED7+ | 0 | The Page ability is in an undefined window display mode.| | WINDOW_MODE_FULLSCREEN7+ | 1 | The Page ability is in full screen mode. | @@ -851,7 +869,7 @@ featureAbility.AbilityStartSetting.BOUNDS_KEY **System capability**: SystemCapability.Ability.AbilityRuntime.FAModel -| Name | Name | Description | +| Name | Value | Description | | ---------------------------- | --------------- | ---------------------------------------- | | BOUNDS_KEY7+ | "abilityBounds" | Ability window size.| | WINDOW_MODE_KEY7+ | "windowMode" | Ability window display mode.| @@ -863,7 +881,7 @@ Enumerates error codes. **System capability**: SystemCapability.Ability.AbilityRuntime.FAModel -| Variable | Value | Description | +| Name | Value | Description | | ------------------------------ | ---- | ---------------------------------------- | | NO_ERROR7+ | 0 | No error occurs.| | INVALID_PARAMETER7+ | -1 | Invalid parameter.| @@ -877,7 +895,7 @@ Enumerates operation types of the Data ability. **System capability**: SystemCapability.Ability.AbilityRuntime.FAModel -| Variable | Value | Description | +| Name | Value | Description | | ------------------------ | ---- | ---------------------------------------- | | TYPE_INSERT7+ | 1 | Insert operation.| | TYPE_UPDATE7+ | 2 | Update operation.| @@ -890,25 +908,25 @@ Enumerates operation types of the Data ability. **System capability**: SystemCapability.Ability.AbilityBase -| Name | Readable/Writable| Type | Mandatory | Description | -| ----------------------- | ---- | ------------- | ---- | ------------------------------------- | -| resultCode7+ | Read-only | number | Yes | Result code returned after the ability is destroyed. The feature for defining error-specific result codes is coming soon.| -| want7+ | Read-only | [Want](js-apis-application-Want.md) | No | Data returned after the ability is destroyed. You can define the data to be returned. This parameter can be **null**. | +| Name | Type | Readable| Writable | Mandatory | Description | +| --------------- |-------- | ------ | ------------- | ---- | ------------------------------------- | +| resultCode7+| number| Yes | No | Yes | Result code returned after the ability is destroyed. The feature for defining error-specific result codes is coming soon.| +| want7+ | [Want](js-apis-application-Want.md)| Yes | No| No | Data returned after the ability is destroyed. You can define the data to be returned. This parameter can be **null**. | ## StartAbilityParameter **System capability**: SystemCapability.Ability.AbilityRuntime.FAModel -| Name | Readable/Writable| Type | Mandatory | Description | -| ------------------- | ---- | -------------------- | ---- | -------------------------------------- | -| want | Read-only | [Want](js-apis-application-Want.md) | Yes | Information about the ability to start. | -| abilityStartSetting | Read-only | {[key: string]: any} | No | Special attribute of the ability to start. This attribute can be passed in the method call.| +| Name | Type | Readable| Writable | Mandatory | Description | +| ------------------- | -------- | -------------------- | ---- | -------------------------------------- | +| want | [Want](js-apis-application-Want.md)| Yes | No | Yes | Information about the ability to start. | +| abilityStartSetting | {[key: string]: any} | Yes |No | No | Special attribute of the ability to start. This attribute can be passed in the method call.| ## flags **System capability**: SystemCapability.Ability.AbilityBase -| Name | Name | Description | +| Name | Value | Description | | ------------------------------------ | ---------- | ---------------------------------------- | | FLAG_AUTH_READ_URI_PERMISSION | 0x00000001 | Indicates the permission to read the URI. | | FLAG_AUTH_WRITE_URI_PERMISSION | 0x00000002 | Indicates the permission to write the URI. | diff --git a/en/application-dev/reference/apis/js-apis-window.md b/en/application-dev/reference/apis/js-apis-window.md index 24176d5c9727d1905d229aca43521462d6ebdd29..9d60fe2118d81d8b423a851b6dbf759b48a10864 100644 --- a/en/application-dev/reference/apis/js-apis-window.md +++ b/en/application-dev/reference/apis/js-apis-window.md @@ -56,7 +56,7 @@ An asynchronous callback is used when a system window is created in the case tha | ---------- | -------------------------- | -- | ----------------------------------- | | name | string | Yes| Name of the subwindow. | | windowType | [WindowType](#windowtype7) | Yes| Type of the subwindow. | -| ctx | BaseContext | No| Current application context.
For details about the context in the FA model, see [Context](js-apis-Context.md).
For details about the context in the stage model, see [Context](js-apis-service-extension-context.md).
If this parameter is not set, no context is used. | +| ctx | BaseContext | No| Current application context.
For details about the context in the FA model, see [Context](js-apis-Context.md).
For details about the context in the stage model, see [Context](js-apis-service-extension-context.md).
If this parameter is not set, no context is used. | | displayId | number | No| ID of the current physical screen. If this parameter is not set, the default value **-1** is used.| | parentId | number | No| ID of the parent window. If this parameter is not set, the default value **-1** is used. | @@ -108,14 +108,14 @@ Describes the properties of the status bar and navigation bar. **System capability**: SystemCapability.WindowManager.WindowManager.Core -| Name | Type| Readable| Writable| Mandatory| Description | -| -------------------------------------- | -------- | ---- | ---- | ---- | ------------------------------------------------------------ | -| statusBarColor | string | No | Yes | No | Background color of the status bar. The value is a hexadecimal RGB or aRGB color value and is case insensitive, for example, **#00FF00** or **#FF00FF00**. The default value is **#0x66000000**.| -| isStatusBarLightIcon7+ | boolean | No | Yes | No | Whether any icon on the status bar is highlighted. The value **true** means that the icon is highlighted, and **false** means the opposite. The default value is **false**.| -| statusBarContentColor8+ | string | No | Yes | No | Color of the text on the status bar. After this property is set, the setting of **isStatusBarLightIcon** is invalid. The default value is **0xE5FFFFFF**.| -| navigationBarColor | string | No | Yes | No | Background color of the navigation bar. The value is a hexadecimal RGB or aRGB color value and is case insensitive, for example, **#00FF00** or **#FF00FF00**. The default value is **#0x66000000**.| -| isNavigationBarLightIcon7+ | boolean | No | Yes | No | Whether any icon on the navigation bar is highlighted. The value **true** means that the icon is highlighted, and **false** means the opposite. The default value is **false**.| -| navigationBarContentColor8+ | string | No | Yes | No | Color of the text on the navigation bar. After this property is set, the setting of **isNavigationBarLightIcon** is invalid. The default value is **0xE5FFFFFF**.| +| Name | Type| Mandatory| Description | +| -------------------------------------- | -------- | ---- | ------------------------------------------------------------ | +| statusBarColor | string | No | Background color of the status bar. The value is a hexadecimal RGB or aRGB color value and is case insensitive, for example, **#00FF00** or **#FF00FF00**. The default value is **#0x66000000**.| +| isStatusBarLightIcon7+ | boolean | No | Whether any icon on the status bar is highlighted. The value **true** means that the icon is highlighted, and **false** means the opposite. The default value is **false**.| +| statusBarContentColor8+ | string | No | Color of the text on the status bar. After this property is set, the setting of **isStatusBarLightIcon** is invalid. The default value is **0xE5FFFFFF**.| +| navigationBarColor | string | No | Background color of the navigation bar. The value is a hexadecimal RGB or aRGB color value and is case insensitive, for example, **#00FF00** or **#FF00FF00**. The default value is **#0x66000000**.| +| isNavigationBarLightIcon7+ | boolean | No | Whether any icon on the navigation bar is highlighted. The value **true** means that the icon is highlighted, and **false** means the opposite. The default value is **false**.| +| navigationBarContentColor8+ | string | No | Color of the text on the navigation bar. After this property is set, the setting of **isNavigationBarLightIcon** is invalid. The default value is **0xE5FFFFFF**.| ## Orientation9+ @@ -248,7 +248,7 @@ Enumerates the color spaces. **System capability**: SystemCapability.WindowManager.WindowManager.Core -| Name | Default Value | Description | +| Name | Value| Description | | ---------- | ------ | -------------- | | DEFAULT | 0 | Default gamut.| | WIDE_GAMUT | 1 | Wide-gamut. | @@ -319,7 +319,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID| Error Message| | ------- | -------------------------------- | -| 1300001 | Repeated operation. | +| 1300001 | Repeated operation. | | 1300006 | This window context is abnormal. | **Example** @@ -339,7 +339,7 @@ try { }); } catch (exception) { console.error('Failed to create the window. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.createWindow9+ @@ -368,7 +368,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID| Error Message| | ------- | -------------------------------- | -| 1300001 | Repeated operation. | +| 1300001 | Repeated operation. | | 1300006 | This window context is abnormal. | **Example** @@ -386,7 +386,7 @@ try { }); } catch (exception) { console.error('Failed to create the window. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.findWindow9+ @@ -412,11 +412,12 @@ Finds a window based on the ID. **Example** ```js +let windowClass = null; try { - let windowClass = window.findWindow('alertWindow'); + windowClass = window.findWindow('alertWindow'); } catch (exception) { console.error('Failed to find the Window. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.getLastWindow9+ @@ -458,7 +459,7 @@ try { }); } catch (exception) { console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.getLastWindow9+ @@ -504,7 +505,7 @@ try { }); } catch (exception) { console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.minimizeAll9+ @@ -535,26 +536,25 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```js import display from '@ohos.display' -import window from '@ohos.window' +let displayClass = null; try { displayClass = display.getDefaultDisplaySync(); -} catch (exception) { - console.error('Failed to obtain the default display object. Code: ' + JSON.stringify(exception)); - return; -}; -try { - window.minimizeAll(displayClass.id, (err) => { - if(err.code) { - console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err)); - return; - } - console.info('Succeeded in minimizing all windows.'); - }); + try { + window.minimizeAll(displayClass.id, (err) => { + if(err.code) { + console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err)); + return; + } + console.info('Succeeded in minimizing all windows.'); + }); + } catch (exception) { + console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(exception)); + } } catch (exception) { - console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(exception)); -}; + console.error('Failed to obtain the default display object. Code: ' + JSON.stringify(exception)); +} ``` ## window.minimizeAll9+ @@ -590,26 +590,24 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```js import display from '@ohos.display' -import window from '@ohos.window' let displayClass = null; try { displayClass = display.getDefaultDisplaySync(); -} catch (exception) { - console.error('Failed to obtain the default display object. Code: ' + JSON.stringify(exception)); - return; -}; -try { - let promise = window.minimizeAll(displayClass.id); - promise.then(()=> { - console.info('Succeeded in minimizing all windows.'); - }).catch((err)=>{ - console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err)); - }); + try { + let promise = window.minimizeAll(displayClass.id); + promise.then(()=> { + console.info('Succeeded in minimizing all windows.'); + }).catch((err)=>{ + console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(err)); + }); + } catch (exception) { + console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(exception)); + } } catch (exception) { - console.error('Failed to minimize all windows. Cause: ' + JSON.stringify(exception)); -}; + console.error('Failed to obtain the default display object. Code: ' + JSON.stringify(exception)); +} ``` ## window.toggleShownStateForAllAppWindows9+ @@ -644,7 +642,7 @@ window.toggleShownStateForAllAppWindows((err) => { return; } console.info('Succeeded in toggling shown state for all app windows.'); -}) +}); ``` ## window.toggleShownStateForAllAppWindows9+ @@ -678,7 +676,7 @@ promise.then(()=> { console.info('Succeeded in toggling shown state for all app windows.'); }).catch((err)=>{ console.error('Failed to toggle shown state for all app windows. Cause: ' + JSON.stringify(err)); -}) +}); ``` ## window.setWindowLayoutMode9+ @@ -718,7 +716,7 @@ try { }); } catch (exception) { console.error('Failed to set window layout mode. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.setWindowLayoutMode9+ @@ -762,7 +760,7 @@ try { }); } catch (exception) { console.error('Failed to set window layout mode. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.on('systemBarTintChange')8+ @@ -777,10 +775,10 @@ Enables listening for properties changes of the status bar and navigation bar. **Parameters** -| Name | Type | Mandatory| Description | -| -------- | --------------------------------------------------------- | ---- | ------------------------------------------------------------ | -| type | string | Yes | Event type. The value is fixed at **'systemBarTintChange'**, indicating the property change event of the status bar and navigation bar.| -| callback | Callback<[SystemBarTintState](#systembartintstate)> | Yes | Callback used to return the properties of the status bar and navigation bar. | +| Name | Type | Mandatory| Description | +| -------- | ---------------------------------------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The value is fixed at **'systemBarTintChange'**, indicating the property change event of the status bar and navigation bar.| +| callback | Callback<[SystemBarTintState](#systembartintstate8)> | Yes | Callback used to return the properties of the status bar and navigation bar. | **Example** @@ -791,7 +789,7 @@ try { }); } catch (exception) { console.error('Failed to enable the listener for systemBarTint changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.off('systemBarTintChange')8+ @@ -806,10 +804,10 @@ Disables listening for properties changes of the status bar and navigation bar. **Parameters** -| Name | Type | Mandatory| Description | -| -------- | --------------------------------------------------------- | ---- | ------------------------------------------------------------ | -| type | string | Yes | Event type. The value is fixed at **'systemBarTintChange'**, indicating the property change event of the status bar and navigation bar.| -| callback | Callback<[SystemBarTintState](#systembartintstate)> | No | Callback used to return the properties of the status bar and navigation bar. | +| Name | Type | Mandatory| Description | +| -------- | ---------------------------------------------------------- | ---- | ------------------------------------------------------------ | +| type | string | Yes | Event type. The value is fixed at **'systemBarTintChange'**, indicating the property change event of the status bar and navigation bar.| +| callback | Callback<[SystemBarTintState](#systembartintstate8)> | No | Callback used to return the properties of the status bar and navigation bar. | **Example** @@ -818,7 +816,7 @@ try { window.off('systemBarTintChange'); } catch (exception) { console.error('Failed to disable the listener for systemBarTint changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ## window.create(deprecated) @@ -901,9 +899,7 @@ promise.then((data)=> { create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback<Window>): void -Creates a subwindow in the FA model - -or a system window in the stage model. This API uses an asynchronous callback to return the result. +Creates a subwindow in the FA model or a system window in the stage model. This API uses an asynchronous callback to return the result. > **NOTE** > @@ -939,9 +935,7 @@ window.create(this.context, 'alertWindow', window.WindowType.TYPE_SYSTEM_ALERT, create(ctx: BaseContext, id: string, type: WindowType): Promise<Window> -Creates a subwindow in the FA model - -or a system window in the stage model. This API uses a promise to return the result. +Creates a subwindow in the FA model or a system window in the stage model. This API uses a promise to return the result. > **NOTE** > @@ -1110,7 +1104,7 @@ promise.then((data)=> { console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data)); }).catch((err)=>{ console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err)); -}) +}); ``` ## window.getTopWindow(deprecated) @@ -1180,7 +1174,7 @@ promise.then((data)=> { console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data)); }).catch((err)=>{ console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err)); -}) +}); ``` ## Window @@ -1221,8 +1215,8 @@ windowClass.hide((err) => { console.error('Failed to hide the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in hiding the window. data: ' + JSON.stringify(data)); -}) + console.info('Succeeded in hiding the window.'); +}); ``` ### hide7+ @@ -1257,7 +1251,7 @@ promise.then(()=> { console.info('Succeeded in hiding the window.'); }).catch((err)=>{ console.error('Failed to hide the window. Cause: ' + JSON.stringify(err)); -}) +}); ``` ### hideWithAnimation9+ @@ -1295,7 +1289,7 @@ windowClass.hideWithAnimation((err) => { return; } console.info('Succeeded in hiding the window with animation.'); -}) +}); ``` ### hideWithAnimation9+ @@ -1329,10 +1323,10 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```js let promise = windowClass.hideWithAnimation(); promise.then(()=> { - console.info('Succeeded in hiding the window with animation. Data: ' + JSON.stringify(data)); + console.info('Succeeded in hiding the window with animation.'); }).catch((err)=>{ console.error('Failed to hide the window with animation. Cause: ' + JSON.stringify(err)); -}) +}); ``` ### showWindow9+ @@ -1437,7 +1431,7 @@ windowClass.showWithAnimation((err) => { return; } console.info('Succeeded in showing the window with animation.'); -}) +}); ``` ### showWithAnimation9+ @@ -1474,7 +1468,7 @@ promise.then(()=> { console.info('Succeeded in showing the window with animation.'); }).catch((err)=>{ console.error('Failed to show the window with animation. Cause: ' + JSON.stringify(err)); -}) +}); ``` ### destroyWindow9+ @@ -1509,7 +1503,7 @@ windowClass.destroyWindow((err) => { return; } console.info('Succeeded in destroying the window.'); -}) +}); ``` ### destroyWindow9+ @@ -1543,7 +1537,7 @@ promise.then(()=> { console.info('Succeeded in destroying the window.'); }).catch((err)=>{ console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err)); -}) +}); ``` ### moveWindowTo9+ @@ -1584,7 +1578,7 @@ try { }); } catch (exception) { console.error('Failed to move the window. Cause:' + JSON.stringify(exception)); -}; +} ``` ### moveWindowTo9+ @@ -1629,7 +1623,7 @@ try { }); } catch (exception) { console.error('Failed to move the window. Cause:' + JSON.stringify(exception)); -}; +} ``` ### resize9+ @@ -1638,6 +1632,12 @@ resize(width: number, height: number, callback: AsyncCallback<void>): void Changes the size of this window. This API uses an asynchronous callback to return the result. +The main window and subwindow have the following size limits: [320, 2560] in width and [240, 2560] in height, both in units of vp. + +The system window has the following size limits: [0, 2560] in width and [0, 2560] in height, both in units of vp. + +The new width and height you set must meet the limits. + **System capability**: SystemCapability.WindowManager.WindowManager.Core **Parameters** @@ -1670,7 +1670,7 @@ try { }); } catch (exception) { console.error('Failed to change the window size. Cause:' + JSON.stringify(exception)); -}; +} ``` ### resize9+ @@ -1679,6 +1679,12 @@ resize(width: number, height: number): Promise<void> Changes the size of this window. This API uses a promise to return the result. +The main window and subwindow have the following size limits: [320, 2560] in width and [240, 2560] in height, both in units of vp. + +The system window has the following size limits: [0, 2560] in width and [0, 2560] in height, both in units of vp. + +The new width and height you set must meet the limits. + **System capability**: SystemCapability.WindowManager.WindowManager.Core **Parameters** @@ -1715,7 +1721,7 @@ try { }); } catch (exception) { console.error('Failed to change the window size. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowMode9+ @@ -1758,7 +1764,7 @@ try { }); } catch (exception) { console.error('Failed to set the window mode. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowMode9+ @@ -1797,7 +1803,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```js let mode = window.WindowMode.FULLSCREEN; try { - let promise = windowClass.setWindowMode(type); + let promise = windowClass.setWindowMode(mode); promise.then(()=> { console.info('Succeeded in setting the window mode.'); }).catch((err)=>{ @@ -1805,7 +1811,7 @@ try { }); } catch (exception) { console.error('Failed to set the window mode. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### getWindowProperties9+ @@ -1837,7 +1843,7 @@ try { let properties = windowClass.getWindowProperties(); } catch (exception) { console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### getWindowAvoidArea9+ @@ -1876,7 +1882,7 @@ try { let avoidArea = windowClass.getWindowAvoidArea(type); } catch (exception) { console.error('Failed to obtain the area. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowLayoutFullScreen9+ @@ -1917,7 +1923,7 @@ try { }); } catch (exception) { console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowLayoutFullScreen9+ @@ -1962,7 +1968,7 @@ try { }); } catch (exception) { console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowSystemBarEnable9+ @@ -1976,8 +1982,8 @@ Sets whether to display the status bar and navigation bar in this window. This A **Parameters** | Name| Type| Mandatory| Description| -| -------- | ------------------------- | -- | --------- | -| names | Array | Yes| Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed.| +| -------- | ---------------------------- | -- | --------- | +| names | Array<'status'\|'navigation'> | Yes | Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed.| | callback | AsyncCallback<void> | Yes| Callback used to return the result.| **Error codes** @@ -2004,7 +2010,7 @@ try { }); } catch (exception) { console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowSystemBarEnable9+ @@ -2018,8 +2024,8 @@ Sets whether to display the status bar and navigation bar in this window. This A **Parameters** | Name| Type | Mandatory| Description| -| ----- | ----- | -- | ------------------------------------------------------------------------------------------------------------ | -| names | Array | Yes| Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed.| +| ----- | ---------------------------- | -- | --------------------------------- | +| names | Array<'status'\|'navigation'> | Yes| Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed.| **Return value** @@ -2050,7 +2056,7 @@ try { }); } catch (exception) { console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowSystemBarProperties9+ @@ -2080,7 +2086,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js -let SystemBarProperties={ +let SystemBarProperties = { statusBarColor: '#ff00ff', navigationBarColor: '#00ff00', // The following properties are supported since API version 8. @@ -2097,7 +2103,7 @@ try { }); } catch (exception) { console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowSystemBarProperties9+ @@ -2132,7 +2138,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js -let SystemBarProperties={ +let SystemBarProperties = { statusBarColor: '#ff00ff', navigationBarColor: '#00ff00', // The following properties are supported since API version 8. @@ -2148,7 +2154,7 @@ try { }); } catch (exception) { console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setPreferredOrientation9+ @@ -2188,7 +2194,7 @@ try { }); } catch (exception) { console.error('Failed to set window orientation. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setPreferredOrientation9+ @@ -2232,7 +2238,7 @@ try { }); } catch (exception) { console.error('Failed to set window orientation. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setUIContent9+ @@ -2272,7 +2278,7 @@ try { }); } catch (exception) { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setUIContent9+ @@ -2316,7 +2322,7 @@ try { }); } catch (exception) { console.error('Failed to load the content. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### loadContent9+ @@ -2334,7 +2340,7 @@ Loads content from a page associated with a local storage to this window. This A | Name | Type | Mandatory| Description | | -------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Path of the page from which the content will be loaded. | -| storage | LocalStorage | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application.| +| storage | [LocalStorage](../../quick-start/arkts-state-mgmt-application-level.md#localstorage) | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application.| | callback | AsyncCallback<void> | Yes | Callback used to return the result. | **Error codes** @@ -2362,7 +2368,7 @@ try { }); } catch (exception) { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); -}; +} ``` ### loadContent9+ @@ -2380,7 +2386,7 @@ Loads content from a page associated with a local storage to this window. This A | Name | Type | Mandatory| Description | | ------- | ----------------------------------------------- | ---- | ------------------------------------------------------------ | | path | string | Yes | Path of the page from which the content will be loaded. | -| storage | LocalStorage | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application.| +| storage | [LocalStorage](../../quick-start/arkts-state-mgmt-application-level.md#localstorage) | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application.| **Return value** @@ -2412,7 +2418,7 @@ try { }); } catch (exception) { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); -}; +} ``` ### isWindowShowing9+ @@ -2445,7 +2451,7 @@ try { console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data)); } catch (exception) { console.error('Failed to check whether the window is showing. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('windowSizeChange')7+ @@ -2472,7 +2478,7 @@ try { }); } catch (exception) { console.error('Failed to enable the listener for window size changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('windowSizeChange')7+ @@ -2497,7 +2503,7 @@ try { windowClass.off('windowSizeChange'); } catch (exception) { console.error('Failed to disable the listener for window size changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('avoidAreaChange')9+ @@ -2525,7 +2531,7 @@ try { }); } catch (exception) { console.error('Failed to enable the listener for system avoid area changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('avoidAreaChange')9+ @@ -2550,7 +2556,7 @@ try { windowClass.off('avoidAreaChange'); } catch (exception) { console.error('Failed to disable the listener for system avoid area changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('keyboardHeightChange')7+ @@ -2577,7 +2583,7 @@ try { }); } catch (exception) { console.error('Failed to enable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('keyboardHeightChange')7+ @@ -2602,7 +2608,7 @@ try { windowClass.off('keyboardHeightChange'); } catch (exception) { console.error('Failed to disable the listener for keyboard height changes. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('touchOutside')9+ @@ -2631,7 +2637,7 @@ try { }); } catch (exception) { console.error('Failed to register callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('touchOutside')9+ @@ -2658,7 +2664,7 @@ try { windowClass.off('touchOutside'); } catch (exception) { console.error('Failed to unregister callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('screenshot')9+ @@ -2685,7 +2691,7 @@ try { }); } catch (exception) { console.error('Failed to register callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('screenshot')9+ @@ -2706,21 +2712,21 @@ Unsubscribes from screenshot events. **Example** ```js -let callback = ()=>{ +let callback = () => { console.info('screenshot happened'); }; try { windowClass.on('screenshot', callback); } catch (exception) { console.error('Failed to register callback. Cause: ' + JSON.stringify(exception)); -}; +} try { windowClass.off('screenshot', callback); // If multiple callbacks are enabled in on(), they will all be disabled. windowClass.off('screenshot'); } catch (exception) { console.error('Failed to unregister callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### on('dialogTargetTouch')9+ @@ -2747,7 +2753,7 @@ try { }); } catch (exception) { console.error('Failed to register callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### off('dialogTargetTouch')9+ @@ -2772,7 +2778,7 @@ try { windowClass.off('dialogTargetTouch'); } catch (exception) { console.error('Failed to unregister callback. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### bindDialogTarget9+ @@ -2805,6 +2811,8 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js +import rpc from '@ohos.rpc'; + class MyDeathRecipient { onRemoteDied() { console.log('server died'); @@ -2824,6 +2832,7 @@ class TestRemoteObject extends rpc.RemoteObject { return false; } } + let token = new TestRemoteObject('testObject'); try { windowClass.bindDialogTarget(token, () => { @@ -2837,7 +2846,7 @@ try { }); } catch (exception) { console.error('Failed to bind dialog target. Cause:' + JSON.stringify(exception)); -}; +} ``` ### bindDialogTarget9+ @@ -2875,6 +2884,8 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js +import rpc from '@ohos.rpc'; + class MyDeathRecipient { onRemoteDied() { console.log('server died'); @@ -2894,6 +2905,7 @@ class TestRemoteObject extends rpc.RemoteObject { return false; } } + let token = new TestRemoteObject('testObject'); try { let promise = windowClass.bindDialogTarget(token, () => { @@ -2906,7 +2918,7 @@ try { }); } catch (exception) { console.error('Failed to bind dialog target. Cause:' + JSON.stringify(exception)); -}; +} ``` ### isWindowSupportWideGamut9+ @@ -3012,7 +3024,7 @@ try { }); } catch (exception) { console.error('Failed to set window colorspace. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowColorSpace9+ @@ -3055,7 +3067,7 @@ try { }); } catch (exception) { console.error('Failed to set window colorspace. Cause:' + JSON.stringify(exception)); -}; +} ``` ### getWindowColorSpace9+ @@ -3116,7 +3128,7 @@ try { windowClass.setWindowBackgroundColor(color); } catch (exception) { console.error('Failed to set the background color. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowBrightness9+ @@ -3157,7 +3169,7 @@ try { }); } catch (exception) { console.error('Failed to set the brightness. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowBrightness9+ @@ -3202,7 +3214,7 @@ try { }); } catch (exception) { console.error('Failed to set the brightness. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowFocusable9+ @@ -3232,7 +3244,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js -let isFocusable= true; +let isFocusable = true; try { windowClass.setWindowFocusable(isFocusable, (err) => { if (err.code) { @@ -3243,7 +3255,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowFocusable9+ @@ -3278,7 +3290,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc **Example** ```js -let isFocusable= true; +let isFocusable = true; try { let promise = windowClass.setWindowFocusable(isFocusable); promise.then(()=> { @@ -3288,7 +3300,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to be focusable. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowKeepScreenOn9+ @@ -3329,7 +3341,7 @@ try { }); } catch (exception) { console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowKeepScreenOn9+ @@ -3374,7 +3386,7 @@ try { }); } catch (exception) { console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWakeUpScreen()9+ @@ -3410,7 +3422,7 @@ try { windowClass.setWakeUpScreen(wakeUp); } catch (exception) { console.error('Failed to wake up the screen. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setWindowPrivacyMode9+ @@ -3452,7 +3464,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowPrivacyMode9+ @@ -3498,7 +3510,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setSnapshotSkip9+ @@ -3571,7 +3583,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setWindowTouchable9+ @@ -3616,7 +3628,7 @@ try { }); } catch (exception) { console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setForbidSplitMove9+ @@ -3659,7 +3671,7 @@ try { }); } catch (exception) { console.error('Failed to forbid window moving in split screen mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### setForbidSplitMove9+ @@ -3706,7 +3718,7 @@ try { }); } catch (exception) { console.error('Failed to forbid window moving in split screen mode. Cause:' + JSON.stringify(exception)); -}; +} ``` ### snapshot9+ @@ -3801,7 +3813,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -3810,7 +3822,7 @@ try { windowClass.opacity(0.5); } catch (exception) { console.error('Failed to opacity. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### scale9+ @@ -3836,7 +3848,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -3851,7 +3863,7 @@ try { windowClass.scale(obj); } catch (exception) { console.error('Failed to scale. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### rotate9+ @@ -3877,7 +3889,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -3893,7 +3905,7 @@ try { windowClass.rotate(obj); } catch (exception) { console.error('Failed to rotate. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### translate9+ @@ -3919,7 +3931,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -3933,7 +3945,7 @@ try { windowClass.translate(obj); } catch (exception) { console.error('Failed to translate. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### getTransitionController9+ @@ -3959,7 +3971,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -3986,16 +3998,16 @@ controller.animationForHidden = (context : window.TransitionContext) => { toWindow.translate(obj); // Set the transition animation. console.info('toWindow translate end'); } - ) + ); console.info('complete transition end'); -} +}; windowClass.hideWithAnimation((err, data) => { if (err.code) { console.error('Failed to show the window with animation. Cause: ' + JSON.stringify(err)); return; } console.info('Succeeded in showing the window with animation. Data: ' + JSON.stringify(data)); -}) +}); ``` ### setBlur9+ @@ -4021,7 +4033,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -4030,7 +4042,7 @@ try { windowClass.setBlur(4.0); } catch (exception) { console.error('Failed to set blur. Cause: ' + JSON.stringify(exception)); -}; +} ``` ### setBackdropBlur9+ @@ -4056,7 +4068,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -4065,7 +4077,8 @@ try { windowClass.setBackdropBlur(4.0); } catch (exception) { console.error('Failed to set backdrop blur. Cause: ' + JSON.stringify(exception)); -}; +} + ``` ### setBackdropBlurStyle9+ @@ -4091,7 +4104,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -4100,7 +4113,8 @@ try { windowClass.setBackdropBlurStyle(window.BlurStyle.THIN); } catch (exception) { console.error('Failed to set backdrop blur style. Cause: ' + JSON.stringify(exception)); -}; +} + ``` ### setShadow9+ @@ -4129,7 +4143,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -4138,7 +4152,8 @@ try { windowClass.setShadow(4.0, '#FF00FF00', 2, 3); } catch (exception) { console.error('Failed to set shadow. Cause: ' + JSON.stringify(exception)); -}; +} + ``` ### setCornerRadius9+ @@ -4164,7 +4179,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc | ID | Error Message | | ------- | ------------------------------ | | 1300002 | This window state is abnormal. | -| 1300004 | Unauthorized operation. | +| 1300004 | Unauthorized operation. | **Example** @@ -4173,7 +4188,8 @@ try { windowClass.setCornerRadius(4.0); } catch (exception) { console.error('Failed to set corner radius. Cause: ' + JSON.stringify(exception)); -}; +} + ``` ### show(deprecated) @@ -4203,7 +4219,8 @@ windowClass.show((err) => { return; } console.info('Succeeded in showing the window.'); -}) +}); + ``` ### show(deprecated) @@ -4232,7 +4249,8 @@ promise.then(()=> { console.info('Succeeded in showing the window.'); }).catch((err)=>{ console.error('Failed to show the window. Cause: ' + JSON.stringify(err)); -}) +}); + ``` ### destroy(deprecated) @@ -4262,7 +4280,8 @@ windowClass.destroy((err) => { return; } console.info('Succeeded in destroying the window.'); -}) +}); + ``` ### destroy(deprecated) @@ -4291,7 +4310,8 @@ promise.then(()=> { console.info('Succeeded in destroying the window.'); }).catch((err)=>{ console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err)); -}) +}); + ``` ### moveTo(deprecated) @@ -4323,8 +4343,8 @@ windowClass.moveTo(300, 300, (err)=>{ return; } console.info('Succeeded in moving the window.'); - }); + ``` ### moveTo(deprecated) @@ -4360,7 +4380,8 @@ promise.then(()=> { console.info('Succeeded in moving the window.'); }).catch((err)=>{ console.error('Failed to move the window. Cause: ' + JSON.stringify(err)); -}) +}); + ``` ### resetSize(deprecated) @@ -4369,6 +4390,12 @@ resetSize(width: number, height: number, callback: AsyncCallback<void>): v Changes the size of this window. This API uses an asynchronous callback to return the result. +The main window and subwindow have the following size limits: [320, 2560] in width and [240, 2560] in height, both in units of vp. + +The system window has the following size limits: [0, 2560] in width and [0, 2560] in height, both in units of vp. + +The new width and height you set must meet the limits. + > **NOTE** > > This API is supported since API version 7 and deprecated since API version 9. You are advised to use [resize()](#resize9) instead. @@ -4393,6 +4420,7 @@ windowClass.resetSize(500, 1000, (err) => { } console.info('Succeeded in changing the window size.'); }); + ``` ### resetSize(deprecated) @@ -4401,6 +4429,12 @@ resetSize(width: number, height: number): Promise<void> Changes the size of this window. This API uses a promise to return the result. +The main window and subwindow have the following size limits: [320, 2560] in width and [240, 2560] in height, both in units of vp. + +The system window has the following size limits: [0, 2560] in width and [0, 2560] in height, both in units of vp. + +The new width and height you set must meet the limits. + > **NOTE** > > This API is supported since API version 7 and deprecated since API version 9. You are advised to use [resize()](#resize9-1) instead. @@ -4464,6 +4498,7 @@ windowClass.setWindowType(type, (err) => { } console.info('Succeeded in setting the window type.'); }); + ``` ### setWindowType(deprecated) @@ -4502,6 +4537,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the window type. Cause: ' + JSON.stringify(err)); }); + ``` ### getProperties(deprecated) @@ -4573,7 +4609,7 @@ Obtains the area where this window cannot be displayed, for example, the system > **NOTE** > -> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [[getWindowAvoidArea()](#getwindowavoidarea9) instead. +> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [getWindowAvoidArea()](#getwindowavoidarea9) instead. **System capability**: SystemCapability.WindowManager.WindowManager.Core @@ -4595,6 +4631,7 @@ windowClass.getAvoidArea(type, (err, data) => { } console.info('Succeeded in obtaining the area. Data:' + JSON.stringify(data)); }); + ``` ### getAvoidArea(deprecated) @@ -4605,7 +4642,7 @@ Obtains the area where this window cannot be displayed, for example, the system > **NOTE** > -> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [getWindowProperties()](#getwindowavoidarea9) instead. +> This API is supported since API version 7 and deprecated since API version 9. You are advised to use [getWindowAvoidArea()](#getwindowavoidarea9) instead. **System capability**: SystemCapability.WindowManager.WindowManager.Core @@ -4631,6 +4668,7 @@ promise.then((data)=> { }).catch((err)=>{ console.error('Failed to obtain the area. Cause:' + JSON.stringify(err)); }); + ``` ### setFullScreen(deprecated) @@ -4663,6 +4701,7 @@ windowClass.setFullScreen(isFullScreen, (err) => { } console.info('Succeeded in enabling the full-screen mode.'); }); + ``` ### setFullScreen(deprecated) @@ -4769,6 +4808,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err)); }); + ``` ### setSystemBarEnable(deprecated) @@ -4785,10 +4825,10 @@ Sets whether to display the status bar and navigation bar in this window. This A **Parameters** -| Name | Type | Mandatory | Description | -| -------- | ------------------------- | --------- | ------------------------------------------------------------ | -| names | Array | Yes | Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed. | -| callback | AsyncCallback<void> | Yes | Callback used to return the result. | +| Name | Type | Mandatory | Description | +| -------- | ----------------------------- | --------- | ------------------------------------------------------------ | +| names | Array<'status'\|'navigation'> | Yes | Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed. | +| callback | AsyncCallback<void> | Yes | Callback used to return the result. | **Example** @@ -4819,9 +4859,9 @@ Sets whether to display the status bar and navigation bar in this window. This A **Parameters** -| Name | Type | Mandatory | Description | -| ----- | ----- | --------- | ------------------------------------------------------------ | -| names | Array | Yes | Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed. | +| Name | Type | Mandatory | Description | +| ----- | ----------------------------- | --------- | ------------------------------------------------------------ | +| names | Array<'status'\|'navigation'> | Yes | Whether to display the status bar and navigation bar.
For example, to display the status bar and navigation bar, set this parameter to **['status', 'navigation']**. By default, they are not displayed. | **Return value** @@ -4879,6 +4919,7 @@ windowClass.setSystemBarProperties(SystemBarProperties, (err) => { } console.info('Succeeded in setting the system bar properties.'); }); + ``` ### setSystemBarProperties(deprecated) @@ -5020,6 +5061,7 @@ windowClass.isShowing((err, data) => { } console.info('Succeeded in checking whether the window is showing. Data: ' + JSON.stringify(data)); }); + ``` ### isShowing(deprecated) @@ -5049,6 +5091,7 @@ promise.then((data)=> { }).catch((err)=>{ console.error('Failed to check whether the window is showing. Cause: ' + JSON.stringify(err)); }); + ``` ### on('systemAvoidAreaChange')(deprecated) @@ -5076,6 +5119,7 @@ Enables listening for changes to the area where the window cannot be displayed. windowClass.on('systemAvoidAreaChange', (data) => { console.info('Succeeded in enabling the listener for system avoid area changes. Data: ' + JSON.stringify(data)); }); + ``` ### off('systemAvoidAreaChange')(deprecated) @@ -5131,7 +5175,7 @@ windowClass.isSupportWideGamut((err, data) => { return; } console.info('Succeeded in checking whether the window support WideGamut Data: ' + JSON.stringify(data)); -}) +}); ``` @@ -5193,7 +5237,8 @@ windowClass.setColorSpace(window.ColorSpace.WIDE_GAMUT, (err) => { return; } console.info('Succeeded in setting window colorspace.'); -}) +}); + ``` ### setColorSpace(deprecated) @@ -5259,7 +5304,7 @@ windowClass.getColorSpace((err, data) => { return; } console.info('Succeeded in getting window colorspace. Cause:' + JSON.stringify(data)); -}) +}); ``` @@ -5323,6 +5368,7 @@ windowClass.setBackgroundColor(color, (err) => { } console.info('Succeeded in setting the background color.'); }); + ``` ### setBackgroundColor(deprecated) @@ -5461,6 +5507,7 @@ windowClass.setDimBehind(0.5, (err) => { } console.info('Succeeded in setting the dimness.'); }); + ``` ### setDimBehind(deprecated) @@ -5566,6 +5613,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the window to be focusable. Cause: ' + JSON.stringify(err)); }); + ``` ### setKeepScreenOn(deprecated) @@ -5598,6 +5646,7 @@ windowClass.setKeepScreenOn(isKeepScreenOn, (err) => { } console.info('Succeeded in setting the screen to be always on.'); }); + ``` ### setKeepScreenOn(deprecated) @@ -5634,6 +5683,7 @@ promise.then(() => { }).catch((err)=>{ console.info('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err)); }); + ``` ### setOutsideTouchable(deprecated) @@ -5664,7 +5714,8 @@ windowClass.setOutsideTouchable(true, (err) => { return; } console.info('Succeeded in setting the area to be touchable.'); -}) +}); + ``` ### setOutsideTouchable(deprecated) @@ -5700,6 +5751,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the area to be touchable. Cause: ' + JSON.stringify(err)); }); + ``` ### setPrivacyMode(deprecated) @@ -5731,7 +5783,6 @@ windowClass.setPrivacyMode(isPrivacyMode, (err) => { return; } console.info('Succeeded in setting the window to privacy mode.'); - }); ``` @@ -5770,6 +5821,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the window to privacy mode. Cause: ' + JSON.stringify(err)); }); + ``` ### setTouchable(deprecated) @@ -5801,8 +5853,8 @@ windowClass.setTouchable(isTouchable, (err) => { return; } console.info('Succeeded in setting the window to be touchable.'); - }); + ``` ### setTouchable(deprecated) @@ -5839,6 +5891,7 @@ promise.then(()=> { }).catch((err)=>{ console.error('Failed to set the window to be touchable. Cause: ' + JSON.stringify(err)); }); + ``` ## WindowStageEventType9+ @@ -5849,12 +5902,12 @@ Describes the lifecycle of a window stage. **System capability**: SystemCapability.WindowManager.WindowManager.Core -| Name | Default Value | Description | -| ---------- | ------------- | ---------------------------------------------- | -| FOREGROUND | 1 | The window stage is running in the foreground. | -| ACTIVE | 2 | The window stage gains focus. | -| INACTIVE | 3 | The window stage loses focus. | -| BACKGROUND | 4 | The window stage is running in the background. | +| Name | Value | Description | +| ---------- | ----- | ---------------------------------------------- | +| FOREGROUND | 1 | The window stage is running in the foreground. | +| ACTIVE | 2 | The window stage gains focus. | +| INACTIVE | 3 | The window stage loses focus. | +| BACKGROUND | 4 | The window stage is running in the background. | ## WindowStage9+ @@ -5891,6 +5944,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -5904,7 +5958,8 @@ class myAbility extends Ability { console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data)); }); } -} +}; + ``` ### getMainWindow9+ @@ -5936,19 +5991,21 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); let windowClass = null; let promise = windowStage.getMainWindow(); - promise.then((data)=> { + promise.then((data) => { windowClass = data; console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data)); - }).catch((err)=>{ + }).catch((err) => { console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err)); }); } -} +}; + ``` ### getMainWindowSync9+ @@ -5980,6 +6037,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -5989,7 +6047,8 @@ class myAbility extends Ability { console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(exception)); }; } -} +}; + ``` ### createSubWindow9+ @@ -6006,7 +6065,7 @@ Creates a subwindow for this window stage. This API uses an asynchronous callbac | Name | Type | Mandatory | Description | | -------- | -------------------------------------- | --------- | -------------------------------------- | -| name | String | Yes | Name of the subwindow. | +| name | string | Yes | Name of the subwindow. | | callback | AsyncCallback<[Window](#window)> | Yes | Callback used to return the subwindow. | **Error codes** @@ -6022,6 +6081,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6040,7 +6100,8 @@ class myAbility extends Ability { console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(exception)); }; } -} +}; + ``` ### createSubWindow9+ @@ -6057,7 +6118,7 @@ Creates a subwindow for this window stage. This API uses a promise to return the | Name | Type | Mandatory | Description | | ---- | ------ | --------- | ---------------------- | -| name | String | Yes | Name of the subwindow. | +| name | string | Yes | Name of the subwindow. | **Return value** @@ -6078,23 +6139,25 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); let windowClass = null; try { let promise = windowStage.createSubWindow('mySubWindow'); - promise.then((data)=> { + promise.then((data) => { windowClass = data; console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data)); - }).catch((err)=>{ + }).catch((err) => { console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err)); }); } catch (exception) { console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(exception)); }; } -} +}; + ``` ### getSubWindow9+ @@ -6125,6 +6188,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6138,7 +6202,8 @@ class myAbility extends Ability { console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data)); }); } -} +}; + ``` ### getSubWindow9+ @@ -6169,19 +6234,21 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); let windowClass = null; let promise = windowStage.getSubWindow(); - promise.then((data)=> { + promise.then((data) => { windowClass = data; console.info('Succeeded in obtaining the subwindow. Data: ' + JSON.stringify(data)); - }).catch((err)=>{ + }).catch((err) => { console.error('Failed to obtain the subwindow. Cause: ' + JSON.stringify(err)); }) } -} +}; + ``` ### loadContent9+ @@ -6199,7 +6266,7 @@ Loads content from a page associated with a local storage to the main window in | Name | Type | Mandatory | Description | | -------- | ------------------------------------------------------------ | --------- | ------------------------------------------------------------ | | path | string | Yes | Path of the page from which the content will be loaded. | -| storage | LocalStorage | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application. | +| storage | [LocalStorage](../../quick-start/arkts-state-mgmt-application-level.md#localstorage) | Yes | A storage unit, which provides storage for variable state properties and non-variable state properties of an application. | | callback | AsyncCallback<void> | Yes | Callback used to return the result. | **Error codes** @@ -6215,6 +6282,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { storage : LocalStorage onWindowStageCreate(windowStage) { @@ -6233,7 +6301,8 @@ class myAbility extends Ability { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); }; } -} +}; + ``` ### loadContent9+ @@ -6251,7 +6320,7 @@ Loads content from a page associated with a local storage to the main window in | Name | Type | Mandatory | Description | | ------- | ------------------------------------------------------------ | --------- | ------------------------------------------------------------ | | path | string | Yes | Path of the page from which the content will be loaded. | -| storage | LocalStorage | No | A storage unit, which provides storage for variable state properties and non-variable state properties of an application. | +| storage | [LocalStorage](../../quick-start/arkts-state-mgmt-application-level.md#localstorage) | No | A storage unit, which provides storage for variable state properties and non-variable state properties of an application. | **Return value** @@ -6272,6 +6341,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { storage : LocalStorage onWindowStageCreate(windowStage) { @@ -6280,16 +6350,17 @@ class myAbility extends Ability { console.log('onWindowStageCreate'); try { let promise = windowStage.loadContent('pages/page2',this.storage); - promise.then(()=> { + promise.then(() => { console.info('Succeeded in loading the content.'); - }).catch((err)=>{ + }).catch((err) => { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); }); } catch (exception) { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); }; } -} +}; + ``` ### loadContent9+ @@ -6322,6 +6393,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6337,7 +6409,8 @@ class myAbility extends Ability { console.error('Failed to load the content. Cause:' + JSON.stringify(exception)); }; } -} +}; + ``` ### on('windowStageEvent')9+ @@ -6370,6 +6443,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6383,7 +6457,8 @@ class myAbility extends Ability { JSON.stringify(exception)); }; } -} +}; + ``` ### off('windowStageEvent')9+ @@ -6416,6 +6491,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6426,7 +6502,8 @@ class myAbility extends Ability { JSON.stringify(exception)); }; } -} +}; + ``` ### disableWindowDecor()9+ @@ -6454,12 +6531,14 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('disableWindowDecor'); windowStage.disableWindowDecor(); } -} +}; + ``` ### setShowOnLockScreen()9+ @@ -6493,6 +6572,7 @@ For details about the error codes, see [Window Error Codes](../errorcodes/errorc ```ts import Ability from '@ohos.application.Ability'; + class myAbility extends Ability { onWindowStageCreate(windowStage) { console.log('onWindowStageCreate'); @@ -6502,7 +6582,8 @@ class myAbility extends Ability { console.error('Failed to show on lockscreen. Cause:' + JSON.stringify(exception)); }; } -} +}; + ``` ## TransitionContext9+ @@ -6557,7 +6638,7 @@ controller.animationForShown = (context : window.TransitionContext) => { toWindow.translate(obj); console.info('toWindow translate end'); } - ) + ); try { context.completeTransition(true) } catch (exception) { @@ -6565,6 +6646,7 @@ controller.animationForShown = (context : window.TransitionContext) => { } console.info('complete transition end'); }; + ``` ## TransitionController9+ @@ -6612,9 +6694,10 @@ controller.animationForShown = (context : window.TransitionContext) => { toWindow.translate(obj); console.info('toWindow translate end'); } - ) + ); console.info('complete transition end'); -} +}; + ``` ### animationForHidden9+ @@ -6660,6 +6743,5 @@ controller.animationForHidden = (context : window.TransitionContext) => { } ) console.info('complete transition end'); -} -``` - +}; +``` \ No newline at end of file diff --git a/en/application-dev/reference/errorcodes/errorcode-avsession.md b/en/application-dev/reference/errorcodes/errorcode-avsession.md new file mode 100644 index 0000000000000000000000000000000000000000..98b811bd159ccf0be5eed06746622a3686e96bce --- /dev/null +++ b/en/application-dev/reference/errorcodes/errorcode-avsession.md @@ -0,0 +1,131 @@ +# AVSession Management Error Codes + +## 6600101 Session Service Exception + +**Error Message** + +Session service exception + +**Description** + +The session service is abnormal, and the application cannot obtain a response from the session service. For example, the session service is not running or the communication with the session service fails. + +**Possible Causes** + +The session service is killed during session restart. + +**Solution** + +1. The system retries the operation automatically. If the error persists for 3 seconds or more, stop the operation on the session or controller. + +2. Destroy the current session or session controller and re-create it. If the re-creation fails, stop the operation on the session. + +## 6600102 Session Does Not Exist + +**Error Message** + +The session does not exist + +**Description** + +Parameters are set for or commands are sent to the session that does not exist. + +**Possible Causes** + +The session has been destroyed, and no session record exists on the server. + +**Solution** + +1. If the error occurs on the application, re-create the session. If the error occurs on Media Controller, stop sending query or control commands to the session. + +2. If the error occurs on the session service, query the current session record and pass the correct session ID when creating the controller. + +## 6600103 Session Controller Does Not Exist + +**Error Message** + +The session controller does not exist + +**Description** + +A control command or an event is sent to the controller that does not exist. + +**Possible Causes** + +The controller has been destroyed. + +**Solution** + +Query the session record and create the corresponding controller. + +## 6600104 Remote Session Connection Failure + +**Error Message** + +The remote session connection failed + +**Description** + +The communication between the local session and the remote session fails. + +**Possible Causes** + +The communication between devices is interrupted. + +**Solution** + +Stop sending control commands to the session. Subscribe to output device changes, and resume the sending when the output device is changed. + +## 6600105 Invalid Session Command + +**Error Message** + +Invalid session command + +**Description** + +The control command or event sent to the session is not supported. + +**Possible Causes** + +The session does not support this command. + +**Solution** + +Stop sending the command or event. Query the commands supported by the session, and send a command supported. + +## 6600106 Session Not Activated + +**Error Message** + +The session not active + +**Description** + +A control command or event is sent to the session that is not activated. + +**Possible Causes** + +The session is in the inactive state. + +**Solution** + +Stop sending the command or event. Subscribe to the session activation status, and resume the sending when the session is activated. + +## 6600107 Too Many Commands or Events + +**Error Message** + +Command or event overload + +**Description** + +The session client sends too many messages or commands to the server in a period of time, causing the server to be overloaded. + +**Possible Causes** + +The server is overloaded with messages or events. + +**Solution** + +Control the frequency of sending commands or events. diff --git a/en/application-dev/ui/js-framework-multiple-languages.md b/en/application-dev/ui/js-framework-multiple-languages.md index 9493675bf1c608a8a30586a88a67831dd3c1deb1..49edf2d3336ed95250e5d695d9eba7275351debb 100644 --- a/en/application-dev/ui/js-framework-multiple-languages.md +++ b/en/application-dev/ui/js-framework-multiple-languages.md @@ -11,7 +11,7 @@ You only need to perform operations in [Resource Files](#resource-files) and [Re Resource files store application content in multiple languages. This framework uses JSON files to store resource definitions. Place the resource file of each locale in the i18n directory described in [File Organization](../ui/js-framework-file.md). -Resource files should be named in _language-script-region_.json format. For example, the resource file for Hong Kong Chinese in the traditional script is named zh-Hant-HK. You can omit the region, for example, zh-CN for simplified Chinese, or omit both the script and region, for example, zh for Chinese. +Resource files should be named in _language-script-region_.json format. For example, the resource file for Hong Kong(China) in the traditional script is named zh-Hant-HK. You can omit the region, for example, zh-CN for simplified Chinese, or omit both the script and region, for example, zh for Chinese. ``` diff --git a/en/application-dev/windowmanager/application-window-stage.md b/en/application-dev/windowmanager/application-window-stage.md index 4388719ee9e5e6b2bce2ddea95bac03d49ea4fc8..6ab30dbf328b23e983981d7f67f4f8ca0b013835 100644 --- a/en/application-dev/windowmanager/application-window-stage.md +++ b/en/application-dev/windowmanager/application-window-stage.md @@ -57,8 +57,9 @@ In the stage model, the main window of an application is created and maintained 1. Obtain the main window. -Call **getMainWindow** to obtain the main window of the application. - + + Call **getMainWindow** to obtain the main window of the application. + 2. Set the properties of the main window. You can set multiple properties of the main window, such as the background color, brightness, and whether the main window is touchable. The code snippet below uses the **touchable** property as an example. @@ -83,21 +84,21 @@ class MainAbility extends Ability { console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data)); // 2. Set the touchable property of the main window. let isTouchable = true; - windowClass.setTouchable(isTouchable, (err, data) => { + windowClass.setTouchable(isTouchable, (err) => { if (err.code) { console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in setting the window to be touchable. Data:' + JSON.stringify(data)); + console.info('Succeeded in setting the window to be touchable.'); }) }) // 3. Load the page content to the main window. - windowStage.loadContent("pages/page2", (err, data) => { + windowStage.loadContent("pages/page2", (err) => { if (err.code) { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); + console.info('Succeeded in loading the content.'); }); } }; @@ -111,12 +112,11 @@ You can create an application subwindow, such as a dialog box, and set its prope ### How to Develop -1. Create or obtain a subwindow. - -Call **createSubWindow** to create a subwindow. - -Call **getSubWindow** to obtain a subwindow. +1. Create a subwindow. + + Call **createSubWindow** to create a subwindow. + 2. Set the properties of the subwindow. After the subwindow is created, you can set its properties, such as the size, position, background color, and brightness. @@ -144,44 +144,35 @@ Call **getSubWindow** to obtain a subwindow. } sub_windowClass = data; console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data)); - // 1. Obtain an available subwindow. - windowStage_.getSubWindow((err, data) => { - if (err.code) { - console.error('Failed to obtain the subWindow. Cause:' + JSON.stringify(err)); - return; - } - console.info('Succeeded in obtaining the subWindow. Data: ' + JSON.stringify(data)); - sub_windowClass = data; - }); // 2. Set the position, size, and other properties of the subwindow. - sub_windowClass.moveTo(300, 300, (err, data) => { + sub_windowClass.moveTo(300, 300, (err) => { if (err.code) { console.error('Failed to move the window. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in moving the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in moving the window.'); }); - sub_windowClass.resetSize(500, 1000, (err, data) => { + sub_windowClass.resetSize(500, 1000, (err) => { if (err.code) { console.error('Failed to change the window size. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in changing the window size. Data: ' + JSON.stringify(data)); + console.info('Succeeded in changing the window size.'); }); // 3. Load the page content to the subwindow. - sub_windowClass.loadContent("pages/page3", (err, data) => { + sub_windowClass.loadContent("pages/page3", (err) => { if (err.code) { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); + console.info('Succeeded in loading the content.'); // 3. Show the subwindow. - sub_windowClass.show((err, data) => { + sub_windowClass.show((err) => { if (err.code) { - console.error('Failed to show the window. Cause:' + JSON.stringify(err)); + console.error('Failed to show the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in showing the window.'); }); }); }) @@ -189,18 +180,18 @@ Call **getSubWindow** to obtain a subwindow. destroySubWindow() { // 4. Destroy the subwindow when it is no longer needed (depending on the service logic). - sub_windowClass.destroy((err, data) => { + sub_windowClass.destroy((err) => { if (err.code) { console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in destroying the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in destroying the window.'); }); } onWindowStageCreate(windowStage) { windowStage_ = windowStage; - // Create the subwindow when it is needed, for example, when a click event occurs in the main window. Calling onWindowStageCreate is not always necessary. The code here is for reference only. + // Create a subwindow when it is needed, for example, when a click event occurs in the main window. Calling onWindowStageCreate is not always necessary. The code here is for reference only. this.showSubWindow(); } @@ -221,8 +212,9 @@ To create a better video watching and gaming experience, you can use the immersi 1. Obtain the main window. -Call **getMainWindow** to obtain the main window of the application. - + + Call **getMainWindow** to obtain the main window of the application. + 2. Implement the immersive effect. You can use any of the following methods: - Method 1: Call **setFullScreen** to set the main window to be displayed in full screen. In this case, the navigation bar and status bar are hidden. - Method 2: Call **setSystemBarEnable** to hide the navigation bar and status bar. @@ -249,30 +241,30 @@ Call **getMainWindow** to obtain the main window of the application. // 2. Use method 1 to implement the immersive effect. let isFullScreen = true; - windowClass.setFullScreen(isFullScreen, (err, data) => { + windowClass.setFullScreen(isFullScreen, (err) => { if (err.code) { console.error('Failed to enable the full-screen mode. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in enabling the full-screen mode. Data: ' + JSON.stringify(data)); + console.info('Succeeded in enabling the full-screen mode.'); }); // 2. Use method 2 to implement the immersive effect. let names = []; - windowClass.setSystemBarEnable(names, (err, data) => { + windowClass.setSystemBarEnable(names, (err) => { if (err.code) { console.error('Failed to set the system bar to be visible. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in setting the system bar to be visible. Data: ' + JSON.stringify(data)); + console.info('Succeeded in setting the system bar to be visible.'); }); // 2. Use method 3 to implement the immersive effect. let isLayoutFullScreen = true; - windowClass.setLayoutFullScreen(isLayoutFullScreen, (err, data) => { + windowClass.setLayoutFullScreen(isLayoutFullScreen, (err) => { if (err.code) { console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in setting the window layout to full-screen mode. Data: ' + JSON.stringify(data)); + console.info('Succeeded in setting the window layout to full-screen mode.'); }); let sysBarProps = { statusBarColor: '#ff00ff', @@ -281,21 +273,21 @@ Call **getMainWindow** to obtain the main window of the application. statusBarContentColor: '#ffffff', navigationBarContentColor: '#ffffff' }; - windowClass.setSystemBarProperties(sysBarProps, (err, data) => { + windowClass.setSystemBarProperties(sysBarProps, (err) => { if (err.code) { console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in setting the system bar properties. Data: ' + JSON.stringify(data)); + console.info('Succeeded in setting the system bar properties.'); }); }) // 3. Load the page content to the immersive window. - windowStage.loadContent("pages/page2", (err, data) => { + windowStage.loadContent("pages/page2", (err) => { if (err.code) { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); + console.info('Succeeded in loading the content.'); }); } }; @@ -310,13 +302,13 @@ A floating window is created based on an existing task. It is always displayed i ### How to Develop 1. Apply for permissions. - -To create a floating window (of the **WindowType.TYPE_FLOAT** type), you must configure the **ohos.permission.SYSTEM_FLOAT_WINDOW** permission in the **requestPermissions** field of the **module.json5** file. For details about the file, see [Application Package Structure Configuration File](../quick-start/stage-structure.md). - + + To create a floating window (of the **WindowType.TYPE_FLOAT** type), you must configure the **ohos.permission.SYSTEM_FLOAT_WINDOW** permission in the **requestPermissions** field of the **module.json5** file. For details about the file, see [Application Package Structure Configuration File](../quick-start/stage-structure.md). + > **NOTE** > > If the task for creating the floating window is reclaimed by the system, the floating window will no longer be displayed. If you want the floating window to be displayed in such a case, apply for a [continuous task](../task-management/background-task-overview.md). - + ```json { "module": { @@ -334,7 +326,7 @@ To create a floating window (of the **WindowType.TYPE_FLOAT** type), you must co } } ``` - + 2. Create a floating window. Call **window.create** to create a floating window. @@ -368,43 +360,43 @@ To create a floating window (of the **WindowType.TYPE_FLOAT** type), you must co console.info('Succeeded in creating the floatWindow. Data: ' + JSON.stringify(data)); windowClass = data; // 3. Set the position, size, and properties of the floating window. - windowClass.moveTo(300, 300, (err, data) => { + windowClass.moveTo(300, 300, (err) => { if (err.code) { console.error('Failed to move the window. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in moving the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in moving the window.'); }); - windowClass.resetSize(500, 1000, (err, data) => { + windowClass.resetSize(500, 1000, (err) => { if (err.code) { console.error('Failed to change the window size. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in changing the window size. Data: ' + JSON.stringify(data)); + console.info('Succeeded in changing the window size.'); }); // 4. Load the page content to the floating window. - windowClass.loadContent("pages/page4", (err, data) => { + windowClass.loadContent("pages/page4", (err) => { if (err.code) { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); + console.info('Succeeded in loading the content.'); // 4. Show the floating window. - windowClass.show((err, data) => { + windowClass.show((err) => { if (err.code) { console.error('Failed to show the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in showing the window.'); }); }); // 5. Destroy the floating window when it is no longer needed (depending on the service logic). - windowClass.destroy((err, data) => { + windowClass.destroy((err) => { if (err.code) { console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in destroying the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in destroying the window.'); }); }); } diff --git a/en/application-dev/windowmanager/system-window-stage.md b/en/application-dev/windowmanager/system-window-stage.md index e4e8cf63fdf5f03e2dbbad868ee42be9d924f440..5df5ada6bf29585371882e06c3394293dbd5b05c 100644 --- a/en/application-dev/windowmanager/system-window-stage.md +++ b/en/application-dev/windowmanager/system-window-stage.md @@ -65,46 +65,46 @@ export default class ServiceExtensionAbility1 extends ExtensionContext { console.info('Succeeded in creating the volume window.') windowClass = data; // 2. Change the size and position of the volume bar window, or set its properties such as the background color and brightness. - windowClass.moveTo(300, 300, (err, data) => { + windowClass.moveTo(300, 300, (err) => { if (err.code) { console.error('Failed to move the window. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in moving the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in moving the window.'); }); - windowClass.resetSize(500, 1000, (err, data) => { + windowClass.resetSize(500, 1000, (err) => { if (err.code) { console.error('Failed to change the window size. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in changing the window size. Data: ' + JSON.stringify(data)); + console.info('Succeeded in changing the window size.'); }); // 3. Load the page content to the volume bar window. - windowClass.loadContent("pages/page_volume", (err, data) => { + windowClass.loadContent("pages/page_volume", (err) => { if (err.code) { console.error('Failed to load the content. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); + console.info('Succeeded in loading the content.'); // 3. Show the volume bar window. - windowClass.show((err, data) => { + windowClass.show((err) => { if (err.code) { console.error('Failed to show the window. Cause:' + JSON.stringify(err)); return; } - console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in showing the window.'); }); }); // 4. Hide or destroy the volume bar window. // Hide the volume bar window when a click event outside the window is detected. windowClass.on('touchOutside', () => { console.info('touch outside'); - windowClass.hide((err, data) => { + windowClass.hide((err) => { if (err.code) { console.error('Failed to hide the window. Cause: ' + JSON.stringify(err)); return; } - console.info('Succeeded in hidinging the window. Data: ' + JSON.stringify(data)); + console.info('Succeeded in hidinging the window.'); }); }); }); diff --git a/en/application-dev/windowmanager/window-overview.md b/en/application-dev/windowmanager/window-overview.md index e27a032e7215ca6cea9158c25e9d75a79f2d0c01..a72dac25d09d7a82de1d7fc3372991358d41d791 100644 --- a/en/application-dev/windowmanager/window-overview.md +++ b/en/application-dev/windowmanager/window-overview.md @@ -63,4 +63,8 @@ You are advised to use the stage model for window development. ## Constraints -You cannot develop system windows in the FA model. +- You cannot develop system windows in the FA model. + +- The main window and subwindow have the following size limits: [320, 2560] in width and [240, 2560] in height, both in units of vp. + +- The system window has the following size limits: [0, 2560] in width and [0, 2560] in height, both in units of vp. diff --git a/zh-cn/application-dev/ability/fa-serviceability.md b/zh-cn/application-dev/ability/fa-serviceability.md index 56f4f3393afd9602d9be30edf27cb92949c0c18e..a83d5d636f89554c77d74b72982ac3751d25d4d9 100644 --- a/zh-cn/application-dev/ability/fa-serviceability.md +++ b/zh-cn/application-dev/ability/fa-serviceability.md @@ -3,17 +3,21 @@ ## 场景介绍 基于Service模板的Ability(以下简称“Service”)主要用于后台运行任务(如执行音乐播放、文件下载等),但不提供用户交互界面。Service可由其他应用或Ability启动。即使用户切换到其他应用,Service仍将在后台继续运行。 -## 接口说明 +## 生命周期 **表1** Service中相关生命周期API功能介绍 |接口名|描述| |:------|:------| -|onStart?(): void|该方法在创建Service的时候调用,用于Service的初始化。在Service的整个生命周期只会调用一次,调用时传入的Want应为空。| +|onStart?(): void|该方法在创建Service的时候调用,用于Service的初始化,在Service的整个生命周期只会调用一次。| |onCommand?(want: Want, startId: number): void|在Service创建完成之后调用,该方法在客户端每次启动该Service时都会调用,开发者可以在该方法中做一些调用统计、初始化类的操作。| |onConnect?(want: Want): rpc.RemoteObject|在Ability和Service连接时调用。| |onDisconnect?(want: Want): void|在Ability与绑定的Service断开连接时调用。| |onStop?(): void|在Service销毁时调用。开发者应通过实现此方法来清理资源,如关闭线程、注册的侦听器等。| +onCommand()与onConnect()的区别在于: + - onCommand()只能被startAbility或startAbilityForResult触发,客户端每次启动Service均会触发该回调 + - onConnect()只能被connectAbility触发,客户端每次与Servcie建立新的连接时会触发该回调 + ## 开发步骤 ### 创建注册Service @@ -22,45 +26,46 @@ 创建Service的代码示例如下: - ```javascript - export default { - onStart() { - console.log('ServiceAbility onStart'); - }, - onCommand(want, startId) { - console.log('ServiceAbility onCommand'); - }, - onConnect(want) { - console.log('ServiceAbility OnConnect'); - return new FirstServiceAbilityStub('test'); - }, - onDisconnect(want) { - console.log('ServiceAbility OnDisConnect'); - }, - onStop() { - console.log('ServiceAbility onStop'); - }, - } + ```ts + export default { + onStart() { + console.log('ServiceAbility onStart'); + }, + onCommand(want, startId) { + console.log('ServiceAbility onCommand'); + }, + onConnect(want) { + console.log('ServiceAbility OnConnect'); + // ServiceAbilityStub的实现在下文给出 + return new ServiceAbilityStub('test'); + }, + onDisconnect(want) { + console.log('ServiceAbility OnDisConnect'); + }, + onStop() { + console.log('ServiceAbility onStop'); + } + } ``` 2. 注册Service。 Service需要在应用配置文件config.json中进行注册,注册类型type需要设置为service。 - ```javascript + ```json { - "module": { - "abilities": [ - { - "name": ".ServiceAbility", - "type": "service", - "visible": true - ... - } - ] + "module": { + "abilities": [ + { + "name": ".ServiceAbility", + "type": "service", + "visible": true ... - } + } + ] ... + } + ... } ``` @@ -72,50 +77,61 @@ Ability为开发者提供了startAbility()方法来启动另外一个Ability。 开发者可以通过构造包含bundleName与abilityName的Want对象来设置目标Service信息。参数的含义如下: -- bundleName:表示包名称。 +- bundleName:表示对端应用的包名称。 - abilityName:表示待启动的Ability名称。 启动本地设备Service的代码示例如下: -```javascript -import featureAbility from '@ohos.ability.featureAbility'; -let promise = featureAbility.startAbility( +```ts +import featureAbility from '@ohos.ability.featureAbility' + +featureAbility.startAbility( { want: { bundleName: "com.jstest.service", - abilityName: "com.jstest.service.ServiceAbility", - }, + abilityName: "com.jstest.service.ServiceAbility" + } } -); +).then((err) => { + console.log("startService success"); +}).catch (err => { + console.log("startService FAILED"); +}); ``` 执行上述代码后,Ability将通过startAbility() 方法来启动Service。 -- 如果Service尚未运行,则系统会先调用onStart()来初始化Service,再回调Service的onCommand()方法来启动Service。 -- 如果Service正在运行,则系统会直接回调Service的onCommand()方法来启动Service。 +- 如果Service尚未运行,则系统会先初始化Service,然后回调onStart()来启动Service,再回调onCommand()方法。 +- 如果Service正在运行,则系统会直接回调Service的onCommand()方法。 + +启动远端设备Service的代码示例如下,详见[连接远程Service](fa-serviceability.md#连接远程service当前仅对系统应用开放): -启动远端设备Service的代码示例如下,getRemoteDeviceId()方法详见[连接远程Service](#连接远程service当前仅对系统应用开放): +```ts +import featureAbility from '@ohos.ability.featureAbility' -```javascript -import featureAbility from '@ohos.ability.featureAbility'; -let promise = featureAbility.startAbility( +featureAbility.startAbility( { want: { - deviceId: getRemoteDeviceId(), //远端设备Id + deviceId: remoteDeviceId, // 远端设备Id bundleName: "com.jstest.service", - abilityName: "com.jstest.service.ServiceAbility", - }, + abilityName: "com.jstest.service.ServiceAbility" + } } -); +).then((err) => { + console.log("startService success"); +}).catch (err => { + console.log("startService FAILED"); +}); ``` ### 停止Service - Service一旦创建就会一直保持在后台运行,除非必须回收内存资源,否则系统不会停止或销毁Service。 - - + 常规情况下,Service可以将自己停止,或者被系统停止,具体场景如下: + - Service调用particleAbility.terminateSelf()方法将自己停止。 + - Service所在的应用进程退出,Service将随着进程被回收。 + - 若Service仅仅是通过connectAbility()方法被访问的(从未执行过onCommand()回调),那么当最后一个连接被断开后,系统会将Service停止。 ### 连接本地Service @@ -128,281 +144,199 @@ let promise = featureAbility.startAbility( 使用OpenHarmony IDL(OpenHarmony Interface Definition Language)来自动生成对应客户端服务端及IRemoteObject代码,具体示例代码和说明请参考: - - [`OpenHarmony IDL`:TS开发步骤](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/IDL/idl-guidelines.md#ts%E5%BC%80%E5%8F%91%E6%AD%A5%E9%AA%A4) + - [`OpenHarmony IDL`:TS开发步骤](../IDL/idl-guidelines.md#ts) 2. 在对应文件编写代码 - 在使用connectAbility()处理回调时,需要传入目标Service的Want与IAbilityConnection的实例。IAbilityConnection提供了以下方法供开发者实现:onConnect()是用来处理连接Service成功的回调,onDisconnect()是用来处理Service异常死亡的回调,onFailed()是用来处理连接Service失败的回调。 + 在使用connectAbility()时,需要传入目标Service的Want与ConnectOptions的实例,其中ConnectOptions封装了三个回调,分别对应不同情况,开发者需自行实现: + - onConnect():用来处理连接Service成功的回调。 + - onDisconnect():用来处理Service断连或异常死亡的回调。 + - onFailed():用来处理连接Service失败的回调。 创建连接本地Service回调实例的代码示例如下: - ```javascript + ```ts import prompt from '@system.prompt' var option = { onConnect: function onConnectCallback(element, proxy) { - console.log(`onConnectLocalService onConnectDone`) + console.log(`onConnectLocalService onConnectDone`); if (proxy === null) { prompt.showToast({ message: "Connect service failed" - }) - return + }); + return; } - let data = rpc.MessageParcel.create() - let reply = rpc.MessageParcel.create() - let option = new rpc.MessageOption() - data.writeInterfaceToken("connect.test.token") - proxy.sendRequest(0, data, reply, option) + // 得到Service的proxy对象后便可以与其进行通信 + let data = rpc.MessageParcel.create(); + let reply = rpc.MessageParcel.create(); + let option = new rpc.MessageOption(); + data.writeString("InuptString"); + proxy.sendRequest(0, data, reply, option); prompt.showToast({ message: "Connect service success" - }) + }); }, onDisconnect: function onDisconnectCallback(element) { - console.log(`onConnectLocalService onDisconnectDone element:${element}`) + console.log(`onConnectLocalService onDisconnectDone element:${element}`); prompt.showToast({ message: "Disconnect service success" - }) + }); }, onFailed: function onFailedCallback(code) { - console.log(`onConnectLocalService onFailed errCode:${code}`) + console.log(`onConnectLocalService onFailed errCode:${code}`); prompt.showToast({ message: "Connect local service onFailed" - }) + }); } - } + }; ``` 连接本地Service的代码示例如下: - ```javascript - import featureAbility from '@ohos.ability.featureAbility'; - let connectId = featureAbility.connectAbility( - { - bundleName: "com.jstest.service", - abilityName: "com.jstest.service.ServiceAbility", - }, - { - onConnect: onConnectCallback, - onDisconnect: onDisconnectCallback, - onFailed: onFailedCallback, - }, - ); + ```ts + import featureAbility from '@ohos.ability.featureAbility' + + let want = { + bundleName: "com.jstest.service", + abilityName: "com.jstest.service.ServiceAbility" + }; + let connectId = featureAbility.connectAbility(want, option); ``` - 同时,Service侧也需要在onConnect()时返回IRemoteObject,从而定义与Service进行通信的接口。onConnect()需要返回一个IRemoteObject对象。OpenHarmony提供了IRemoteObject的默认实现,开发者可以通过继承rpc.RemoteObject来创建自定义的实现类。 + 同时,Service侧也需要在onConnect()时返回IRemoteObject,从而定义与Service进行通信的接口。onConnect()需要返回一个IRemoteObject对象。OpenHarmony提供了IRemoteObject的默认实现,开发者可以通过继承rpc.RemoteObject来创建自定义的实现类,从而实现与Service的通信。具体使用方法可参考[ohos.rpc API文档](..\reference\apis\js-apis-rpc.md)。 Service侧把自身的实例返回给调用侧的代码示例如下: - ```javascript - import rpc from "@ohos.rpc"; + ```ts + import rpc from "@ohos.rpc" + + class ServiceAbilityStub extends rpc.RemoteObject { + constructor(des: any) { + if (typeof des === 'string') { + super(des); + } else { + console.log("Error, the input param is not string"); + return; + } + } - class FirstServiceAbilityStub extends rpc.RemoteObject { - constructor(des: any) { - if (typeof des === 'string') { - super(des) - } else { - return + onRemoteRequest(code: number, data: any, reply: any, option: any) { + console.log("onRemoteRequest called"); + // 可根据code执行不同的业务逻辑 + if (code === 1) { + // 将传入的字符串进行排序 + let string = data.readString(); + console.log(`Input string = ${string}`); + let result = Array.from(string).sort().join(''); + console.log(`Output result = ${result}`); + reply.writeString(result); + } else { + console.log(`Unknown request code`); + } + return true; } } - onRemoteRequest(code: number, data: any, reply: any, option: any) { - console.log(printLog + ` onRemoteRequest called`) - if (code === 1) { - let string = data.readString() - console.log(printLog + ` string=${string}`) - let result = Array.from(string).sort().join('') - console.log(printLog + ` result=${result}`) - reply.writeString(result) - } else { - console.log(printLog + ` unknown request code`) + export default { + onStart() { + console.log('ServiceAbility onStart'); + }, + onCommand(want, startId) { + console.log('ServiceAbility onCommand'); + }, + onConnect(want) { + console.log('ServiceAbility OnConnect'); + return new ServiceAbilityStub('ServiceAbilityRemoteObject'); + }, + onDisconnect(want) { + console.log('ServiceAbility OnDisConnect'); + }, + onStop() { + console.log('ServiceAbility onStop'); } - return true; } ``` ### 连接远程Service(当前仅对系统应用开放) ->说明:由于DeviceManager的getTrustedDeviceListSync接口仅对系统应用开放,当前连接远程Service仅支持系统应用。 - -如果Service需要与Page Ability或其他应用的Service Ability进行跨设备交互,则须创建用于连接的Connection。Service支持其他Ability通过connectAbility()方法与其进行跨设备连接。 - -在使用connectAbility()处理回调时,需要传入目标Service的Want与IAbilityConnection的实例。IAbilityConnection提供了以下方法供开发者实现:onConnect()是用来处理连接Service成功的回调,onDisconnect()是用来处理Service异常死亡的回调,onFailed()是用来处理连接Service失败的回调。 - -创建连接远程Service回调实例的代码示例如下: - -```ts -import prompt from '@system.prompt' - -var option = { - onConnect: function onConnectCallback(element, proxy) { - console.log(`onConnectRemoteService onConnectDone`) - if (proxy === null) { - prompt.showToast({ - message: "Connect service failed" - }) - return - } - let data = rpc.MessageParcel.create() - let reply = rpc.MessageParcel.create() - let option = new rpc.MessageOption() - data.writeInterfaceToken("connect.test.token") - proxy.sendRequest(0, data, reply, option) - prompt.showToast({ - message: "Connect service success" - }) - }, - onDisconnect: function onDisconnectCallback(element) { - console.log(`onConnectRemoteService onDisconnectDone element:${element}`) - prompt.showToast({ - message: "Disconnect service success" - }) - }, - onFailed: function onFailedCallback(code) { - console.log(`onConnectRemoteService onFailed errCode:${code}`) - prompt.showToast({ - message: "Connect local service onFailed" - }) - } +连接远程Service,构造ConnectOptions的方法与连接本地Serivce相同,区别在于: + - 应用需要向用户申请数据同步权限 + - 目标Service的Want需要包含对端设备的deviceId + +> 说明: +> (1) 由于DeviceManager的getTrustedDeviceList等接口仅对系统应用开放,当前仅系统应用支持连接远程Service。 +> (2) API定义可见:[deviceManager模块](..\reference\apis\js-apis-device-manager.md) +> (3) 参考Demo可见:[分布式Demo](https://gitee.com/openharmony/applications_app_samples/tree/master/ability/DMS) + +在跨设备场景下,需要向用户申请数据同步的权限,首先在config.json里配置权限: + +```json +{ + ... + "module": { + ... + "reqPermissions": [{ + "name": "ohos.permission.DISTRIBUTED_DATASYNC" + }] + } } ``` -目标Service的Want需要包含远程deviceId,该远程deviceId可通过deviceManager获取,具体示例代码如下: +DISTRIBUTED_DATASYNC权限需要用户授予,在应用启动时需要向用户弹框请求授予权限,示例代码如下: ```ts -import deviceManager from '@ohos.distributedHardware.deviceManager'; +import abilityAccessCtrl from "@ohos.abilityAccessCtrl" +import bundle from '@ohos.bundle' -//dmClass具体实现请参考:相关实例 分布式Demo 章节中的实现 -let dmClass; - -function getRemoteDeviceId() { - if (typeof dmClass === 'object' && dmClass != null) { - let list = dmClass.getTrustedDeviceListSync(); - if (typeof (list) == 'undefined' || typeof (list.length) == 'undefined') { - console.log("MainAbility onButtonClick getRemoteDeviceId err: list is null"); - return; +async function RequestPermission() { + console.info('RequestPermission begin'); + let array: Array = ["ohos.permission.DISTRIBUTED_DATASYNC"]; + let bundleFlag = 0; + let tokenID = undefined; + let userID = 100; + let appInfo = await bundle.getApplicationInfo('ohos.samples.etsDemo', bundleFlag, userID); + tokenID = appInfo.accessTokenId; + let atManager = abilityAccessCtrl.createAtManager(); + let requestPermissions: Array = []; + for (let i = 0;i < array.length; i++) { + let result = await atManager.verifyAccessToken(tokenID, array[i]); + console.info("verifyAccessToken result:" + JSON.stringify(result)); + if (result != abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) { + requestPermissions.push(array[i]); } - console.log("MainAbility onButtonClick getRemoteDeviceId success:" + list[0].deviceId); - return list[0].deviceId; - } else { - console.log("MainAbility onButtonClick getRemoteDeviceId err: dmClass is null"); } -} -``` - -连接远程Service的代码示例如下: - -```ts -import featureAbility from '@ohos.ability.featureAbility'; -let connectId = featureAbility.connectAbility( - { - deviceId: getRemoteDeviceId(), - bundleName: "ohos.samples.etsDemo", - abilityName: "ohos.samples.etsDemo.ServiceAbility", - }, - { - onConnect: onConnectCallback, - onDisconnect: onDisconnectCallback, - onFailed: onFailedCallback, - }, -); -``` -在跨设备场景下,需要向用户申请数据同步的权限。具体示例代码如下: - -```ts -import abilityAccessCtrl from "@ohos.abilityAccessCtrl"; -import bundle from '@ohos.bundle'; -async function RequestPermission() { - console.info('RequestPermission begin'); - let array: Array = ["ohos.permission.DISTRIBUTED_DATASYNC"]; - let bundleFlag = 0; - let tokenID = undefined; - let userID = 100; - let appInfo = await bundle.getApplicationInfo('ohos.samples.etsDemo', bundleFlag, userID); - tokenID = appInfo.accessTokenId; - let atManager = abilityAccessCtrl.createAtManager(); - let requestPermissions: Array = []; - for (let i = 0;i < array.length; i++) { - let result = await atManager.verifyAccessToken(tokenID, array[i]); - console.info("verifyAccessToken result:" + JSON.stringify(result)); - if (result == abilityAccessCtrl.GrantStatus.PERMISSION_GRANTED) { - } else { - requestPermissions.push(array[i]); + console.info("requestPermissions:" + JSON.stringify(requestPermissions)); + if (requestPermissions.length == 0 || requestPermissions == []) { + return; } - } - console.info("requestPermissions:" + JSON.stringify(requestPermissions)); - if (requestPermissions.length == 0 || requestPermissions == []) { - return; - } - let context = featureAbility.getContext(); - context.requestPermissionsFromUser(requestPermissions, 1, (data)=>{ - console.info("data:" + JSON.stringify(data)); - }); - console.info('RequestPermission end'); + let context = featureAbility.getContext(); + context.requestPermissionsFromUser(requestPermissions, 1, (data)=>{ + console.info("data:" + JSON.stringify(data)); + }); + console.info('RequestPermission end'); } ``` -同时,Service侧也需要在onConnect()时返回IRemoteObject,从而定义与Service进行通信的接口。onConnect()需要返回一个IRemoteObject对象。OpenHarmony提供了IRemoteObject的默认实现,开发者可以通过继承rpc.RemoteObject来创建自定义的实现类。 +获取deviceId需要导入`@ohos.distributedHardware.deviceManager`模块,其中提供了getTrustedDeviceList等接口用于获取远端设备的deviceId。 + - 接口使用可参考[deviceManager模块](..\reference\apis\js-apis-device-manager.md) + - 具体实现可参考[分布式Demo](https://gitee.com/openharmony/applications_app_samples/tree/master/ability/DMS) -Service侧把自身的实例返回给调用侧的代码示例如下: +连接远程Service,只需要在want内定义deviceId即可,示例代码如下: ```ts -import rpc from "@ohos.rpc"; - -class FirstServiceAbilityStub extends rpc.RemoteObject { - constructor(des: any) { - if (typeof des === 'string') { - super(des) - } else { - return - } - } - - onRemoteRequest(code: number, data: any, reply: any, option: any) { - console.log(printLog + ` onRemoteRequest called`) - if (code === 1) { - let string = data.readString() - console.log(printLog + ` string=${string}`) - let result = Array.from(string).sort().join('') - console.log(printLog + ` result=${result}`) - reply.writeString(result) - } else { - console.log(printLog + ` unknown request code`) - } - return true; - } -} +import featureAbility from '@ohos.ability.featureAbility' -export default { - onStart() { - console.info('ServiceAbility onStart'); - }, - onStop() { - console.info('ServiceAbility onStop'); - }, - onConnect(want) { - console.log("ServiceAbility onConnect"); - try { - let value = JSON.stringify(want); - console.log("ServiceAbility want:" + value); - } catch(error) { - console.log("ServiceAbility error:" + error); - } - return new FirstServiceAbilityStub("first ts service stub"); - }, - onDisconnect(want) { - console.log("ServiceAbility onDisconnect"); - let value = JSON.stringify(want); - console.log("ServiceAbility want:" + value); - }, - onCommand(want, startId) { - console.info('ServiceAbility onCommand'); - let value = JSON.stringify(want); - console.log("ServiceAbility want:" + value); - console.log("ServiceAbility startId:" + startId); - } +let want = { + deviceId: remoteDeviceId, + bundleName: "com.jstest.service", + abilityName: "com.jstest.service.ServiceAbility" }; +let connectId = featureAbility.connectAbility(want, option); ``` +其余实现均与本地连接Service相同,参考[连接本地Service](fa-serviceability.md#连接本地service)的示例代码即可。 + ## 相关实例 针对ServiceAbility开发,有以下相关实例可供参考: diff --git a/zh-cn/application-dev/database/database-relational-guidelines.md b/zh-cn/application-dev/database/database-relational-guidelines.md index 5414bdccc785edac63a96ae75a2b0b2676bdc0c3..46f40d627eb8894fc3ce46167965f2d446a018ee 100644 --- a/zh-cn/application-dev/database/database-relational-guidelines.md +++ b/zh-cn/application-dev/database/database-relational-guidelines.md @@ -17,8 +17,8 @@ | 接口名 | 描述 | | ------------------------------------------------------------ | ------------------------------------------------------------ | -| getRdbStore(context: Context, config: StoreConfig, version: number): Promise<RdbStore> | 获得一个相关的RdbStore,操作关系型数据库,用户可以根据自己的需求配置RdbStore的参数,然后通过RdbStore调用相关接口可以执行相关的数据操作,使用Promise异步回调。
-context:应用程序或功能的上下文。
-config:与此RDB存储相关的数据库配置。
-version:数据库版本。 | -| deleteRdbStore(context: Context, name: string): Promise<void> | 使用指定的数据库文件配置删除数据库,使用Promise异步回调。
-context:应用程序或功能的上下文。
-name:数据库名称。 | +| getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise<RdbStoreV9> | 获得一个相关的RdbStoreV9,操作关系型数据库,用户可以根据自己的需求配置RdbStoreV9的参数,然后通过RdbStoreV9调用相关接口可以执行相关的数据操作,使用Promise异步回调。
-context:应用程序或功能的上下文。
-config:与此RDB存储相关的数据库配置。
-version:数据库版本。目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。 | +| deleteRdbStoreV9(context: Context, name: string): Promise<void> | 使用指定的数据库文件配置删除数据库,使用Promise异步回调。
-context:应用程序或功能的上下文。
-name:数据库名称。 | ### 数据库的增删改查 @@ -31,31 +31,31 @@ **表2** 数据库插入API - | 类名 | 接口名 | 描述 | - | -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | - | RdbStore | insert(table: string, values: ValuesBucket): Promise<number> | 向目标表中插入一行数据,使用Promise异步回调。
如果操作成功,返回行ID;否则返回-1。
-table:指定的目标表名。
-values:表示要插入到表中的数据行。 | + | 类名 | 接口名 | 描述 | + | ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | + | RdbStoreV9 | insert(table: string, values: ValuesBucket): Promise<number> | 向目标表中插入一行数据,使用Promise异步回调。
如果操作成功,返回行ID;否则返回-1。
-table:指定的目标表名。
-values:表示要插入到表中的数据行。 | - **更新** - 调用更新接口,传入要更新的数据,并通过RdbPredicates指定更新条件。该接口的返回值表示更新操作影响的行数。如果更新失败,则返回0。 + 调用更新接口,传入要更新的数据,并通过RdbPredicatesV9指定更新条件。该接口的返回值表示更新操作影响的行数。如果更新失败,则返回0。 **表3** 数据库更新API - | 类名 | 接口名 | 描述 | - | -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | - | RdbStore | update(values: ValuesBucket, predicates: RdbPredicates): Promise<number> | 根据RdbPredicates的指定实例对象更新数据库中的数据,使用Promise异步回调。
返回受影响的行数。
-values:以ValuesBucket存储的要更新的数据。
-predicates:表示RdbPredicates的实例对象指定的更新条件。 | + | 类名 | 接口名 | 描述 | + | ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | + | RdbStoreV9 | update(values: ValuesBucket, predicates: RdbPredicatesV9): Promise<number> | 根据RdbPredicatesV9的指定实例对象更新数据库中的数据,使用Promise异步回调。
返回受影响的行数。
-values:以ValuesBucket存储的要更新的数据。
-predicates:表示RdbPredicatesV9的实例对象指定的更新条件。 | - **删除** - 调用删除接口,通过RdbPredicates指定删除条件。该接口的返回值表示删除的数据行数,可根据此值判断是否删除成功。如果删除失败,则返回0。 + 调用删除接口,通过RdbPredicatesV9指定删除条件。该接口的返回值表示删除的数据行数,可根据此值判断是否删除成功。如果删除失败,则返回0。 **表4** 数据库删除API - | 类名 | 接口名 | 描述 | - | -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | - | RdbStore | delete(predicates: RdbPredicates): Promise<number> | 根据RdbPredicates的指定实例对象从数据库中删除数据,使用Promise异步回调。
返回受影响的行数。
-predicates:RdbPredicates的实例对象指定的删除条件。 | + | 类名 | 接口名 | 描述 | + | ---------- | ---------------------------------------------------------- | ------------------------------------------------------------ | + | RdbStoreV9 | delete(predicates: RdbPredicatesV9): Promise<number> | 根据RdbPredicatesV9的指定实例对象从数据库中删除数据,使用Promise异步回调。
返回受影响的行数。
-predicates:RdbPredicatesV9的实例对象指定的删除条件。 | - **查询** @@ -67,32 +67,32 @@ **表5** 数据库查询API - | 类名 | 接口名 | 描述 | - | -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | - | RdbStore | query(predicates: RdbPredicates, columns?: Array<string>): Promise<ResultSet> | 根据指定条件查询数据库中的数据,使用Promise异步回调。
-predicates:表示RdbPredicates的实例对象指定的查询条件。
-columns:表示要查询的列。如果值为空,则查询应用于所有列。 | - | RdbStore | querySql(sql: string, bindArgs?: Array<ValueType>): Promise<ResultSet> | 根据指定SQL语句查询数据库中的数据,使用Promise异步回调。
-sql:指定要查询的SQL语句。
-bindArgs:SQL语句中参数的值。 | - | RdbStore | remoteQuery(device: string, table: string, predicates: RdbPredicates, columns: Array<string>): Promise<ResultSet> | 根据指定条件查询指定远程设备数据库中的数据。使用Promise异步回调。
-device:指定远程查询的设备networkId。
-table:指定远程查询的表名。
-predicates:表示RdbPredicates的实例对象,指定查询的条件。
-columns:表示要查询的列。如果值为空,则查询应用于所有列。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | query(predicates: RdbPredicatesV9, columns?: Array<string>): Promise<ResultSetV9> | 根据指定条件查询数据库中的数据,使用Promise异步回调。
-predicates:表示RdbPredicatesV9的实例对象指定的查询条件。
-columns:表示要查询的列。如果值为空,则查询应用于所有列。 | +| RdbStoreV9 | querySql(sql: string, bindArgs?: Array<ValueType>): Promise<ResultSetV9> | 根据指定SQL语句查询数据库中的数据,使用Promise异步回调。
-sql:指定要查询的SQL语句。
-bindArgs:SQL语句中参数的值。 | +| RdbStoreV9 | remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array<string>): Promise<ResultSetV9> | 根据指定条件查询指定远程设备数据库中的数据。使用Promise异步回调。
-device:指定远程查询的设备networkId。
-table:指定远程查询的表名。
-predicates:表示RdbPredicatesV9的实例对象,指定查询的条件。
-columns:表示要查询的列。如果值为空,则查询应用于所有列。 | ### 数据库谓词的使用 -关系型数据库提供了用于设置数据库操作条件的谓词RdbPredicates,该类确定RDB中条件表达式的值是true还是false。 +关系型数据库提供了用于设置数据库操作条件的谓词RdbPredicatesV9,该类确定RDB中条件表达式的值是true还是false。 以下列举几个常用谓词,更多谓词的使用请见[关系型数据库谓词](../reference/apis/js-apis-data-rdb.md#rdbpredicates)。 **表6** 数据库谓词API -| 类名 | 接口名 | 描述 | -| ------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbPredicates | equalTo(field: string, value: ValueType): RdbPredicates | 配置谓词以匹配数据字段为ValueType且值等于指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicates:返回与指定字段匹配的谓词。 | -| RdbPredicates | notEqualTo(field: string, value: ValueType): RdbPredicates | 配置谓词以匹配数据字段为ValueType且值不等于指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicates:返回与指定字段匹配的谓词。 | -| RdbPredicates | or(): RdbPredicates | 将或条件添加到谓词中。
-RdbPredicates:返回带有或条件的谓词。 | -| RdbPredicates | and(): RdbPredicates | 向谓词添加和条件。
-RdbPredicates:返回带有和条件的谓词。 | -| RdbPredicates | contains(field: string, value: string): RdbPredicates | 配置谓词以匹配数据字段为String且value包含指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicates:返回带有包含条件的谓词。 | +| 类名 | 接口名 | 描述 | +| --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbPredicatesV9 | equalTo(field: string, value: ValueType): RdbPredicatesV9 | 配置谓词以匹配数据字段为ValueType且值等于指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicatesV9:返回与指定字段匹配的谓词。 | +| RdbPredicatesV9 | notEqualTo(field: string, value: ValueType): RdbPredicatesV9 | 配置谓词以匹配数据字段为ValueType且值不等于指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicatesV9:返回与指定字段匹配的谓词。 | +| RdbPredicatesV9 | or(): RdbPredicatesV9 | 将或条件添加到谓词中。
-RdbPredicatesV9:返回带有或条件的谓词。 | +| RdbPredicatesV9 | and(): RdbPredicatesV9 | 向谓词添加和条件。
-RdbPredicatesV9:返回带有和条件的谓词。 | +| RdbPredicatesV9 | contains(field: string, value: string): RdbPredicatesV9 | 配置谓词以匹配数据字段为String且value包含指定值的字段。
-field:数据库表中的列名。
-value:指示要与谓词匹配的值。
-RdbPredicatesV9:返回带有包含条件的谓词。 | ### 查询结果集的使用 -关系型数据库提供了查询返回的结果集ResultSet,其指向查询结果中的一行数据,供用户对查询结果进行遍历和访问。 +关系型数据库提供了查询返回的结果集ResultSetV9,其指向查询结果中的一行数据,供用户对查询结果进行遍历和访问。 更多结果集的接口使用,请见[结果集](../reference/apis/js-apis-data-resultset.md)。 @@ -101,14 +101,14 @@ **表7** 结果集API -| 类名 | 接口名 | 描述 | -| --------- | ---------------------------------------------------- | ------------------------------------------ | -| ResultSet | goToFirstRow(): boolean | 将结果集移动到第一行。 | -| ResultSet | getString(columnIndex: number): string | 获取当前行指定列的值,以String类型返回。 | -| ResultSet | getBlob(columnIndex: number): Uint8Array | 获取当前行指定列的值,以字节数组形式返回。 | -| ResultSet | getDouble(columnIndex: number): number | 获取当前行指定列的值,以double型返回。 | -| ResultSet | getLong(columnIndex: number): number | 获取当前行指定列的值,以Long形式返回。 | -| ResultSet | close(): void | 关闭结果集。 | +| 类名 | 接口名 | 描述 | +| ----------- | ---------------------------------------- | ------------------------------------------ | +| ResultSetV9 | goToFirstRow(): boolean | 将结果集移动到第一行。 | +| ResultSetV9 | getString(columnIndex: number): string | 获取当前行指定列的值,以String类型返回。 | +| ResultSetV9 | getBlob(columnIndex: number): Uint8Array | 获取当前行指定列的值,以字节数组形式返回。 | +| ResultSetV9 | getDouble(columnIndex: number): number | 获取当前行指定列的值,以double型返回。 | +| ResultSetV9 | getLong(columnIndex: number): number | 获取当前行指定列的值,以Long形式返回。 | +| ResultSetV9 | close(): void | 关闭结果集。 | @@ -116,16 +116,16 @@ > **说明:** > -> - 在使用RdbStore的setDistributedTables、obtainDistributedTableName、sync、on、off接口时,需要请求相应的权限:ohos.permission.DISTRIBUTED_DATASYNC。 +> - 在使用RdbStoreV9的setDistributedTables、obtainDistributedTableName、sync、on、off接口时,需要请求相应的权限:ohos.permission.DISTRIBUTED_DATASYNC。 > - 使用分布式列表前,需要先建立设备间组网,具体接口及使用可见[设备管理](../reference/apis/js-apis-device-manager.md)。 **设置分布式列表** **表8** 设置分布式列表 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | setDistributedTables(tables: Array\): Promise\ | 设置分布式列表,使用Promise异步回调。
-tables:要设置的分布式列表表名。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | setDistributedTables(tables: Array\): Promise\ | 设置分布式列表,使用Promise异步回调。
-tables:要设置的分布式列表表名。 | **根据本地表名获取指定远程设备的分布式表名** @@ -133,33 +133,33 @@ **表9** 根据本地表名获取指定远程设备的分布式表名 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | obtainDistributedTableName(device: string, table: string): Promise\ | 根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名,使用Promise异步回调。
-device:远程设备。
-table:本地表名。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | obtainDistributedTableName(device: string, table: string): Promise\ | 根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名,使用Promise异步回调。
-device:远程设备。
-table:本地表名。 | **在设备之间同步数据** **表10** 在设备之间同步数据 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | sync(mode: SyncMode, predicates: RdbPredicates): Promise\> | 在设备之间同步数据,使用Promise异步回调。
-mode:指同步模式。SYNC_MODE_PUSH 表示数据从本地设备推送到远程设备;SYNC_MODE_PULL 表示数据从远程设备拉至本地设备。
-predicates:约束同步数据和设备。
-string:设备ID;number:每个设备同步状态,0表示成功,其他值表示失败。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | sync(mode: SyncMode, predicates: RdbPredicatesV9): Promise\> | 在设备之间同步数据,使用Promise异步回调。
-mode:指同步模式。SYNC_MODE_PUSH 表示数据从本地设备推送到远程设备;SYNC_MODE_PULL 表示数据从远程设备拉至本地设备。
-predicates:约束同步数据和设备。
-string:设备ID;number:每个设备同步状态,0表示成功,其他值表示失败。 | **注册数据库的观察者** **表11** 注册数据库的观察者 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void | 注册数据库的观察者。当分布式数据库中的数据发生更改时,将调用回调。
-type:指在{@code SubscribeType}中定义的订阅类型;SUBSCRIBE_TYPE_REMOTE 订阅远程数据更改。
-observer:指分布式数据库中数据更改事件的观察者。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | on(event: 'dataChange', type: SubscribeType, observer: Callback\>): void | 注册数据库的观察者。当分布式数据库中的数据发生更改时,将调用回调。
-type:订阅类型;SUBSCRIBE_TYPE_REMOTE 订阅远程数据更改。
-observer:指分布式数据库中数据更改事件的观察者。 | **从数据库中删除指定类型的指定观察者** **表12** 从数据库中删除指定类型的指定观察者 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | off(event:'dataChange', type: SubscribeType, observer: Callback\>): void; | 从数据库中删除指定类型的指定观察者,使用callback异步回调。
-type:指在{@code SubscribeType}中定义的订阅类型;SUBSCRIBE_TYPE_REMOTE 订阅远程数据更改。
-observer:指已注册的数据更改观察者。 | +| 类名 | 接口名 | 描述 | +| ---------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| RdbStoreV9 | off(event:'dataChange', type: SubscribeType, observer: Callback\>): void; | 从数据库中删除指定类型的指定观察者,使用callback异步回调。
-type:订阅类型;SUBSCRIBE_TYPE_REMOTE 订阅远程数据更改。
-observer:指已注册的数据更改观察者。 | ### 数据库的备份和恢复 @@ -167,17 +167,17 @@ **表13** 备份数据库 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | backup(destName: string): Promise<void> | 以指定名称备份数据库,使用Promise异步回调。
-destName:指定数据库的备份文件名。 | +| 类名 | 接口名 | 描述 | +| ---------- | --------------------------------------------- | ------------------------------------------------------------ | +| RdbStoreV9 | backup(destName: string): Promise<void> | 以指定名称备份数据库,使用Promise异步回调。
-destName:指定数据库的备份文件名。 | **恢复** **表14** 恢复数据库 -| 类名 | 接口名 | 描述 | -| -------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -| RdbStore | restore(srcName: string): Promise<void> | 从指定的数据库备份文件恢复数据库,使用Promise异步回调。
-srcName:指定数据库的备份文件名。 | +| 类名 | 接口名 | 描述 | +| ---------- | --------------------------------------------- | ------------------------------------------------------------ | +| RdbStoreV9 | restore(srcName: string): Promise<void> | 从指定的数据库备份文件恢复数据库,使用Promise异步回调。
-srcName:指定数据库的备份文件名。 | **事务** @@ -185,9 +185,9 @@ | 类名 | 接口名 | 描述 | | -------- | ----------------------- | --------------------------------- | -| RdbStore | beginTransaction(): void | 在开始执行SQL语句之前,开始事务。 | -| RdbStore | commit(): void | 提交已执行的SQL语句。 | -| RdbStore | rollBack(): void | 回滚已经执行的SQL语句。 | +| RdbStoreV9 | beginTransaction(): void | 在开始执行SQL语句之前,开始事务。 | +| RdbStoreV9 | commit(): void | 提交已执行的SQL语句。 | +| RdbStoreV9 | rollBack(): void | 回滚已经执行的SQL语句。 | ## 开发步骤 @@ -206,12 +206,13 @@ // 获取context import featureAbility from '@ohos.ability.featureAbility' let context = featureAbility.getContext() - + const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)"; - - const STORE_CONFIG = { name: "RdbTest.db" } - data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) { - rdbStore.executeSql(CREATE_TABLE_TEST) + + const STORE_CONFIGV9 = { name: "RdbTest.db", + securityLevel: data_rdb.SecurityLevel.S1} + data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1, function (err, rdbStoreV9) { + rdbStoreV9.executeSql(CREATE_TABLE_TEST) console.info('create table done.') }) ``` @@ -226,15 +227,16 @@ context = this.context } } - + const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)"; - - const STORE_CONFIG = { name: "rdbstore.db" } - data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) { - rdbStore.executeSql(CREATE_TABLE_TEST) + + const STORE_CONFIGV9 = { name: "rdbstore.db", + securityLevel: data_rdb.SecurityLevel.S1} + data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1, function (err, rdbStoreV9) { + rdbStoreV9.executeSql(CREATE_TABLE_TEST) console.info('create table done.') }) - ``` + ``` 2. 插入数据。 @@ -247,7 +249,7 @@ ```js var u8 = new Uint8Array([1, 2, 3]) const valueBucket = { "name": "Tom", "age": 18, "salary": 100.5, "blobType": u8 } - let insertPromise = rdbStore.insert("test", valueBucket) + let insertPromise = rdbStoreV9.insert("test", valueBucket) ``` 3. 查询数据。 @@ -261,17 +263,17 @@ 示例代码如下: ```js - let predicates = new data_rdb.RdbPredicates("test"); - predicates.equalTo("name", "Tom") - let promisequery = rdbStore.query(predicates) - promisequery.then((resultSet) => { - resultSet.goToFirstRow() - const id = resultSet.getLong(resultSet.getColumnIndex("id")) - const name = resultSet.getString(resultSet.getColumnIndex("name")) - const age = resultSet.getLong(resultSet.getColumnIndex("age")) - const salary = resultSet.getDouble(resultSet.getColumnIndex("salary")) - const blobType = resultSet.getBlob(resultSet.getColumnIndex("blobType")) - resultSet.close() + let predicatesV9 = new data_rdb.RdbPredicatesV9("test"); + predicatesV9.equalTo("name", "Tom") + let promisequery = rdbStoreV9.query(predicatesV9) + promisequery.then((resultSetV9) => { + resultSetV9.goToFirstRow() + const id = resultSetV9.getLong(resultSetV9.getColumnIndex("id")) + const name = resultSetV9.getString(resultSetV9.getColumnIndex("name")) + const age = resultSetV9.getLong(resultSetV9.getColumnIndex("age")) + const salary = resultSetV9.getDouble(resultSetV9.getColumnIndex("salary")) + const blobType = resultSetV9.getBlob(resultSetV9.getColumnIndex("blobType")) + resultSetV9.close() }) ``` @@ -299,7 +301,7 @@ context.requestPermissionsFromUser(['ohos.permission.DISTRIBUTED_DATASYNC'], 666, function (result) { console.info(`result.requestCode=${result.requestCode}`) }) - let promise = rdbStore.setDistributedTables(["test"]) + let promise = rdbStoreV9.setDistributedTables(["test"]) promise.then(() => { console.info("setDistributedTables success.") }).catch((err) => { @@ -318,9 +320,9 @@ 示例代码如下: ```js - let predicate = new data_rdb.RdbPredicates('test') - predicate.inDevices(['12345678abcde']) - let promise = rdbStore.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicate) + let predicateV9 = new data_rdb.RdbPredicatesV9('test') + predicateV9.inDevices(['12345678abcde']) + let promise = rdbStoreV9.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicateV9) promise.then((result) => { console.log('sync done.') for (let i = 0; i < result.length; i++) { @@ -345,9 +347,9 @@ console.log('device=' + device[i] + 'data changed') } } - + try { - rdbStore.on('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver) + rdbStoreV9.on('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver) } catch (err) { console.log('register observer failed') } @@ -362,8 +364,8 @@ 示例代码如下: ```js - let tableName = rdbStore.obtainDistributedTableName(deviceId, "test"); - let resultSet = rdbStore.querySql("SELECT * FROM " + tableName) + let tableName = rdbStoreV9.obtainDistributedTableName(deviceId, "test"); + let resultSetV9 = rdbStoreV9.querySql("SELECT * FROM " + tableName) ``` 8. 远程查询。 @@ -376,17 +378,17 @@ 示例代码如下: ```js - let rdbPredicate = new data_rdb.RdbPredicates('employee') - predicates.greaterThan("id", 0) - let promiseQuery = rdbStore.remoteQuery('12345678abcde', 'employee', rdbPredicate) - promiseQuery.then((resultSet) => { - while (resultSet.goToNextRow()) { - let idx = resultSet.getLong(0); - let name = resultSet.getString(1); - let age = resultSet.getLong(2); + let rdbPredicateV9 = new data_rdb.RdbPredicatesV9('employee') + predicatesV9.greaterThan("id", 0) + let promiseQuery = rdbStoreV9.remoteQuery('12345678abcde', 'employee', rdbPredicateV9) + promiseQuery.then((resultSetV9) => { + while (resultSetV9.goToNextRow()) { + let idx = resultSetV9.getLong(0); + let name = resultSetV9.getString(1); + let age = resultSetV9.getLong(2); console.info(idx + " " + name + " " + age); } - resultSet.close(); + resultSetV9.close(); }).catch((err) => { console.info("failed to remoteQuery, err: " + err) }) @@ -399,7 +401,7 @@ 示例代码如下: ```js - let promiseBackup = rdbStore.backup("dbBackup.db") + let promiseBackup = rdbStoreV9.backup("dbBackup.db") promiseBackup.then(() => { console.info('Backup success.') }).catch((err) => { @@ -411,7 +413,7 @@ 示例代码如下: ```js - let promiseRestore = rdbStore.restore("dbBackup.db") + let promiseRestore = rdbStoreV9.restore("dbBackup.db") promiseRestore.then(() => { console.info('Restore success.') }).catch((err) => { diff --git a/zh-cn/application-dev/device/figures/171e6f30-a8d9-414c-bafa-b430340305fb.png b/zh-cn/application-dev/device/figures/171e6f30-a8d9-414c-bafa-b430340305fb.png new file mode 100644 index 0000000000000000000000000000000000000000..de9838e8b289e2dfa346ebdd57ffb241fe5a6c75 Binary files /dev/null and b/zh-cn/application-dev/device/figures/171e6f30-a8d9-414c-bafa-b430340305fb.png differ diff --git a/zh-cn/application-dev/device/figures/65d69983-29f6-4381-80a3-f9ef2ec19e53.png b/zh-cn/application-dev/device/figures/65d69983-29f6-4381-80a3-f9ef2ec19e53.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f58ad052905da2c8b01ffd200d4f643fed3ade Binary files /dev/null and b/zh-cn/application-dev/device/figures/65d69983-29f6-4381-80a3-f9ef2ec19e53.png differ diff --git a/zh-cn/application-dev/device/figures/db5d017d-6c1c-4a71-a2dd-f74b7f23239e.png b/zh-cn/application-dev/device/figures/db5d017d-6c1c-4a71-a2dd-f74b7f23239e.png new file mode 100644 index 0000000000000000000000000000000000000000..33c61f049a7bb78e0a22848ae445608bbda1fd0e Binary files /dev/null and b/zh-cn/application-dev/device/figures/db5d017d-6c1c-4a71-a2dd-f74b7f23239e.png differ diff --git a/zh-cn/application-dev/device/sensor-guidelines.md b/zh-cn/application-dev/device/sensor-guidelines.md index 9c225832d3a0abb6f8afe034baa90f4239dc2ca3..bdf1901ad3ad6a04422395f83bd4f4106a6be9ce 100644 --- a/zh-cn/application-dev/device/sensor-guidelines.md +++ b/zh-cn/application-dev/device/sensor-guidelines.md @@ -3,30 +3,18 @@ ## 场景介绍 -- 通过指南针传感器数据,感知用户设备当前的朝向,从而达到为用户指明方向的目的。 +当设备需要获取传感器数据时,可以使用sensor模块,例如:通过订阅方向传感器数据感知用户设备当前的朝向,通过订阅计步传感器数据统计用户的步数等。 -- 通过接近光传感器数据,感知距离遮挡物的距离,使设备能够自动亮灭屏,达到防误触目的。 - -- 通过气压计传感器数据,准确的判断设备当前所处的海拔。 - -- 通过环境光传感器数据,设备能够实现背光自动调节。 - -- 通过霍尔传感器数据,设备实现皮套功能等。 - -- 通过心率传感器数据,感知用户当前的心率。 - -- 通过计步传感器数据,可以统计用户的步数。 - -- 通过佩戴检测传感器,可以检测用户是否佩戴。 +详细的接口介绍请参考[Sensor接口](../reference/apis/js-apis-sensor.md)。 ## 接口说明 | 模块 | 接口名 | 描述 | | -------- | -------- | -------- | -| ohos.sensor | sensor.on(sensorType, callback:AsyncCallback<Response>): void | 持续监听传感器数据变化 | -| ohos.sensor | sensor.once(sensorType, callback:AsyncCallback<Response>): void | 获取一次传感器数据变化 | -| ohos.sensor | sensor.off(sensorType, callback?:AsyncCallback<void>): void | 注销传感器数据的监听 | +| ohos.sensor | sensor.on(sensorId, callback:AsyncCallback<Response>): void | 持续监听传感器数据变化 | +| ohos.sensor | sensor.once(sensorId, callback:AsyncCallback<Response>): void | 获取一次传感器数据变化 | +| ohos.sensor | sensor.off(sensorId, callback?:AsyncCallback<void>): void | 注销传感器数据的监听 | ## 开发步骤 @@ -45,47 +33,47 @@ 2. 持续监听传感器数据变化。 - ``` + ```js import sensor from "@ohos.sensor"; - sensor.on(sensor.SensorType.SENSOR_TYPE_ID_ACCELEROMETER, function(data){ + sensor.on(sensor.SensorId.ACCELEROMETER, function(data){ console.info("Data obtained successfully. x: " + data.x + "y: " + data.y + "z: " + data.z);// 获取数据成功 }); ``` - 以SensorType为SENSOR_TYPE_ID_ACCELEROMETER为例展示运行结果,持续监听传感器接口的结果如下图所示: + 以SensorId为ACCELEROMETER为例展示运行结果,持续监听传感器接口的结果如下图所示: - ![zh-cn_image_0000001241693881](figures/zh-cn_image_0000001241693881.png) + ![171e6f30-a8d9-414c-bafa-b430340305fb](figures/171e6f30-a8d9-414c-bafa-b430340305fb.png) 3. 注销传感器数据监听。 - ``` + ```js import sensor from "@ohos.sensor"; - sensor.off(sensor.SensorType.SENSOR_TYPE_ID_ACCELEROMETER); + sensor.off(sensor.SensorId.ACCELEROMETER); ``` - 以SensorType为SENSOR_TYPE_ID_ACCELEROMETER为例展示运行结果,注销传感器成功结果如下图所示: + 以SensorId为ACCELEROMETER为例展示运行结果,注销传感器成功结果如下图所示: - ![zh-cn_image_0000001196654004](figures/zh-cn_image_0000001196654004.png) + ![65d69983-29f6-4381-80a3-f9ef2ec19e53](figures/65d69983-29f6-4381-80a3-f9ef2ec19e53.png) 4. 获取一次传感器数据变化。 - ``` + ```js import sensor from "@ohos.sensor"; - sensor.once(sensor.SensorType.SENSOR_TYPE_ID_ACCELEROMETER, function(data) { + sensor.once(sensor.SensorId.ACCELEROMETER, function(data) { console.info("Data obtained successfully. x: " + data.x + "y: " + data.y + "z: " + data.z);// 获取数据成功 }); ``` - 以SensorType为SENSOR_TYPE_ID_ACCELEROMETER为例展示运行结果,获取数据成功日志如下图所示: + 以SensorId为ACCELEROMETER为例展示运行结果,获取数据成功日志如下图所示: - ![zh-cn_image_0000001241733907](figures/zh-cn_image_0000001241733907.png) + ![db5d017d-6c1c-4a71-a2dd-f74b7f23239e](figures/db5d017d-6c1c-4a71-a2dd-f74b7f23239e.png) 若接口调用不成功,建议使用try/catch语句捕获代码中可能出现的错误信息。例如: - ``` + ```js import sensor from "@ohos.sensor"; try { - sensor.once(sensor.SensorType.SENSOR_TYPE_ID_ACCELEROMETER, function(data) { + sensor.once(sensor.SensorId.ACCELEROMETER, function(data) { console.info("Data obtained successfully. x: " + data.x + "y: " + data.y + "z: " + data.z);// 获取数据成功 }); } catch (error) { diff --git a/zh-cn/application-dev/device/sensor-overview.md b/zh-cn/application-dev/device/sensor-overview.md index 46f984cea2171e02645c728e2052d0ced307a9e5..6247d9b85739ee2f73785d35865e7ccb7247adbf 100644 --- a/zh-cn/application-dev/device/sensor-overview.md +++ b/zh-cn/application-dev/device/sensor-overview.md @@ -3,32 +3,29 @@ OpenHarmony系统传感器是应用访问底层硬件传感器的一种设备抽象概念。开发者根据传感器提供的[Sensor接口](../reference/apis/js-apis-sensor.md),可以查询设备上的传感器,订阅传感器数据,并根据传感器数据定制相应的算法开发各类应用,比如指南针、运动健康、游戏等。 - -传感器是指用于侦测环境中所发生事件或变化,并将此消息发送至其他电子设备(如中央处理器)的设备,通常由敏感组件和转换组件组成。传感器是实现物联网智能化的重要基石,为实现全场景智慧化战略,支撑“1+8+N”产品需求,需要构筑统一的传感器管理框架,达到为各产品/业务提供低时延、低功耗的感知数据的目的。下面为传感器列表: - -| 传感器类型 | 描述 | 说明 | 主要用途 | -| --------------------------------------- | --------- | ---------------------------------------- | -------------------- | -| SENSOR_TYPE_ACCELEROMETER | 加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的加速度(包括重力加速度),单位 : m/s² | 检测运动状态 | -| SENSOR_TYPE_ACCELEROMETER_UNCALIBRATED | 未校准加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的未校准的加速度(包括重力加速度),单位 : m/s² | 检测加速度偏差估值 | -| SENSOR_TYPE_LINEAR_ACCELERATION | 线性加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的线性加速度(不包括重力加速度),单位 : m/s² | 检测每个单轴方向上的线性加速度 | -| SENSOR_TYPE_GRAVITY | 重力传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的重力加速度,单位 : m/s² | 测量重力大小 | -| SENSOR_TYPE_GYROSCOPE | 陀螺仪传感器 | 测量三个物理轴(x、y 和 z)上,设备的旋转角速度,单位 : rad/s | 测量旋转的角速度 | -| SENSOR_TYPE_GYROSCOPE_UNCALIBRATED | 未校准陀螺仪传感器 | 测量三个物理轴(x、y 和 z)上,设备的未校准旋转角速度,单位 : rad/s | 测量旋转的角速度及偏差估值 | -| SENSOR_TYPE_SIGNIFICANT_MOTION | 大幅度动作传感器 | 测量三个物理轴(x、y 和 z)上,设备是否存在大幅度运动;如果取值为1则代表存在大幅度运动,取值为0则代表没有大幅度运动 | 用于检测设备是否存在大幅度运动 | -| SENSOR_TYPE_PEDOMETER_DETECTION | 计步器检测传感器 | 检测用户的计步动作;如果取值为1则代表用户产生了计步行走的动作;取值为0则代表用户没有发生运动 | 用于检测用户是否有计步的动作 | -| SENSOR_TYPE_PEDOMETER | 计步器传感器 | 统计用户的行走步数 | 用于提供用户行走的步数数据 | -| SENSOR_TYPE_AMBIENT_TEMPERATURE | 环境温度传感器 | 测量环境温度,单位 : 摄氏度 (°C) | 测量环境温度 | -| SENSOR_TYPE_MAGNETIC_FIELD | 磁场传感器 | 测量三个物理轴向(x、y、z)上,环境地磁场,单位 : μT | 创建指南针 | -| SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED | 未校准磁场传感器 | 测量三个物理轴向(x、y、z)上,未校准环境地磁场,单位 : μT | 测量地磁偏差估值 | -| SENSOR_TYPE_HUMIDITY | 湿度传感器 | 测量环境的相对湿度,以百分比 (%) 表示 | 监测露点、绝对湿度和相对湿度 | -| SENSOR_TYPE_BAROMETER | 气压计传感器 | 测量环境气压,单位 : hPa 或 mbar | 测量环境气压 | -| SENSOR_TYPE_ORIENTATION | 方向传感器 | 测量设备围绕所有三个物理轴(x、y、z)旋转的角度值,单位:rad | 用于提供屏幕旋转的3个角度值 | -| SENSOR_TYPE_ROTATION_VECTOR | 旋转矢量传感器 | 测量设备旋转矢量,复合传感器:由加速度传感器、磁场传感器、陀螺仪传感器合成 | 检测设备相对于东北天坐标系的方向 | -| SENSOR_TYPE_PROXIMITY | 接近光传感器 | 测量可见物体相对于设备显示屏的接近或远离状态 | 通话中设备相对人的位置 | -| SENSOR_TYPE_AMBIENT_LIGHT | 环境光传感器 | 测量设备周围光线强度,单位:lux | 自动调节屏幕亮度,检测屏幕上方是否有遮挡 | -| SENSOR_TYPE_HEART_RATE | 心率传感器 | 测量用户的心率数值 | 用于提供用户的心率健康数据 | -| SENSOR_TYPE_WEAR_DETECTION | 佩戴检测传感器 | 检测用户是否佩戴 | 用于检测用户是否佩戴智能穿戴 | -| SENSOR_TYPE_HALL | 霍尔传感器 | 测量设备周围是否存在磁力吸引 | 设备的皮套模式 | +| 传感器类型 | 描述 | 说明 | 主要用途 | +| --------------------------- | ------------------ | ------------------------------------------------------------ | ---------------------------------------- | +| ACCELEROMETER | 加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的加速度(包括重力加速度),单位 : m/s² | 检测运动状态 | +| ACCELEROMETER_UNCALIBRATED | 未校准加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的未校准的加速度(包括重力加速度),单位 : m/s² | 检测加速度偏差估值 | +| LINEAR_ACCELERATION | 线性加速度传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的线性加速度(不包括重力加速度),单位 : m/s² | 检测每个单轴方向上的线性加速度 | +| GRAVITY | 重力传感器 | 测量三个物理轴(x、y 和 z)上,施加在设备上的重力加速度,单位 : m/s² | 测量重力大小 | +| GYROSCOPE | 陀螺仪传感器 | 测量三个物理轴(x、y 和 z)上,设备的旋转角速度,单位 : rad/s | 测量旋转的角速度 | +| GYROSCOPE_UNCALIBRATED | 未校准陀螺仪传感器 | 测量三个物理轴(x、y 和 z)上,设备的未校准旋转角速度,单位 : rad/s | 测量旋转的角速度及偏差估值 | +| SIGNIFICANT_MOTION | 大幅度动作传感器 | 测量三个物理轴(x、y 和 z)上,设备是否存在大幅度运动;如果取值为1则代表存在大幅度运动,取值为0则代表没有大幅度运动 | 用于检测设备是否存在大幅度运动 | +| PEDOMETER_DETECTION | 计步器检测传感器 | 检测用户的计步动作;如果取值为1则代表用户产生了计步行走的动作;取值为0则代表用户没有发生运动 | 用于检测用户是否有计步的动作 | +| PEDOMETER | 计步器传感器 | 统计用户的行走步数 | 用于提供用户行走的步数数据 | +| AMBIENT_TEMPERATURE | 环境温度传感器 | 测量环境温度,单位 : 摄氏度 (°C) | 测量环境温度 | +| MAGNETIC_FIELD | 磁场传感器 | 测量三个物理轴向(x、y、z)上,环境地磁场,单位 : μT | 创建指南针 | +| MAGNETIC_FIELD_UNCALIBRATED | 未校准磁场传感器 | 测量三个物理轴向(x、y、z)上,未校准环境地磁场,单位 : μT | 测量地磁偏差估值 | +| HUMIDITY | 湿度传感器 | 测量环境的相对湿度,以百分比 (%) 表示 | 监测露点、绝对湿度和相对湿度 | +| BAROMETER | 气压计传感器 | 测量环境气压,单位 : hPa 或 mbar | 测量环境气压 | +| ORIENTATION | 方向传感器 | 测量设备围绕所有三个物理轴(x、y、z)旋转的角度值,单位:rad | 用于提供屏幕旋转的3个角度值 | +| ROTATION_VECTOR | 旋转矢量传感器 | 测量设备旋转矢量,复合传感器:由加速度传感器、磁场传感器、陀螺仪传感器合成 | 检测设备相对于东北天坐标系的方向 | +| PROXIMITY | 接近光传感器 | 测量可见物体相对于设备显示屏的接近或远离状态 | 通话中设备相对人的位置 | +| AMBIENT_LIGHT | 环境光传感器 | 测量设备周围光线强度,单位:lux | 自动调节屏幕亮度,检测屏幕上方是否有遮挡 | +| HEART_RATE | 心率传感器 | 测量用户的心率数值 | 用于提供用户的心率健康数据 | +| WEAR_DETECTION | 佩戴检测传感器 | 检测用户是否佩戴 | 用于检测用户是否佩戴智能穿戴 | +| HALL | 霍尔传感器 | 测量设备周围是否存在磁力吸引 | 设备的皮套模式 | ## 运作机制 @@ -60,4 +57,4 @@ OpenHarmony传感器包含如下四个模块:Sensor API、Sensor Framework、S | 心率计 | ohos.permission.READ_HEALTH_DATA | user_grant | 允许读取健康数据 | 2. 传感器数据订阅和取消订阅接口成对调用,当不再需要订阅传感器数据时,开发者需要调用取消订阅接口停止数据上报。 - \ No newline at end of file + \ No newline at end of file diff --git a/zh-cn/application-dev/device/vibrator-guidelines.md b/zh-cn/application-dev/device/vibrator-guidelines.md index 21853379693b3499c68320db080072573802be59..24a6a66d7f1ca89fb184909fff3602253e361e8d 100644 --- a/zh-cn/application-dev/device/vibrator-guidelines.md +++ b/zh-cn/application-dev/device/vibrator-guidelines.md @@ -10,45 +10,60 @@ ## 接口说明 -| 模块 | 接口名 | 描述 | -| ------------- | ---------------------------------------- | ------------------------------- | -| ohos.vibrator | vibrate(duration: number): Promise<void> | 触发马达按照时长振动,使用Promise异步回调。 | -| ohos.vibrator | vibrate(duration: number, callback?: AsyncCallback<void>): void | 触发马达按照时长振动,使用Callback异步回调。 | -| ohos.vibrator | vibrate(effectId: EffectId): Promise<void> | 触发马达按照开发者传递效果振动,使用Promise异步回调。 | -| ohos.vibrator | vibrate(effectId: EffectId, callback?: AsyncCallback<void>): void | 触发马达按照开发者传递效果振动,使用Callback异步回调。 | -| ohos.vibrator | stop(stopMode: VibratorStopMode): Promise<void> | 停止振动。 | -| ohos.vibrator | stop(stopMode: VibratorStopMode, callback?: AsyncCallback<void>): void | 停止振动。 | +| 模块 | 接口名 | 描述 | +| ------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| ohos.vibrator | startVibration(effect: VibrateEffect, attribute: VibrateAttribute): Promise<void> | 根据指定振动效果和振动属性触发马达振动,使用Promise异步回调。 | +| ohos.vibrator | startVibration(effect: VibrateEffect, attribute: VibrateAttribute, callback: AsyncCallback<void>): void | 根据指定振动效果和振动属性触发马达振动,使用Callback异步回调。 | +| ohos.vibrator | stopVibration(stopMode: VibratorStopMode): Promise<void> | 按照指定模式停止马达的振动。 | +| ohos.vibrator | stopVibration(stopMode: VibratorStopMode, callback: AsyncCallback<void>): void | 按照指定模式停止马达的振动。 | ## 开发步骤 1. 控制设备上的振动器,需要申请权限ohos.permission.VIBRATE。具体配置方式请参考[权限申请声明](../security/accesstoken-guidelines.md)。 -2. 触发设备振动。 - - ``` - import vibrator from "@ohos.vibrator" - vibrator.vibrate(1000).then((error) => { - if (error) { //调用失败,打印error.code和error.message - console.log("Promise return failed.error.code " + error.code + "error.message " + error.message); - } else { //调用成功,设备开始振动 - console.log("Promise returned to indicate a successful vibration.") - } - }) +2. 根据指定振动效果和振动属性触发马达振动 。 + + ```js + import vibrator from '@ohos.vibrator'; + try { + vibrator.startVibration({ + type: 'time', + duration: 1000, + }, { + id: 0, + usage: 'alarm' + }, (error) => { + if (error) { + console.error('vibrate fail, error.code: ' + error.code + 'error.message: ', + error.message); + return; + } + console.log('Callback returned to indicate a successful vibration.'); + }); + } catch (err) { + console.error('errCode: ' + err.code + ' ,msg: ' + err.message); + } ``` -3. 停止设备振动。 - - ``` - import vibrator from "@ohos.vibrator" - vibrator.stop(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_PRESET).then((error) => { - if (error) { //调用失败,打印error.code和error.message - console.log("Promise return failed.error.code " + error.code + "error.message " + error.message); - } else { //调用成功,设备停止振动 - console.log("Promise returned to indicate successful."); - } - }) - ``` +5. 按照指定模式停止马达的振动。 + + ```js + import vibrator from '@ohos.vibrator'; + try { + // 按照VIBRATOR_STOP_MODE_TIME模式停止振动 + vibrator.stopVibration(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_TIME, function (error) { + if (error) { + console.log('error.code' + error.code + 'error.message' + error.message); + return; + } + console.log('Callback returned to indicate successful.'); + }) + } catch (err) { + console.info('errCode: ' + err.code + ' ,msg: ' + err.message); + } +``` + + ## 相关实例 diff --git a/zh-cn/application-dev/media/avsession-guidelines.md b/zh-cn/application-dev/media/avsession-guidelines.md index d721d5b8e474a40ac4963e9914333f00feed3b85..267802f1a4b43042857bdc292a6c36f75a6b159d 100644 --- a/zh-cn/application-dev/media/avsession-guidelines.md +++ b/zh-cn/application-dev/media/avsession-guidelines.md @@ -361,7 +361,7 @@ currentSession.deactivate().then(() => { | sendControlCommand(command: AVControlCommand, callback: AsyncCallback\): void | 发送控制命令 | | sendSystemAVKeyEvent(event: KeyEvent, callback: AsyncCallback\): void | 发送系统按键命令 | | sendSystemControlCommand(command: AVControlCommand, callback: AsyncCallback\): void | 发送系统控制命令 | -| castAudio(session: SessionToken | 'all', audioDevices: Array\, callback: AsyncCallback\): void | 远端投播 | +| castAudio(session: SessionToken \| 'all', audioDevices: Array\, callback: AsyncCallback\): void | 远端投播 | ### 开发步骤 1.导入模块接口 diff --git a/zh-cn/application-dev/napi/mindspore-lite-guidelines.md b/zh-cn/application-dev/napi/mindspore-lite-guidelines.md index 057948c52a68b8525b0f7c815039139f31ddcb54..378b05c81142774ca93645b4b547c38696a00838 100644 --- a/zh-cn/application-dev/napi/mindspore-lite-guidelines.md +++ b/zh-cn/application-dev/napi/mindspore-lite-guidelines.md @@ -54,8 +54,32 @@ MindSpore Lite是一款AI引擎,它提供了面向不同硬件设备AI模型 **图 1** 使用MindSpore Lite进行模型推理的开发流程 ![how-to-use-mindspore-lite](figures/01.png) -主要开发步骤包括模型的准备、读取、编译、推理和释放,具体开发过程及细节请见下文的开发步骤及示例。 +进入主要流程之前需要先引用相关的头文件,并编写函数生成随机的输入,具体如下: + +```c +#include +#include +#include "mindspore/model.h" + +//生成随机的输入 +int GenerateInputDataWithRandom(OH_AI_TensorHandleArray inputs) { + for (size_t i = 0; i < inputs.handle_num; ++i) { + float *input_data = (float *)OH_AI_TensorGetMutableData(inputs.handle_list[i]); + if (input_data == NULL) { + printf("MSTensorGetMutableData failed.\n"); + return OH_AI_STATUS_LITE_ERROR; + } + int64_t num = OH_AI_TensorGetElementNum(inputs.handle_list[i]); + const int divisor = 10; + for (size_t j = 0; j < num; j++) { + input_data[j] = (float)(rand() % divisor) / divisor; // 0--0.9f + } + } + return OH_AI_STATUS_SUCCESS; +} +``` +然后进入主要的开发步骤,具括包括模型的准备、读取、编译、推理和释放,具体开发过程及细节请见下文的开发步骤及示例。 1. 模型准备。 需要的模型可以直接下载,也可以通过模型转换工具获得。 @@ -101,8 +125,8 @@ MindSpore Lite是一款AI引擎,它提供了面向不同硬件设备AI模型 return OH_AI_STATUS_LITE_ERROR; } - // 加载与编译模型,模型的类型为OH_AI_ModelTypeMindIR - int ret = OH_AI_ModelBuildFromFile(model, argv[1], OH_AI_ModelTypeMindIR, context); + // 加载与编译模型,模型的类型为OH_AI_MODELTYPE_MINDIR + int ret = OH_AI_ModelBuildFromFile(model, argv[1], OH_AI_MODELTYPE_MINDIR, context); if (ret != OH_AI_STATUS_SUCCESS) { printf("OH_AI_ModelBuildFromFile failed, ret: %d.\n", ret); OH_AI_ModelDestroy(&model); @@ -193,7 +217,7 @@ MindSpore Lite是一款AI引擎,它提供了面向不同硬件设备AI模型 dl ) ``` - - 使用ohos-sdk交叉编译,需要对CMake设置native工具链路径,即:`-DCMAKE_TOOLCHAIN_FILE="/xxx/ohos-sdk/linux/native/build/cmake/ohos.toolchain.camke"`。 + - 使用ohos-sdk交叉编译,需要对CMake设置native工具链路径,即:`-DCMAKE_TOOLCHAIN_FILE="/xxx/native/build/cmake/ohos.toolchain.camke"`。 - 工具链默认编译64位的程序,如果要编译32位,需要添加:`-DOHOS_ARCH="armeabi-v7a"`。 @@ -214,3 +238,7 @@ MindSpore Lite是一款AI引擎,它提供了面向不同硬件设备AI模型 output data is: 0.000018 0.000012 0.000026 0.000194 0.000156 0.001501 0.000240 0.000825 0.000016 0.000006 0.000007 0.000004 0.000004 0.000004 0.000015 0.000099 0.000011 0.000013 0.000005 0.000023 0.000004 0.000008 0.000003 0.000003 0.000008 0.000014 0.000012 0.000006 0.000019 0.000006 0.000018 0.000024 0.000010 0.000002 0.000028 0.000372 0.000010 0.000017 0.000008 0.000004 0.000007 0.000010 0.000007 0.000012 0.000005 0.000015 0.000007 0.000040 0.000004 0.000085 0.000023 ``` + +## 相关实例 +针对MindSpore Lite 的使用,有以下相关实例可供参考: +- [简易MSLite教程](https://gitee.com/openharmony/third_party_mindspore/tree/master/mindspore/lite/examples/quick_start_c) diff --git a/zh-cn/application-dev/reference/apis/js-apis-Bundle-distributedBundle.md b/zh-cn/application-dev/reference/apis/js-apis-Bundle-distributedBundle.md index e08618dde0caf9ec0becd00a9379a7ef6475591e..a88493b208a23f9c1e7afefb9d6ad6334c408937 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-Bundle-distributedBundle.md +++ b/zh-cn/application-dev/reference/apis/js-apis-Bundle-distributedBundle.md @@ -26,7 +26,7 @@ SystemCapability.BundleManager.DistributedBundleFramework ## distributedBundle.getRemoteAbilityInfodeprecated -> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo](js-apis-distributedBundle.md)替代。 +> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo(@ohos.bundle.distributedBundle)](js-apis-distributedBundle.md)替代。 getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback<RemoteAbilityInfo>): void; @@ -55,7 +55,7 @@ SystemCapability.BundleManager.DistributedBundleFramework ## distributedBundle.getRemoteAbilityInfodeprecated -> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo](js-apis-distributedBundle.md)替代。 +> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo(@ohos.bundle.distributedBundle)](js-apis-distributedBundle.md)替代。 getRemoteAbilityInfo(elementName: ElementName): Promise<RemoteAbilityInfo> @@ -87,7 +87,7 @@ SystemCapability.BundleManager.DistributedBundleFramework ## distributedBundle.getRemoteAbilityInfosdeprecated -> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo](js-apis-distributedBundle.md)替代。 +> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo(@ohos.bundle.distributedBundle)](js-apis-distributedBundle.md)替代。 getRemoteAbilityInfos(elementNames: Array<ElementName>, callback: AsyncCallback<Array<RemoteAbilityInfo>>): void; @@ -116,7 +116,7 @@ SystemCapability.BundleManager.DistributedBundleFramework ## distributedBundle.getRemoteAbilityInfosdeprecated -> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo](js-apis-distributedBundle.md)替代。 +> 从API version 9开始不再维护,建议使用[getRemoteAbilityInfo(@ohos.bundle.distributedBundle)](js-apis-distributedBundle.md)替代。 getRemoteAbilityInfos(elementNames: Array<ElementName>): Promise<Array<RemoteAbilityInfo>> diff --git a/zh-cn/application-dev/reference/apis/js-apis-Bundle.md b/zh-cn/application-dev/reference/apis/js-apis-Bundle.md index 769df099505b4675b0eddbc8c7a108bde8bdd125..24438992b2bf03b9deb672c4c9828b6d050d9004 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-Bundle.md +++ b/zh-cn/application-dev/reference/apis/js-apis-Bundle.md @@ -30,10 +30,11 @@ getApplicationInfo(bundleName: string, bundleFlags: number, userId?: number): Pr 以异步方法根据给定的包名获取ApplicationInfo。使用Promise异步回调。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -75,10 +76,11 @@ getApplicationInfo(bundleName: string, bundleFlags: number, userId: number, call 以异步方法根据给定的包名获取指定用户下的ApplicationInfo,使用callback形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -116,10 +118,12 @@ bundle.getApplicationInfo(bundleName, bundleFlags, userId, (err, data) => { getApplicationInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\): void 以异步方法根据给定的包名获取ApplicationInfo,使用callback形式返回结果。 + +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -获取调用方自己的信息时不需要权限。 **系统能力:** @@ -276,10 +280,11 @@ getBundleInfo(bundleName: string, bundleFlags: number, options?: BundleOptions): 以异步方法根据给定的包名获取BundleInfo,使用Promise异步回调。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -获取调用方自己的信息时不需要权限。 **系统能力:** @@ -323,10 +328,11 @@ getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback\< 以异步方法根据给定的包名获取BundleInfo,使用callback异步回调。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -获取调用方自己的信息时不需要权限。 **系统能力:** @@ -363,10 +369,11 @@ getBundleInfo(bundleName: string, bundleFlags: number, options: BundleOptions, c 以异步方法根据给定的包名获取BundleInfo,使用callback异步回调。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -获取调用方自己的信息时不需要权限。 **系统能力:** @@ -874,7 +881,7 @@ SystemCapability.BundleManager.BundleFramework | 参数名 | 类型 | 必填 | 说明 | | ----------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | bundleFlags | number | 是 | 用于指定返回的应用信息对象中包含信息的标记。取值范围:参考[BundleFlag说明](#bundleflag)中应用信息相关flag。 | -| userId | number | 否 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | +| userId | number | 是 | 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 | | callback | AsyncCallback> | 是 | 程序启动作为入参的回调函数,返回应用信息列表。 | **示例:** @@ -1008,10 +1015,11 @@ getAbilityInfo(bundleName: string, abilityName: string): Promise\ 通过包名称和组件名获取Ability组件信息,使用Promise形式异步回调。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1051,10 +1059,11 @@ getAbilityInfo(bundleName: string, abilityName: string, callback: AsyncCallback\ 通过包名称和组件名获取Ability组件信息,使用callback形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1090,10 +1099,11 @@ getAbilityLabel(bundleName: string, abilityName: string): Promise\ 通过包名称和ability名称获取应用名称,使用Promise形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1133,10 +1143,11 @@ getAbilityLabel(bundleName: string, abilityName: string, callback : AsyncCallbac 通过包名称和Ability组件名获取应用名称,使用callback形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1313,10 +1324,11 @@ queryAbilityByWant(want: Want, bundleFlags: number, userId?: number): Promise获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1363,10 +1375,11 @@ queryAbilityByWant(want: Want, bundleFlags: number, userId: number, callback: As 以异步方法根据给定的意图获取指定用户下Ability信息,使用callback形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1407,10 +1420,11 @@ queryAbilityByWant(want: Want, bundleFlags: number, callback: AsyncCallback获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1595,10 +1609,11 @@ getAbilityIcon(bundleName: string, abilityName: string): Promise\获取调用方自己的信息时不需要权限。 **系统能力:** @@ -1637,10 +1652,11 @@ getAbilityIcon(bundleName: string, abilityName: string, callback: AsyncCallback\ 以异步方法通过bundleName和abilityName获取对应Icon的[PixelMap](js-apis-image.md),使用callback形式返回结果。 +获取调用方自己的信息时不需要权限。 + **需要权限:** ohos.permission.GET_BUNDLE_INFO_PRIVILEGED 或 ohos.permission.GET_BUNDLE_INFO -
获取调用方自己的信息时不需要权限。 **系统能力:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-backgroundTaskManager.md b/zh-cn/application-dev/reference/apis/js-apis-backgroundTaskManager.md index 36c67f2fcc03d8c0f59b0462ac09054eae21d960..660637ed720f0ec1eb1a052573e13eb0fb8389c8 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-backgroundTaskManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-backgroundTaskManager.md @@ -34,7 +34,7 @@ requestSuspendDelay(reason: string, callback: Callback<void>): DelaySuspen **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------------------ | | reason | string | 是 | 延迟挂起申请的原因。 | | callback | Callback<void> | 是 | 延迟即将超时的回调函数,一般在超时前6秒通过此回调通知应用。 | @@ -72,7 +72,7 @@ getRemainingDelayTime(requestId: number, callback: AsyncCallback<number>): **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | --------------------------- | ---- | ---------------------------------------- | | requestId | number | 是 | 延迟挂起的请求ID。这个值通过调用[requestSuspendDelay](#backgroundtaskmanagerrequestsuspenddelay)方法获取。 | | callback | AsyncCallback<number> | 是 | 指定的callback回调方法。用于返回应用程序进入挂起状态之前的剩余时间,以毫秒为单位。 | @@ -103,7 +103,7 @@ getRemainingDelayTime(requestId: number): Promise<number> **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ------ | ---- | ---------- | | requestId | number | 是 | 延迟挂起的请求ID。这个值通过调用[requestSuspendDelay](#backgroundtaskmanagerrequestsuspenddelay)方法获取。 | @@ -135,7 +135,7 @@ cancelSuspendDelay(requestId: number): void **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ------ | ---- | ---------- | | requestId | number | 是 | 延迟挂起的请求ID。这个值通过调用[requestSuspendDelay](#backgroundtaskmanagerrequestsuspenddelay)方法获取。 | @@ -159,7 +159,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ---------------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | bgMode | [BackgroundMode](#backgroundmode8) | 是 | 向系统申请的后台模式。 | @@ -251,7 +251,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ---------------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | bgMode | [BackgroundMode](#backgroundmode8) | 是 | 向系统申请的后台模式。 | @@ -337,7 +337,7 @@ stopBackgroundRunning(context: Context, callback: AsyncCallback<void>): vo **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | callback | AsyncCallback<void> | 是 | callback形式返回启动长时任务的结果。 | @@ -393,7 +393,7 @@ stopBackgroundRunning(context: Context): Promise<void> **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------- | ------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | @@ -451,7 +451,7 @@ applyEfficiencyResources(request: [EfficiencyResourcesRequest](#efficiencyresour **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------- | ------- | ---- | ---------------------------------------- | | request | [EfficiencyResourcesRequest](#efficiencyresourcesrequest9) | 是 | 请求的必要信息。包括资源类型,超时时间等信息。详见[EfficiencyResourcesRequest](#efficiencyresourcesrequest9)。 | @@ -515,7 +515,7 @@ backgroundTaskManager.resetAllEfficiencyResources(); **系统能力:** SystemCapability.ResourceSchedule.BackgroundTaskManager.ContinuousTask -| 名称 | 值 | 描述 | +| 名称 | 值 | 说明 | | ----------------------- | ---- | --------------------- | | DATA_TRANSFER | 1 | 数据传输。 | | AUDIO_PLAYBACK | 2 | 音频播放。 | @@ -552,7 +552,7 @@ backgroundTaskManager.resetAllEfficiencyResources(); **系统API**: 此接口为系统接口。 -| 名称 | 值 | 描述 | +| 名称 | 值 | 说明 | | ----------------------- | ---- | --------------------- | | CPU | 1 | CPU资源,申请后不被挂起。 | | COMMON_EVENT | 2 | 公共事件,申请后挂起状态下不被代理掉。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-bundle-ElementName.md b/zh-cn/application-dev/reference/apis/js-apis-bundle-ElementName.md index eac7abae48b4500c25ef53b2778e046754fcbb33..016ad991d2b1b05c88bd3131804583889d5efc04 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-bundle-ElementName.md +++ b/zh-cn/application-dev/reference/apis/js-apis-bundle-ElementName.md @@ -9,7 +9,7 @@ ElementName信息,通过接口[Context.getElementName](js-apis-Context.md)获 ## ElementName(deprecated) -> 从API version 9开始不再维护,建议使用[ElementName](js-apis-bundleManager-elementName.md)替代。 +> 从API version 9开始不再维护,建议使用[bundleManager-ElementName](js-apis-bundleManager-elementName.md)替代。 ElementName信息,标识Ability的基本信息,通过接口[Context.getElementName](js-apis-Context.md)获取。 diff --git a/zh-cn/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md b/zh-cn/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md index e203780edb76cc2cdd6667ec1249ab24d3635fbc..289ed35a4c0b6624c89294eabefb02c48318952d 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md +++ b/zh-cn/application-dev/reference/apis/js-apis-bundle-ShortcutInfo.md @@ -13,7 +13,7 @@ ## ShortcutWant(deprecated) -> 从API version 9开始不再维护,建议使用[ShortcutWant](js-apis-bundleManager-shortcutInfo.md)替代 +> 从API version 9开始不再维护,建议使用[bundleManager-ShortcutWant](js-apis-bundleManager-shortcutInfo.md)替代 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework @@ -26,7 +26,7 @@ ## ShortcutInfo(deprecated) -> 从API version 9开始不再维护,建议使用[ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)替代。 +> 从API version 9开始不再维护,建议使用[bundleManager-ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)替代。 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-rdb.md b/zh-cn/application-dev/reference/apis/js-apis-data-rdb.md index 8793efbbe27896b0893ee6617a76ea341f3c829b..81831eb92548175865c51f8daf9b1a0a1c8aeb23 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-rdb.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-rdb.md @@ -31,7 +31,7 @@ getRdbStoreV9(context: Context, config: StoreConfigV9, version: number, callback | -------- | ---------------------------------------------- | ---- | ------------------------------------------------------------ | | context | Context | 是 | 应用的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | config | [StoreConfigV9](#storeconfigv99) | 是 | 与此RDB存储相关的数据库配置。 | -| version | number | 是 | 数据库版本。 | +| version | number | 是 | 数据库版本。
目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。 | | callback | AsyncCallback<[RdbStoreV9](#rdbstorev9)> | 是 | 指定callback回调函数,返回RdbStoreV9对象。 | **错误码:** @@ -102,7 +102,7 @@ getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise | ------- | -------------------------------- | ---- | ------------------------------------------------------------ | | context | Context | 是 | 应用的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | config | [StoreConfigV9](#storeconfigv99) | 是 | 与此RDB存储相关的数据库配置。 | -| version | number | 是 | 数据库版本。 | +| version | number | 是 | 数据库版本。
目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。 | **返回值**: @@ -313,7 +313,7 @@ getRdbStore(context: Context, config: StoreConfig, version: number, callback: As | -------- | ------------------------------------------ | ---- | ------------------------------------------------------------ | | context | Context | 是 | 应用的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | config | [StoreConfig](#storeconfig) | 是 | 与此RDB存储相关的数据库配置。 | -| version | number | 是 | 数据库版本。 | +| version | number | 是 | 数据库版本。
目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。 | | callback | AsyncCallback<[RdbStore](#rdbstore)> | 是 | 指定callback回调函数,返回RdbStore对象。 | **示例:** @@ -377,7 +377,7 @@ getRdbStore(context: Context, config: StoreConfig, version: number): Promise< | ------- | --------------------------- | ---- | ------------------------------------------------------------ | | context | Context | 是 | 应用的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | config | [StoreConfig](#storeconfig) | 是 | 与此RDB存储相关的数据库配置。 | -| version | number | 是 | 数据库版本。 | +| version | number | 是 | 数据库版本。
目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。 | **返回值**: @@ -1652,6 +1652,8 @@ update(table: string, values: ValuesBucket, predicates: dataSharePredicates.Data **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -1690,6 +1692,8 @@ update(table: string, values: ValuesBucket, predicates: dataSharePredicates.Data **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -1794,6 +1798,8 @@ delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callb **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -1825,6 +1831,8 @@ delete(table: string, predicates: dataSharePredicates.DataSharePredicates):Promi **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -1926,6 +1934,8 @@ query(table: string, predicates: dataSharePredicates.DataSharePredicates, column **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -1959,6 +1969,8 @@ query(table: string, predicates: dataSharePredicates.DataSharePredicates, column **系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core +**系统接口:** 此接口为系统接口。 + **参数:** | 参数名 | 类型 | 必填 | 说明 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md b/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md index 33438f5bec8daf8bdb3225cc1f5c736bc97ffea6..fac9ba63f76d0d44c442904fba116eb3570aef9e 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md @@ -27,9 +27,9 @@ promise.then((resultSetV9) => { ### 属性9+ -**系统能力:** 以下各项对应的系统能力均为SystemCapability.DistributedDataManager.RelationalStore.Core +**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------ | ------------------- | ---- | -------------------------------- | | columnNames | Array<string> | 是 | 获取结果集中所有列的名称。 | | columnCount | number | 是 | 获取结果集中的列数。 | @@ -565,9 +565,9 @@ promise.then((resultSet) => { > > 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[属性](#属性9)替代。 -**系统能力:** 以下各项对应的系统能力均为SystemCapability.DistributedDataManager.RelationalStore.Core +**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | | columnNames | Array<string> | 是 | 获取结果集中所有列的名称。 | | columnCount | number | 是 | 获取结果集中的列数。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-document.md b/zh-cn/application-dev/reference/apis/js-apis-document.md index 474b9fca2ef40748fb36c776f7368527442d647d..98bc76bc1933689c00f5b725a3e61fdd4c04cc63 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-document.md +++ b/zh-cn/application-dev/reference/apis/js-apis-document.md @@ -46,7 +46,7 @@ choose(callback:AsyncCallback<string>): void **参数:** - | 参数名 | 类型 | 必填 | 说明 | + | 参数 | 类型 | 必填 | 说明 | | -------- | --------------------------- | ---- | ---------------------------- | | callback | AsyncCallback<string> | 是 | 异步获取对应文件URI(注:当前返回错误码) | diff --git a/zh-cn/application-dev/reference/apis/js-apis-enterprise-adminManager.md b/zh-cn/application-dev/reference/apis/js-apis-enterprise-adminManager.md index c407b96fff6a51ea71e86911de4dfc46b7e427db..681b3c000ba40140b3cec3345ee3f42f47e17ae0 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-enterprise-adminManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-enterprise-adminManager.md @@ -37,7 +37,7 @@ enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, callba 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | --------------------------------------------------------------- | | 9200003 | The administrator ability component is invalid. | | 9200004 | Failed to activate the administrator application of the device. | @@ -89,7 +89,7 @@ enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, userId 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | --------------------------------------------------------------- | | 9200003 | The administrator ability component is invalid. | | 9200004 | Failed to activate the administrator application of the device. | @@ -146,7 +146,7 @@ enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, userId 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | --------------------------------------------------------------- | | 9200003 | The administrator ability component is invalid. | | 9200004 | Failed to activate the administrator application of the device. | @@ -192,7 +192,7 @@ disableAdmin(admin: Want, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -236,7 +236,7 @@ disableAdmin(admin: Want, userId: number, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -285,7 +285,7 @@ disableAdmin(admin: Want, userId?: number): Promise\ 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -324,7 +324,7 @@ disableSuperAdmin(bundleName: String, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -369,7 +369,7 @@ disableSuperAdmin(bundleName: String): Promise\ 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -403,7 +403,7 @@ isAdminEnabled(admin: Want, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------------------- | | 9200005 | Failed to deactivate the administrator application of the device. | @@ -476,7 +476,7 @@ isAdminEnabled(admin: Want, userId?: number): Promise\ **返回值:** -| 类型 | 说明 | +| 类型 | 说明 | | ----------------- | ------------------- | | Promise\ | Promise形式返回是否处于激活状态 | @@ -542,7 +542,7 @@ isSuperAdmin(bundleName: String): Promise\ **返回值:** -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ----------------- | ------------------- | | Promise\ | Promise形式返回是否处于激活状态 | @@ -581,7 +581,7 @@ setEnterpriseInfo(admin: Want, enterpriseInfo: EnterpriseInfo, callback: AsyncCa 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | @@ -634,7 +634,7 @@ setEnterpriseInfo(admin: Want, enterpriseInfo: EnterpriseInfo): Promise\; 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | @@ -675,7 +675,7 @@ getEnterpriseInfo(admin: Want, callback: AsyncCallback<EnterpriseInfo>): v 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | @@ -722,7 +722,7 @@ getEnterpriseInfo(admin: Want): Promise<EnterpriseInfo> 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ----------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | @@ -761,6 +761,14 @@ subscribeManagedEvent(admin: Want, managedEvents: Array\, callback | managedEvents | Array\<[ManagedEvent](#managedevent)> | 是 | 订阅事件数组。 | | callback | AsyncCallback\ | 是 | 回调函数。当系统管理事件订阅成功err为null,否则为错误对象。 | +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) +|错误码ID | 错误信息 | +| ------- | ----------------------------------------------------- | +| 9200001 | The application is not a administrator of the device. | +| 9200008 | the specified system events enum is invalid. | + **示例:** ```js @@ -801,6 +809,14 @@ subscribeManagedEvent(admin: Want, managedEvents: Array\): Promise | ----- | ----------------------------------- | | Promise\ | Promise对象。无返回结果的Promise对象。 | +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) +| 错误码ID | 错误信息 | +| ------- | ----------------------------------------------------- | +| 9200001 | The application is not a administrator of the device. | +| 9200008 | the specified system events enum is invalid. | + **示例:** ```js @@ -835,6 +851,14 @@ unsubscribeManagedEvent(admin: Want, managedEvents: Array\, callba | managedEvents | Array\<[ManagedEvent](#managedevent)> | 是 | 取消订阅事件数组。 | | callback | AsyncCallback\ | 是 | 回调函数。当系统管理事件取消订阅成功err为null,否则为错误对象。 | +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) +| 错误码ID | 错误信息 | +| ------- | ----------------------------------------------------- | +| 9200001 | The application is not a administrator of the device. | +| 9200008 | the specified system events enum is invalid. | + **示例:** ```js @@ -875,6 +899,14 @@ unsubscribeManagedEvent(admin: Want, managedEvents: Array\): Promi | ----- | ----------------------------------- | | Promise\ | Promise对象。无返回结果的Promise对象。 | +**错误码**: + +以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) +| 错误码ID | 错误信息 | +| ------- | ----------------------------------------------------- | +| 9200001 | The application is not a administrator of the device. | +| 9200008 | the specified system events enum is invalid. | + **示例:** ```js @@ -895,18 +927,22 @@ adminManager.unsubscribeManagedEvent(wantTemp, events).then(() => { **系统能力:** SystemCapability.Customization.EnterpriseDeviceManager -| 名称 | 读写属性 | 类型 | 必填 | 描述 | -| ----------- | ---- | ------ | ---- | ----------------- | -| name | 只读 | string | 是 | 表示设备管理员应用所属企业的名称。 | -| description | 只读 | string | 是 | 表示设备管理员应用所属企业的描述。 | +**系统API**: 此接口为系统接口。 + +| 名称 | 类型 | 可读 | 可写 | 说明 | +| ----------- | ---- ----| ---- | ----- | ------------------------------- | +| name | string | 是 | 否 | 表示设备管理员应用所属企业的名称。 | +| description | string | 是 | 否 | 表示设备管理员应用所属企业的描述。 | ## AdminType 设备管理员应用的管理员类型。 -**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager + +**系统API**: 此接口为系统接口。 -| 名称 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ----------------- | ---- | ----- | | ADMIN_TYPE_NORMAL | 0x00 | 普通管理员 | | ADMIN_TYPE_SUPER | 0x01 | 超级管理员 | @@ -915,10 +951,12 @@ adminManager.unsubscribeManagedEvent(wantTemp, events).then(() => { 可订阅系统管理事件。 -**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager +**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager -| 名称 | 默认值 | 说明 | -| ----------------- | ---- | ----- | -| MANAGED_EVENT_BUNDLE_ADDED | 0 | 应用安装事件。 | -| MANAGED_EVENT_BUNDLE_REMOVED | 1 | 应用卸载事件。 | +**系统API**: 此接口为系统接口。 + +| 名称 | 值 | 说明 | +| -------------------------- | ---- | ------------- | +| MANAGED_EVENT_BUNDLE_ADDED | 0 | 应用安装事件。 | +| MANAGED_EVENT_BUNDLE_REMOVED | 1 | 应用卸载事件。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-enterprise-dateTimeManager.md b/zh-cn/application-dev/reference/apis/js-apis-enterprise-dateTimeManager.md index 5ff7cf2654a3659f053088a32e3aec5d507936aa..d15fc90d56ab9cc65a6a1b18bb5f3f385a7e7b5d 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-enterprise-dateTimeManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-enterprise-dateTimeManager.md @@ -36,7 +36,7 @@ setDateTime(admin: Want, time: number, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | | 9200002 | The administrator application does not have permission to manage the device. | @@ -84,7 +84,7 @@ setDateTime(admin: Want, time: number): Promise\ 以下的错误码的详细介绍请参见[企业设备管理错误码](../errorcodes/errorcode-enterpriseDeviceManager.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------------------------------- | | 9200001 | The application is not a administrator of the device. | | 9200002 | The administrator application does not have permission to manage the device. | diff --git a/zh-cn/application-dev/reference/apis/js-apis-extension-context.md b/zh-cn/application-dev/reference/apis/js-apis-extension-context.md index aab5d3f7ffefbbb3a778e2150d92cbd2c069c525..d9f13dc31caf15b1c9232cdaad177a7265a46986 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-extension-context.md +++ b/zh-cn/application-dev/reference/apis/js-apis-extension-context.md @@ -17,7 +17,7 @@ ExtensionContext模块提供访问特定Extension的资源的能力,对于拓 | -------- | -------- | -------- | -------- | -------- | | currentHapModuleInfo | HapModuleInfo | 是 | 否 | 所属Hap包的信息。
(详见SDK目录下的 `api\bundle\hapModuleInfo.d.ts`) | | config | Configuration | 是 | 否 | 所属Module的配置信息。
(详见SDK目录下的 `api\@ohos.application.Configuration.d.ts`) | -| extensionAbilityInfo | [ExtensionAbilityInfo](js-apis-bundle-ExtensionAbilityInfo.md) | 是 | 否 | 所属Extension的信息。
(详见SDK目录下的 `api\bundle\extensionAbilityInfo.d.ts`) | +| extensionAbilityInfo | [ExtensionAbilityInfo](js-apis-bundleManager-extensionAbilityInfo.md) | 是 | 否 | 所属Extension的信息。
(详见SDK目录下的 `api\bundle\extensionAbilityInfo.d.ts`) | ## 使用场景 ExtensionContext主要用于查询所属Extension的信息、Module的配置信息以及Hap包的信息,开发者可根据自身业务需求使用对应的信息。此处以ServiceExtension为例,展示ExtensionContext的一种使用场景。 diff --git a/zh-cn/application-dev/reference/apis/js-apis-huks.md b/zh-cn/application-dev/reference/apis/js-apis-huks.md index e7b81126ddc8c60f7f59bbc5785be2dcf106d4e8..7bba1c1447aaef52b7358c6fc0dae53585834071 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-huks.md +++ b/zh-cn/application-dev/reference/apis/js-apis-huks.md @@ -74,7 +74,7 @@ generateKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\ | 参数名 | 类型 | 必填 | 说明 | | -------- | --------------------------- | ---- | --------------------------------------------- | | keyAlias | string | 是 | 别名。 | -| options | [HuksOptions](#huksoptions) | 是 | 用于存放生成key所需TAG。 | +| options | [HuksOptions](#huksoptions) | 是 | 用于存放生成key所需TAG。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | | callback | AsyncCallback\ | 是 | 回调函数。不返回err值时表示接口使用成功,其他时为错误。 | **示例:** @@ -130,7 +130,7 @@ generateKeyItem(keyAlias: string, options: HuksOptions) : Promise\ | 参数名 | 类型 | 必填 | 说明 | | -------- | --------------------------- | ---- | ------------------------ | | keyAlias | string | 是 | 密钥别名。 | -| options | [HuksOptions](#huksoptions) | 是 | 用于存放生成key所需TAG。 | +| options | [HuksOptions](#huksoptions) | 是 | 用于存放生成key所需TAG。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | **示例:** @@ -288,7 +288,7 @@ importKeyItem(keyAlias: string, options: HuksOptions, callback: AsyncCallback\ | 是 | 回调函数。不返回err值时表示接口使用成功,其他时为错误。 | **示例:** @@ -356,7 +356,7 @@ importKeyItem(keyAlias: string, options: HuksOptions) : Promise\ | 参数名 | 类型 | 必填 | 说明 | | -------- | --------------------------- | ---- | ----------------------------------- | | keyAlias | string | 是 | 密钥别名。 | -| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的密钥。 | +| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的密钥。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | **示例:** @@ -675,7 +675,7 @@ importWrappedKeyItem(keyAlias: string, wrappingKeyAlias: string, options: HuksOp | ---------------- | --------------------------- | ---- | --------------------------------------------- | | keyAlias | string | 是 | 密钥别名,存放待导入密钥的别名。 | | wrappingKeyAlias | string | 是 | 密钥别名,对应密钥用于解密加密的密钥数据。 | -| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的加密的密钥数据。 | +| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的加密的密钥数据。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | | callback | AsyncCallback\ | 是 | 回调函数。不返回err值时表示接口使用成功,其他时为错误。 | **示例:** @@ -891,7 +891,7 @@ importWrappedKeyItem(keyAlias: string, wrappingKeyAlias: string, options: HuksOp | ---------------- | --------------------------- | ---- | --------------------------------------------- | | keyAlias | string | 是 | 密钥别名,存放待导入密钥的别名。 | | wrappingKeyAlias | string | 是 | 密钥别名,对应密钥用于解密加密的密钥数据。 | -| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的加密的密钥数据。 | +| options | [HuksOptions](#huksoptions) | 是 | 用于导入时所需TAG和需要导入的加密的密钥数据。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-image.md b/zh-cn/application-dev/reference/apis/js-apis-image.md index 9d044e3774c679633b4fb43939de3edc68d74914..bf434feb4a1cc46bc8dc17f7b29eda5e64a8005b 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -21,7 +21,7 @@ createPixelMap(colors: ArrayBuffer, options: InitializationOptions): Promise\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------ | | callback | AsyncCallback\ | 是 | 异步返回释放结果。 | @@ -1180,7 +1180,7 @@ getImageInfo(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------------------------- | ---- | ---------------------------------------- | | callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是 | 获取图片信息回调,异步返回图片信息对象。 | @@ -1202,7 +1202,7 @@ getImageInfo(index?: number): Promise\ **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名| 类型 | 必填 | 说明 | | ----- | ------ | ---- | ------------------------------------- | | index | number | 否 | 创建图片源时的序号,不选择时默认为0。 | @@ -1233,7 +1233,7 @@ getImageProperty(key:string, options?: GetImagePropertyOptions): Promise\ **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------- | ------------------------------------ | ---- | ---------- | | options | [DecodingOptions](#decodingoptions7) | 否 | 解码参数。 | @@ -1485,7 +1485,7 @@ createPixelMap(options: DecodingOptions, callback: AsyncCallback\): vo **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------------------- | ---- | -------------------------- | | options | [DecodingOptions](#decodingoptions7) | 是 | 解码参数。 | | callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是 | 通过回调返回PixelMap对象。 | @@ -1517,7 +1517,7 @@ release(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ---------------------------------- | | callback | AsyncCallback\ | 是 | 资源释放回调,失败时返回错误信息。 | @@ -1767,7 +1767,7 @@ createImageReceiver(width: number, height: number, format: number, capacity: num **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------ | ---- | ---------------------- | | width | number | 是 | 图像的默认宽度。 | | height | number | 是 | 图像的默认高度。 | @@ -1812,7 +1812,7 @@ getReceivingSurfaceId(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ---------------------- | ---- | -------------------------- | | callback | AsyncCallback\ | 是 | 回调函数,返回surface id。 | @@ -1862,7 +1862,7 @@ readLatestImage(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------------- | ---- | ------------------------ | | callback | AsyncCallback<[Image](#image9)> | 是 | 回调函数,返回最新图像。 | @@ -1912,7 +1912,7 @@ readNextImage(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------------- | ---- | -------------------------- | | callback | AsyncCallback<[Image](#image9)> | 是 | 回调函数,返回下一张图片。 | @@ -1962,7 +1962,7 @@ on(type: 'imageArrival', callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------------------------------------------ | | type | string | 是 | 注册事件的类型,固定为'imageArrival',接收图片时触发。 | | callback | AsyncCallback\ | 是 | 注册的事件回调。 | @@ -1983,7 +1983,7 @@ release(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------------ | | callback | AsyncCallback\ | 是 | 回调函数,返回操作结果。 | @@ -2027,7 +2027,7 @@ createImageCreator(width: number, height: number, format: number, capacity: numb **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------ | ---- | ---------------------- | | width | number | 是 | 图像的默认宽度。 | | height | number | 是 | 图像的默认高度。 | @@ -2070,7 +2070,7 @@ dequeueImage(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | ---------------------------------------| ---- | -------------------- | | callback | AsyncCallback\ | 是 | 回调函数,返回最新图片。 | @@ -2119,7 +2119,7 @@ queueImage(interface: Image, callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | -------------------------| ---- | -------------------- | | interface | Image | 是 | 绘制好的buffer图像。 | | callback | AsyncCallback\ | 是 | 获取回调,失败时返回错误信息。 | @@ -2158,7 +2158,7 @@ queueImage(interface: Image): Promise\ **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | --------| ---- | ------------------- | | interface | Image | 是 | 绘制好的buffer图像。 | @@ -2201,7 +2201,7 @@ on(type: 'imageRelease', callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | -------------------------| ---- | -------------------- | | type | string | 是 | 监听事件类型,如'imageRelease'。 | | callback | AsyncCallback\ | 是 | 获取回调,失败时返回错误信息。 | @@ -2227,7 +2227,7 @@ release(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | -------------------------| ---- | -------------------- | | callback | AsyncCallback\ | 是 | 获取回调,失败时返回错误信息。 | @@ -2289,7 +2289,7 @@ getComponent(componentType: ComponentType, callback: AsyncCallback\): **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | --------------------------------------- | ---- | -------------------- | | componentType | [ComponentType](#componenttype9) | 是 | 图像的组件类型。 | | callback | AsyncCallback<[Component](#component9)> | 是 | 用于返回组件缓冲区。 | @@ -2316,7 +2316,7 @@ getComponent(componentType: ComponentType): Promise\ **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------------- | -------------------------------- | ---- | ---------------- | | componentType | [ComponentType](#componenttype9) | 是 | 图像的组件类型。 | @@ -2344,7 +2344,7 @@ release(callback: AsyncCallback\): void **参数:** -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | -------------- | | callback | AsyncCallback\ | 是 | 返回操作结果。 | @@ -2423,7 +2423,7 @@ img.release().then(() =>{ **系统能力:** SystemCapability.Multimedia.Image.Core -| 名称 | 默认值 | 描述 | +| 名称 | 值 | 说明 | | ---------------------- | ------ | ----------------- | | UNKNOWN | 0 | 未知格式。 | | RGB_565 | 2 | 格式为RGB_565 | @@ -2441,7 +2441,7 @@ img.release().then(() =>{ **系统能力:** SystemCapability.Multimedia.Image.Core -| 名称 | 默认值 | 描述 | +| 名称 | 值 | 说明 | | -------- | ------ | ----------------------- | | UNKNOWN | 0 | 未知透明度。 | | OPAQUE | 1 | 没有alpha或图片全透明。 | @@ -2454,7 +2454,7 @@ img.release().then(() =>{ **系统能力:** SystemCapability.Multimedia.Image.Core -| 名称 | 默认值 | 描述 | +| 名称 | 值 | 说明 | | --------------- | ------ | -------------------------------------------------- | | CENTER_CROP | 1 | 缩放图像以填充目标图像区域并居中裁剪区域外的效果。 | | FIT_TARGET_SIZE | 0 | 图像适合目标尺寸的效果。 | @@ -2544,7 +2544,7 @@ PixelMap的初始化选项。 **系统能力:** SystemCapability.Multimedia.Image.Core -| 名称 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ----------------- | ----------------------- | ------------------------ | | BITS_PER_SAMPLE | "BitsPerSample" | 每个像素比特数。 | | ORIENTATION | "Orientation" | 图片方向。 | @@ -2567,7 +2567,7 @@ PixelMap的初始化选项。 **系统能力:** SystemCapability.Multimedia.Image.Core -| 名称 | 默认值 | 描述 | +| 名称 | 值 | 说明 | | ------------ | ------ | -------------------- | | YCBCR_422_SP | 1000 | YCBCR422半平面格式。 | | JPEG | 2000 | JPEG编码格式。 | @@ -2578,7 +2578,7 @@ PixelMap的初始化选项。 **系统能力:** SystemCapability.Multimedia.Image.ImageReceiver -| 名称 | 默认值 | 描述 | +| 名称 | 值 | 说明 | | ----- | ------ | ----------- | | YUV_Y | 1 | 亮度信息。 | | YUV_U | 2 | 色度信息。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-media.md b/zh-cn/application-dev/reference/apis/js-apis-media.md index 7973a972c1d8e675f806db36c2bd818688d3a60d..0e5e5e494c01dbb853b4a698b71e15af6fa6e44a 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-media.md +++ b/zh-cn/application-dev/reference/apis/js-apis-media.md @@ -142,9 +142,9 @@ createVideoRecorder(callback: AsyncCallback\<[VideoRecorder](#videorecorder9)>): 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | --------- | -| 5400101 | No memory | +| 错误码ID | 错误信息 | +| -------- | ------------------------------ | +| 5400101 | No memory. Return by callback. | **示例:** @@ -182,9 +182,9 @@ createVideoRecorder(): Promise<[VideoRecorder](#videorecorder9)> 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | --------- | -| 5400101 | No memory | +| 错误码ID | 错误信息 | +| -------- | ----------------------------- | +| 5400101 | No memory. Return by promise. | **示例:** @@ -1916,12 +1916,12 @@ prepare(config: VideoRecorderConfig, callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 201 | Permission denied | -| 401 | Parameter error | -| 5400102 | Operate not permit | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 201 | Permission denied. Return by callback. | +| 401 | Parameter error. Return by callback. | +| 5400102 | Operate not permit. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -1986,12 +1986,12 @@ prepare(config: VideoRecorderConfig): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 201 | Permission denied | -| 401 | Parameter error | -| 5400102 | Operate not permit | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 201 | Permission denied. Return by promise. | +| 401 | Parameter error. Return by promise. | +| 5400102 | Operate not permit. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2050,11 +2050,11 @@ getInputSurface(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 5400102 | Operate not permit. Return by callback. | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2095,11 +2095,11 @@ getInputSurface(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 5400102 | Operate not permit. Return by promise. | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2136,11 +2136,11 @@ start(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 5400102 | Operate not permit. Return by callback. | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2177,11 +2177,11 @@ start(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 5400102 | Operate not permit. Return by promise. | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2216,11 +2216,11 @@ pause(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 5400102 | Operate not permit. Return by callback. | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2257,11 +2257,11 @@ pause(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 5400102 | Operate not permit. Return by promise. | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2294,11 +2294,11 @@ resume(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 5400102 | Operate not permit. Return by callback. | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2333,11 +2333,11 @@ resume(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 5400102 | Operate not permit. Return by promise. | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2372,11 +2372,11 @@ stop(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------------- | +| 5400102 | Operate not permit. Return by callback. | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2413,11 +2413,11 @@ stop(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------------ | -| 5400102 | Operate not permit | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------------- | +| 5400102 | Operate not permit. Return by promise. | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2450,9 +2450,9 @@ release(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------ | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------- | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2487,9 +2487,9 @@ release(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------ | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------- | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2524,10 +2524,10 @@ reset(callback: AsyncCallback\): void; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------ | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------- | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2564,10 +2564,10 @@ reset(): Promise\; 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------ | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | -------------------------------- | +| 5400103 | IO error. Return by promise. | +| 5400105 | Service died. Return by promise. | **示例:** @@ -2599,10 +2599,10 @@ on(type: 'error', callback: ErrorCallback): void 以下错误码的详细介绍请参见[媒体错误码](../errorcodes/errorcode-media.md) -| 错误码ID | 错误信息 | -| -------- | ------------ | -| 5400103 | IO error | -| 5400105 | Service died | +| 错误码ID | 错误信息 | +| -------- | --------------------------------- | +| 5400103 | IO error. Return by callback. | +| 5400105 | Service died. Return by callback. | **示例:** @@ -2619,6 +2619,8 @@ videoRecorder.on('error', (error) => { // 设 **系统能力:** SystemCapability.Multimedia.Media.VideoRecorder +**系统接口:** 该接口为系统接口 + | 名称 | 类型 | 说明 | | -------- | ------ | ---------------------- | | idle | string | 视频录制空闲。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md b/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md index cf68988e0c1d19145740c5daf091b4c33c16cfe7..7424ab3ed480e185659a49ae1f2962887a89fa2f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md +++ b/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md @@ -999,6 +999,10 @@ async function example() { 提供封装文件属性的方法。 +> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** +> 1. title字段默认为去掉后缀的文件名,音频和视频文件会尝试解析文件内容,部分设备写入后在触发扫描时会被还原。 +> 2. orientation字段部分设备可能不支持修改,建议使用image组件的[ModifyImageProperty](js-apis-image.md#modifyimageproperty9)接口。 + ### 属性 **系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core @@ -2467,6 +2471,9 @@ async function example() { 枚举,文件关键信息。 +> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** +> bucket_id字段在文件重命名或移动后可能会发生变化,开发者使用前需要重新获取。 + **系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core | 名称 | 值 | 说明 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md b/zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md index 60e03b6967b89bafdccd0b1cde63a34462353bad..76aa8caac49949c7c3e794b30cb4a627be664bbb 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md @@ -35,7 +35,7 @@ publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback<number& **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -84,7 +84,7 @@ publishReminder(reminderReq: ReminderRequest): Promise<number> **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -126,7 +126,7 @@ cancelReminder(reminderId: number, callback: AsyncCallback<void>): void **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -172,7 +172,7 @@ cancelReminder(reminderId: number): Promise<void> **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -210,7 +210,7 @@ getValidReminders(callback: AsyncCallback<Array<ReminderRequest>>): **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -270,7 +270,7 @@ getValidReminders(): Promise<Array<ReminderRequest>> **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -328,7 +328,7 @@ cancelAllReminders(callback: AsyncCallback<void>): void **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | @@ -367,7 +367,7 @@ cancelAllReminders(): Promise<void> **错误码:** -以下错误码的详细介绍请参见[@ohos.reminderAgentManager (后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 +以下错误码的详细介绍请参见[@ohos.reminderAgentManager(后台代理提醒)](../errorcodes/errorcode-reminderAgentManager.md)错误码。 | 错误码ID | 错误码信息 | | --------- | ------- | diff --git a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md index 26b0cbbc9c1063494d2619cb274b8f6af3af894a..0cb31bcd9610b1616116eb83e5543833ba94d7e2 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md @@ -32,7 +32,7 @@ requestSuspendDelay(reason: string, callback: Callback<void>): DelaySuspen **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------------------ | | reason | string | 是 | 延迟挂起申请的原因。 | | callback | Callback<void> | 是 | 延迟即将超时的回调函数,一般在超时前6秒通过此回调通知应用。 | @@ -47,7 +47,7 @@ requestSuspendDelay(reason: string, callback: Callback<void>): DelaySuspen 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -86,7 +86,7 @@ getRemainingDelayTime(requestId: number, callback: AsyncCallback<number>): **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | --------------------------- | ---- | ---------------------------------------- | | requestId | number | 是 | 延迟挂起的请求ID。 | | callback | AsyncCallback<number> | 是 | 指定的callback回调方法。用于返回应用程序进入挂起状态之前的剩余时间,以毫秒为单位。 | @@ -95,7 +95,7 @@ getRemainingDelayTime(requestId: number, callback: AsyncCallback<number>): 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -137,7 +137,7 @@ getRemainingDelayTime(requestId: number): Promise<number> **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ------ | ---- | ---------- | | requestId | number | 是 | 延迟挂起的请求ID。 | @@ -151,7 +151,7 @@ getRemainingDelayTime(requestId: number): Promise<number> 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -188,7 +188,7 @@ cancelSuspendDelay(requestId: number): void **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ------ | ---- | ---------- | | requestId | number | 是 | 延迟挂起的请求ID。 | @@ -196,7 +196,7 @@ cancelSuspendDelay(requestId: number): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -231,7 +231,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ---------------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | bgMode | [BackgroundMode](#backgroundmode) | 是 | 向系统申请的后台模式。 | @@ -242,7 +242,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -305,7 +305,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | --------- | ---------------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | bgMode | [BackgroundMode](#backgroundmode) | 是 | 向系统申请的后台模式。 | @@ -321,7 +321,7 @@ startBackgroundRunning(context: Context, bgMode: BackgroundMode, wantAgent: Want 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -378,7 +378,7 @@ stopBackgroundRunning(context: Context, callback: AsyncCallback<void>): vo **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | | callback | AsyncCallback<void> | 是 | callback形式返回启动长时任务的结果。 | @@ -387,7 +387,7 @@ stopBackgroundRunning(context: Context, callback: AsyncCallback<void>): vo 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -434,7 +434,7 @@ stopBackgroundRunning(context: Context): Promise<void> **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------- | ------- | ---- | ---------------------------------------- | | context | Context | 是 | 应用运行的上下文。
FA模型的应用Context定义见[Context](js-apis-Context.md)。
Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 | @@ -448,7 +448,7 @@ stopBackgroundRunning(context: Context): Promise<void> 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -492,7 +492,7 @@ applyEfficiencyResources(request: [EfficiencyResourcesRequest](#efficiencyresour **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------- | ------- | ---- | ---------------------------------------- | | request | [EfficiencyResourcesRequest](#efficiencyresourcesrequest) | 是 | 请求的必要信息。包括资源类型,超时时间等信息。详见[EfficiencyResourcesRequest](#efficiencyresourcesrequest)。 | @@ -501,7 +501,7 @@ applyEfficiencyResources(request: [EfficiencyResourcesRequest](#efficiencyresour 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -544,7 +544,7 @@ resetAllEfficiencyResources(): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.backgroundTaskManager (后台任务管理)](../errorcodes/errorcode-backgroundTaskMgr.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9800001 | Memory operation failed. | | 9800002 | Parcel operation failed. | @@ -580,7 +580,7 @@ try { **系统能力:** SystemCapability.ResourceSchedule.BackgroundTaskManager.ContinuousTask -| 名称 | 值 | 描述 | +| 名称 | 值 | 说明 | | ----------------------- | ---- | --------------------- | | DATA_TRANSFER | 1 | 数据传输。 | | AUDIO_PLAYBACK | 2 | 音频播放。 | @@ -617,7 +617,7 @@ try { **系统API**: 此接口为系统接口。 -| 名称 | 值 | 描述 | +| 名称 | 值 | 说明 | | ----------------------- | ---- | --------------------- | | CPU | 1 | CPU资源,申请后不被挂起。 | | COMMON_EVENT | 2 | 公共事件,申请后挂起状态下不被代理掉。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md index b06086708b3d03867a372682ba6d6f4efc8722bd..cd1b811ad1474a4691ca0ba00c5fce405050f624 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md +++ b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-deviceUsageStatistics.md @@ -1295,7 +1295,7 @@ queryDeviceEventStats(begin: number, end: number): Promise<Array<DeviceEve | 10000002 | Parcel operation failed. | | 10000003 | System service operation failed. | | 10000004 | IPC Communication failed. | -| 10000006 | Get application info failed | +| 10000006 | Get application info failed. | | 10000007 | Get system or actual time failed. | **示例**: @@ -1446,7 +1446,7 @@ queryNotificationEventStats(begin: number, end: number, callback: AsyncCallback& | 10000002 | Parcel operation failed. | | 10000003 | System service operation failed. | | 10000004 | IPC Communication failed. | -| 10000006 | Get application info failed | +| 10000006 | Get application info failed. | | 10000007 | Get system or actual time failed. | **示例**: diff --git a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-workScheduler.md b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-workScheduler.md index 0ddce05d36ce0774e91590d3b3d01a566badc23f..58addfb8543fb58e47b1f48632fd423bfe423a4e 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-workScheduler.md +++ b/zh-cn/application-dev/reference/apis/js-apis-resourceschedule-workScheduler.md @@ -26,7 +26,7 @@ startWork(work: WorkInfo): void **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ---- | --------------------- | ---- | -------------- | | work | [WorkInfo](#workinfo) | 是 | 指示要添加到执行队列的工作。 | @@ -34,7 +34,7 @@ startWork(work: WorkInfo): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -77,7 +77,7 @@ stopWork(work: WorkInfo, needCancel?: boolean): void **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ---------- | --------------------- | ---- | ---------- | | work | [WorkInfo](#workinfo) | 是 | 指示要停止的工作。 | | needCancel | boolean | 是 | 是否需要取消的工作。 | @@ -86,7 +86,7 @@ stopWork(work: WorkInfo, needCancel?: boolean): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -127,7 +127,7 @@ getWorkStatus(workId: number, callback : AsyncCallback\): void **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------------------- | ---- | ---------------------------------------- | | workId | number | 是 | work的id。 | | callback | AsyncCallback\<[WorkInfo](#workinfo)> | 是 | 指定的callback回调方法。如果指定的工作Id有效,则返回从WorkSchedulerService获取的有效工作状态;否则返回null。 | @@ -136,7 +136,7 @@ getWorkStatus(workId: number, callback : AsyncCallback\): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -170,7 +170,7 @@ getWorkStatus(workId: number): Promise\ **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | -------- | | workId | number | 是 | work的id。 | @@ -184,7 +184,7 @@ getWorkStatus(workId: number): Promise\ 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -216,7 +216,7 @@ obtainAllWorks(callback : AsyncCallback\): Array\ **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ------------------------------- | | callback | AsyncCallback\ | 是 | 指定的callback回调方法。返回与应用程序关联的所有工作。 | @@ -230,7 +230,7 @@ obtainAllWorks(callback : AsyncCallback\): Array\ 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -269,7 +269,7 @@ obtainAllWorks(): Promise> 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -300,7 +300,7 @@ stopAndClearWorks(): void 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -326,7 +326,7 @@ isLastWorkTimeOut(workId: number, callback : AsyncCallback\): boolean **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | -------- | -------------------- | ---- | ---------------------------------------- | | workId | number | 是 | work的id。 | | callback | AsyncCallback\ | 是 | 指定的callback回调方法。如果指定工作的最后一次执行是超时操作,则返回true;否则返回false。 | @@ -341,7 +341,7 @@ isLastWorkTimeOut(workId: number, callback : AsyncCallback\): boolean 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | @@ -372,7 +372,7 @@ isLastWorkTimeOut(workId: number): Promise\ **参数**: -| 名称 | 类型 | 必填 | 说明 | +| 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | -------- | | workId | number | 是 | work的id。 | @@ -386,7 +386,7 @@ isLastWorkTimeOut(workId: number): Promise\ 以下错误码的详细介绍请参见[@ohos.resourceschedule.workScheduler (延迟任务调度)](../errorcodes/errorcode-workScheduler.md)错误码。 -| 错误码ID | 错误码信息 | +| 错误码ID | 错误信息 | | ---- | --------------------- | | 9700001 | Memory operation failed. | | 9700002 | Parcel operation failed. | diff --git a/zh-cn/application-dev/reference/apis/js-apis-statfs.md b/zh-cn/application-dev/reference/apis/js-apis-statfs.md index f4dedcedeeaa8cbe8a68160e6c0597d0c781298d..61761a0fad271045dd74b84ef7b204c52589fde5 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-statfs.md +++ b/zh-cn/application-dev/reference/apis/js-apis-statfs.md @@ -20,7 +20,7 @@ getFreeBytes(path:string):Promise<number> **参数:** - | 参数名 | 类型 | 必填 | 说明 | + | 参数 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------------- | | path | string | 是 | 需要查询的文件系统的文件路径 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-package.md b/zh-cn/application-dev/reference/apis/js-apis-system-package.md index 9b23dffd8e07c3ee00c09095360aca37af4ef58c..a910d5a7054ba76ac64af3d540992f40babd1d4c 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-system-package.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-package.md @@ -17,7 +17,7 @@ import package from '@system.package'; ## package.hasInstalled(deprecated) -> 从API version 9开始不再维护,推荐使用该模块[`@ohos.bundle.bundleManager`](js-apis-bundleManager.md)。 +> 从API version 9开始不再维护,推荐使用该模块[@ohos.bundle.bundleManager](js-apis-bundleManager.md)。 hasInstalled(Object): void diff --git a/zh-cn/application-dev/reference/apis/js-apis-update.md b/zh-cn/application-dev/reference/apis/js-apis-update.md index e630fc5fcbd76430dd4e2dd940f0cb155ea6e982..f9c694d0aa71ece5b03d0d61d291569e578d32f1 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-update.md +++ b/zh-cn/application-dev/reference/apis/js-apis-update.md @@ -43,7 +43,7 @@ getOnlineUpdater(upgradeInfo: UpgradeInfo): Updater 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -83,7 +83,7 @@ getRestorer(): Restorer 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -115,7 +115,7 @@ getLocalUpdater(): LocalUpdater 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -151,7 +151,7 @@ checkNewVersion(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -183,7 +183,7 @@ checkNewVersion(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -219,7 +219,7 @@ getNewVersionInfo(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -252,7 +252,7 @@ getNewVersionInfo(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -283,13 +283,13 @@ getNewVersionDescription(versionDigestInfo: VersionDigestInfo, descriptionOption | ------------------ | ---------------------------------------- | ---- | -------------- | | versionDigestInfo | [VersionDigestInfo](#versiondigestinfo) | 是 | 版本摘要信息。 | | descriptionOptions | [DescriptionOptions](#descriptionoptions) | 是 | 描述文件选项。 | -| callback | AsyncCallback\>) | 是 | 回调函数,返回新版本描述文件。 | +| callback | AsyncCallback\> | 是 | 回调函数,返回新版本描述文件。 | **错误码**: 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -340,7 +340,7 @@ getNewVersionDescription(versionDigestInfo: VersionDigestInfo, descriptionOption 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -385,7 +385,7 @@ getCurrentVersionInfo(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -419,7 +419,7 @@ getCurrentVersionInfo(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -450,13 +450,13 @@ getCurrentVersionDescription(descriptionOptions: DescriptionOptions, callback: A | 参数名 | 类型 | 必填 | 说明 | | ------------------ | ---------------------------------------- | ---- | --------------- | | descriptionOptions | [DescriptionOptions](#descriptionoptions) | 是 | 描述文件选项。 | -| callback | AsyncCallback\>) | 是 | 回调函数,返回当前版本描述文件。 | +| callback | AsyncCallback\> | 是 | 回调函数,返回当前版本描述文件。 | **错误码**: 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -501,7 +501,7 @@ getCurrentVersionDescription(descriptionOptions: DescriptionOptions): Promise\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -573,7 +573,7 @@ getTaskInfo(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -609,7 +609,7 @@ download(versionDigestInfo: VersionDigestInfo, downloadOptions: DownloadOptions, 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -658,7 +658,7 @@ download(versionDigestInfo: VersionDigestInfo, downloadOptions: DownloadOptions) 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -704,7 +704,7 @@ resumeDownload(versionDigestInfo: VersionDigestInfo, resumeDownloadOptions: Resu 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -752,7 +752,7 @@ resumeDownload(versionDigestInfo: VersionDigestInfo, resumeDownloadOptions: Resu 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -797,7 +797,7 @@ pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseD 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -845,7 +845,7 @@ pauseDownload(versionDigestInfo: VersionDigestInfo, pauseDownloadOptions: PauseD 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -890,7 +890,7 @@ upgrade(versionDigestInfo: VersionDigestInfo, upgradeOptions: UpgradeOptions, ca 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -938,7 +938,7 @@ upgrade(versionDigestInfo: VersionDigestInfo, upgradeOptions: UpgradeOptions): P 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -983,7 +983,7 @@ clearError(versionDigestInfo: VersionDigestInfo, clearOptions: ClearOptions, cal 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1031,7 +1031,7 @@ clearError(versionDigestInfo: VersionDigestInfo, clearOptions: ClearOptions): Pr 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1074,7 +1074,7 @@ getUpgradePolicy(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1107,7 +1107,7 @@ getUpgradePolicy(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1143,7 +1143,7 @@ setUpgradePolicy(policy: UpgradePolicy, callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1186,7 +1186,7 @@ setUpgradePolicy(policy: UpgradePolicy): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1225,7 +1225,7 @@ terminateUpgrade(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1257,7 +1257,7 @@ terminateUpgrade(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1290,7 +1290,7 @@ on(eventClassifyInfo: EventClassifyInfo, taskCallback: UpgradeTaskCallback): voi 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1325,7 +1325,7 @@ off(eventClassifyInfo: EventClassifyInfo, taskCallback?: UpgradeTaskCallback): v 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1364,7 +1364,7 @@ factoryReset(callback: AsyncCallback\): void 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1396,7 +1396,7 @@ factoryReset(): Promise\ 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1434,7 +1434,7 @@ verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string, callback: Asyn 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1478,7 +1478,7 @@ verifyUpgradePackage(upgradeFile: UpgradeFile, certsFile: string): Promise\, callback: Asyn 以下的错误码的详细介绍请参见[升级错误码](../errorcodes/errorcode-update.md) -| 类型 | 说明 | +| 错误码ID | 错误信息 | | ------- | ---------------------------------------------------- | | 11500104 | BusinessError 11500104: IPC error. | @@ -1553,7 +1553,7 @@ applyNewVersion(upgradeFiles: Array<[UpgradeFile](#upgradefile)>): Promise\ | 是 | 版本组件。 | @@ -1695,7 +1695,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------- | ------ | ---- | ---- | | versionDigest | string | 是 | 版本摘要。 | @@ -1705,7 +1705,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | --------------- | ----------------------------------- | ---- | -------- | | componentId | string | 是 | 组件标识。 | | componentType | [ComponentType](#componenttype) | 是 | 组件类型。 | @@ -1722,7 +1722,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | -------- | --------------------------------------- | ---- | ------ | | format | [DescriptionFormat](#descriptionformat) | 是 | 描述文件格式。 | | language | string | 是 | 描述文件语言。 | @@ -1733,7 +1733,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | --------------- | ----------------------------------- | ---- | ------ | | componentId | string | 是 | 组件标识。 | | descriptionInfo | [DescriptionInfo](#descriptioninfo) | 是 | 描述文件信息。 | @@ -1744,7 +1744,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | --------------- | ----------------------------------- | ---- | ------ | | descriptionType | [DescriptionType](#descriptiontype) | 是 | 描述文件类型。 | | content | string | 是 | 描述文件内容。 | @@ -1755,7 +1755,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ----------------- | ---------------------------------------- | ---- | ----- | | osVersion | string | 是 | 系统版本号。 | | deviceName | string | 是 | 设备名。 | @@ -1767,7 +1767,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------ | ------------------- | ---- | ---- | | allowNetwork | [NetType](#nettype) | 是 | 网络类型。 | | order | [Order](#order) | 是 | 升级指令。 | @@ -1778,7 +1778,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------ | ------------------- | ---- | ---- | | allowNetwork | [NetType](#nettype) | 是 | 网络类型。 | @@ -1788,7 +1788,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ----------------- | ---- | ---- | -------- | | isAllowAutoResume | bool | 是 | 是否允许自动恢复。 | @@ -1798,7 +1798,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ----- | --------------- | ---- | ---- | | order | [Order](#order) | 是 | 升级指令。 | @@ -1808,7 +1808,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------ | ------------------------------- | ---- | ---- | | status | [UpgradeStatus](#upgradestatus) | 是 | 异常状态。 | @@ -1818,7 +1818,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------------- | --------------------------------------- | ---- | ------- | | downloadStrategy | bool | 是 | 自动下载策略。 | | autoUpgradeStrategy | bool | 是 | 自动升级策略。 | @@ -1830,7 +1830,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ----- | ------ | ---- | ---- | | start | number | 是 | 开始时间。 | | end | number | 是 | 结束时间。 | @@ -1841,7 +1841,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | --------- | --------------------- | ---- | ------ | | existTask | bool | 是 | 是否存在任务。 | | taskBody | [TaskBody](#taskinfo) | 是 | 任务数据。 | @@ -1852,7 +1852,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | -------- | --------------------- | ---- | ---- | | eventId | [EventId](#eventid) | 是 | 事件ID。 | | taskBody | [TaskBody](#taskinfo) | 是 | 任务数据。 | @@ -1863,7 +1863,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ----------------- | ---------------------------------------- | ---- | ---- | | versionDigestInfo | [VersionDigestInfo](#versiondigestinfo) | 是 | 版本摘要。 | | status | [UpgradeStatus](#upgradestatus) | 是 | 升级状态。 | @@ -1879,7 +1879,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------ | ------ | ---- | ---- | | errorCode | number | 是 | 错误码。 | | errorMessage | string | 是 | 错误描述。 | @@ -1890,7 +1890,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | ------------- | ------------------------------- | ---- | ---- | | eventClassify | [EventClassify](#eventclassify) | 是 | 事件类型。 | | extraInfo | string | 是 | 额外信息。 | @@ -1901,7 +1901,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | -------- | ------------------------------- | ---- | ---- | | fileType | [ComponentType](#componenttype) | 是 | 文件类型。 | | filePath | string | 是 | 文件路径。 | @@ -1914,7 +1914,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 名称 | 参数类型 | 必填 | 说明 | +| 名称 | 类型 | 必填 | 说明 | | --------- | ----------------------- | ---- | ---- | | eventInfo | [EventInfo](#eventinfo) | 是 | 事件信息。 | @@ -1924,7 +1924,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ------ | -------- | ---- | | PUBLIC | "public" | 开源。 | @@ -1934,7 +1934,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | -------- | ---- | ---- | | FIRMWARE | 1 | 固件。 | @@ -1944,7 +1944,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ---- | ---- | ---- | | OTA | 1 | 固件。 | @@ -1954,7 +1954,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | -------- | ---------- | ---- | | UPGRADE | "upgrade" | 差分包。 | | RECOVERY | "recovery" | 修复包。 | @@ -1965,7 +1965,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ------------- | ---- | ---- | | COLD | 1 | 冷升级。 | | LIVE | 2 | 热升级。 | @@ -1977,7 +1977,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ------- | ---- | ---- | | CONTENT | 0 | 内容。 | | URI | 1 | 链接。 | @@ -1988,7 +1988,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ---------- | ---- | ---- | | STANDARD | 0 | 标准格式。 | | SIMPLIFIED | 1 | 简易格式。 | @@ -1999,7 +1999,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ----------------- | ---- | --------- | | CELLULAR | 1 | 数据网络。 | | METERED_WIFI | 2 | 热点WIFI。 | @@ -2013,7 +2013,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | -------------------- | ---- | ----- | | DOWNLOAD | 1 | 下载。 | | INSTALL | 2 | 安装。 | @@ -2027,7 +2027,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ---------------- | ---- | ---- | | WAITING_DOWNLOAD | 20 | 待下载。 | | DOWNLOADING | 21 | 下载中。 | @@ -2046,7 +2046,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ---- | ---------- | ---- | | TASK | 0x01000000 | 任务事件。 | @@ -2056,7 +2056,7 @@ localUpdater.off(eventClassifyInfo, onTaskUpdate); **系统能力**:SystemCapability.Update.UpdateService -| 参数名 | 默认值 | 说明 | +| 名称 | 值 | 说明 | | ---------------------- | ---------- | ------ | | EVENT_TASK_BASE | 0x01000000 | 任务事件。 | | EVENT_TASK_RECEIVE | 0x01000001 | 收到任务。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-url.md b/zh-cn/application-dev/reference/apis/js-apis-url.md index ece56e49de9a72e69cad381c668e33c9920801fd..467d59954329b938b71ffb05ce6f6fd2aea5cb19 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-url.md +++ b/zh-cn/application-dev/reference/apis/js-apis-url.md @@ -818,8 +818,8 @@ new Url.URL('/path/path1', a); // Output 'http://username:password@host:8080/pat new Url.URL('/path/path1', "https://www.exampleUrl/fr-FR/toto"); // Output https://www.exampleUrl/path/path1 new Url.URL('/path/path1', ''); // Raises a TypeError exception as '' is not a valid URL new Url.URL('/path/path1'); // Raises a TypeError exception as '/path/path1' is not a valid URL -new Url.URL('http://www.shanxi.com', ); // Output http://www.shanxi.com/ -new Url.URL('http://www.shanxi.com', b); // Output http://www.shanxi.com/ +new Url.URL('https://www.example.com', ); // Output https://www.example.com/ +new Url.URL('https://www.example.com', b); // Output https://www.example.com/ ``` ### parseURL9+ diff --git a/zh-cn/application-dev/reference/apis/js-apis-wifi.md b/zh-cn/application-dev/reference/apis/js-apis-wifi.md index 1f2f4c2a2dd404a4482e36e9c44e64e12936746c..39a2da10fae4ef5856d09cb0e66638ec301e087c 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-wifi.md +++ b/zh-cn/application-dev/reference/apis/js-apis-wifi.md @@ -167,7 +167,7 @@ WLAN热点信息。 | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | capabilities | string | 是 | 否 | 热点能力。 | @@ -244,7 +244,7 @@ WLAN配置信息。 | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | preSharedKey | string | 是 | 否 | 热点的密钥。 | @@ -284,7 +284,7 @@ IP配置信息。 **系统能力:** SystemCapability.Communication.WiFi.STA | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ipAddress | number | 是 | 否 | IP地址。 | | gateway | number | 是 | 否 | 网关。 | | dnsServers | number[] | 是 | 否 | DNS服务器。 | @@ -548,7 +548,7 @@ getLinkedInfo(callback: AsyncCallback<WifiLinkedInfo>): void **系统能力:** SystemCapability.Communication.WiFi.STA | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | networkId | number | 是 | 否 | 网络配置ID。
**系统接口:** 此接口为系统接口。 | @@ -726,7 +726,7 @@ IP信息。 **系统能力:** SystemCapability.Communication.WiFi.STA | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ipAddress | number | 是 | 否 | IP地址。 | | gateway | number | 是 | 否 | 网关。 | | netmask | number | 是 | 否 | 掩码。 | @@ -1014,7 +1014,7 @@ setHotspotConfig(config: HotspotConfig): boolean **系统能力:** SystemCapability.Communication.WiFi.AP.Core | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | securityType | [WifiSecurityType](#wifisecuritytype) | 是 | 否 | 加密类型。 | | band | number | 是 | 否 | 热点的带宽。1: 2.4G, 2: 5G, 3: 双模频段 | @@ -1069,7 +1069,7 @@ getStations():  Array<[StationInfo](#stationinfo7)> **系统能力:** SystemCapability.Communication.WiFi.AP.Core | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | name | string | 是 | 否 | 设备名称。 | | macAddress | string | 是 | 否 | MAC地址。 | | ipAddress | string | 是 | 否 | IP地址。 | @@ -1100,7 +1100,7 @@ getP2pLinkedInfo(): Promise<WifiP2pLinkedInfo> **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | connectState | [P2pConnectState](#p2pconnectstate8) | 是 | 否 | P2P连接状态。 | | isGroupOwner | boolean | 是 | 否 | 是否是群主。 | | groupOwnerAddr | string | 是 | 否 | 群组MAC地址。 @@ -1210,7 +1210,7 @@ getP2pPeerDevices(callback: AsyncCallback<WifiP2pDevice[]>): void **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | deviceName | string | 是 | 否 | 设备名称。 | | deviceAddress | string | 是 | 否 | 设备MAC地址。 | | primaryDeviceType | string | 是 | 否 | 主设备类型。 | @@ -1263,7 +1263,7 @@ createGroup(config: WifiP2PConfig): boolean **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | deviceAddress | string | 是 | 否 | 设备地址。 | | netId | number | 是 | 否 | 网络ID。创建群组时-1表示创建临时组,-2表示创建永久组。 | | passphrase | string | 是 | 否 | 群组密钥。 | @@ -1476,7 +1476,7 @@ deletePersistentGroup(netId: number): boolean **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | isP2pGo | boolean | 是 | 否 | 是否是群主。 | | ownerInfo | [WifiP2pDevice](#wifip2pdevice8) | 是 | 否 | 群组的设备信息。 | | passphrase | string | 是 | 否 | 群组密钥。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-wifiManager.md b/zh-cn/application-dev/reference/apis/js-apis-wifiManager.md index 3168435f4d9841ad44c42df40a29bf4050fb8592..bd86db65207f40f8b71fba4fb0b601f043279897 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-wifiManager.md +++ b/zh-cn/application-dev/reference/apis/js-apis-wifiManager.md @@ -8,7 +8,7 @@ ## 导入模块 ```js -import wifi from '@ohos.wifi'; +import wifiManager from '@ohos.wifiManager'; ``` ## wifi.enableWifi @@ -167,7 +167,7 @@ WLAN热点信息。 | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | capabilities | string | 是 | 否 | 热点能力。 | @@ -284,7 +284,7 @@ WLAN配置信息。 | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | preSharedKey | string | 是 | 否 | 热点的密钥。 | @@ -325,7 +325,7 @@ IP配置信息。 **系统能力:** SystemCapability.Communication.WiFi.STA | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ipAddress | number | 是 | 否 | IP地址。 | | gateway | number | 是 | 否 | 网关。 | | dnsServers | number[] | 是 | 否 | DNS服务器。 | @@ -771,7 +771,7 @@ getLinkedInfo(callback: AsyncCallback<WifiLinkedInfo>): void **系统能力:** SystemCapability.Communication.WiFi.STA | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | bssid | string | 是 | 否 | 热点的BSSID。 | | networkId | number | 是 | 否 | 网络配置ID。
**系统接口:** 此接口为系统接口。 | @@ -950,7 +950,7 @@ IP信息。 **系统能力:** SystemCapability.Communication.WiFi.STA | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ipAddress | number | 是 | 否 | IP地址。 | | gateway | number | 是 | 否 | 网关。 | | netmask | number | 是 | 否 | 掩码。 | @@ -1238,7 +1238,7 @@ setHotspotConfig(config: HotspotConfig): boolean **系统能力:** SystemCapability.Communication.WiFi.AP.Core | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | ssid | string | 是 | 否 | 热点的SSID,编码格式为UTF-8。 | | securityType | [WifiSecurityType](#wifisecuritytype) | 是 | 否 | 加密类型。 | | band | number | 是 | 否 | 热点的带宽。1: 2.4G, 2: 5G, 3: 双模频段 | @@ -1293,7 +1293,7 @@ getStations():  Array<[StationInfo](#stationinfo7)> **系统能力:** SystemCapability.Communication.WiFi.AP.Core | **参数名** | **类型** | **可读** | **可写** | **说明** | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | name | string | 是 | 否 | 设备名称。 | | macAddress | string | 是 | 否 | MAC地址。 | | ipAddress | string | 是 | 否 | IP地址。 | @@ -1324,7 +1324,7 @@ getP2pLinkedInfo(): Promise<WifiP2pLinkedInfo> **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | connectState | [P2pConnectState](#p2pconnectstate8) | 是 | 否 | P2P连接状态。 | | isGroupOwner | boolean | 是 | 否 | 是否是群主。 | | groupOwnerAddr | string | 是 | 否 | 群组MAC地址。 @@ -1434,7 +1434,7 @@ getP2pPeerDevices(callback: AsyncCallback<WifiP2pDevice[]>): void **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | deviceName | string | 是 | 否 | 设备名称。 | | deviceAddress | string | 是 | 否 | 设备MAC地址。 | | primaryDeviceType | string | 是 | 否 | 主设备类型。 | @@ -1521,7 +1521,7 @@ createGroup(config: WifiP2PConfig): boolean **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | deviceAddress | string | 是 | 否 | 设备地址。 | | netId | number | 是 | 否 | 网络ID。创建群组时-1表示创建临时组,-2表示创建永久组。 | | passphrase | string | 是 | 否 | 群组密钥。 | @@ -1753,7 +1753,7 @@ getP2pGroups(): Promise<Array<WifiP2pGroupInfo>> **系统能力:** SystemCapability.Communication.WiFi.P2P | 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | +| -------- | -------- | -------- | -------- | -------- | | isP2pGo | boolean | 是 | 否 | 是否是群主。 | | ownerInfo | [WifiP2pDevice](#wifip2pdevice8) | 是 | 否 | 群组的设备信息。 | | passphrase | string | 是 | 否 | 群组密钥。 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-wifiManagerExt.md b/zh-cn/application-dev/reference/apis/js-apis-wifiManagerExt.md index 7e965f91eb291a2bf04d33a659c990aa6bbb4999..53f20c258ec3d0fdeecaf69c55d788be0dcfc134 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-wifiManagerExt.md +++ b/zh-cn/application-dev/reference/apis/js-apis-wifiManagerExt.md @@ -9,7 +9,7 @@ ## 导入模块 ```js -import wifiext from '@ohos.wifiext'; +import wifiManagerExt from '@ohos.wifiManagerExt'; ``` ## wifiext.enableHotspot diff --git a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.PNG b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.PNG new file mode 100644 index 0000000000000000000000000000000000000000..b1b372c84e62379ebc7ae3ca5219cd30e823c5d2 Binary files /dev/null and b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.PNG differ diff --git a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.jpg b/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.jpg deleted file mode 100644 index b0e1a1070b2bdbb158e1ba66caa2269626acd1ef..0000000000000000000000000000000000000000 Binary files a/zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219982699.jpg and /dev/null differ diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-griditem.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-griditem.md index a4a006b8bc97833657c7dbbe823017617a342cb8..b0b5e850a53ded55096e78a46609d02caa284381 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-griditem.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-griditem.md @@ -43,29 +43,40 @@ GridItem() @Entry @Component struct GridItemExample { - @State numbers: string[] = Array.apply(null, Array(16)).map(function (item, i) { return i.toString() }) + @State numbers: string[] = Array.apply(null, { length: 16 }).map(function (item, i) { + return i.toString() + }) build() { Column() { Grid() { GridItem() { Text('4') - .fontSize(16).backgroundColor(0xFAEEE0) - .width('100%').height('100%').textAlign(TextAlign.Center) + .fontSize(16) + .backgroundColor(0xFAEEE0) + .width('100%') + .height('100%') + .textAlign(TextAlign.Center) }.rowStart(1).rowEnd(4) ForEach(this.numbers, (item) => { GridItem() { Text(item) - .fontSize(16).backgroundColor(0xF9CF93) - .width('100%').height('100%').textAlign(TextAlign.Center) + .fontSize(16) + .backgroundColor(0xF9CF93) + .width('100%') + .height('100%') + .textAlign(TextAlign.Center) }.forceRebuild(false) }, item => item) GridItem() { Text('5') - .fontSize(16).backgroundColor(0xDBD0C0) - .width('100%').height('100%').textAlign(TextAlign.Center) + .fontSize(16) + .backgroundColor(0xDBD0C0) + .width('100%') + .height('100%') + .textAlign(TextAlign.Center) }.columnStart(1).columnEnd(5) } .columnsTemplate('1fr 1fr 1fr 1fr 1fr') diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-stack.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-stack.md index 26a2f1728ce929034415c04a382a11985d6083b1..9b329c79b9806056213a6d191fbfd6d7b2d2486c 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-stack.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-stack.md @@ -39,4 +39,4 @@ struct StackExample { } ``` -![zh-cn_image_0000001219982699](figures/zh-cn_image_0000001219982699.jpg) +![zh-cn_image_0000001219982699](figures/zh-cn_image_0000001219982699.PNG) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md b/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md index 820834e1daac886c0781895b1b73c89200da08e5..ee9d0f394150788b1aea9b45311fb81267cb6ed4 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md @@ -15,7 +15,7 @@ | -------- | -------- | -------- | -------- | | gesture | gesture: [GestureType](#gesturetype),
mask?: [GestureMask](#gesturemask枚举说明) | gesture: -,
mask: GestureMask.Normal | 绑定手势。
- gesture: 绑定的手势类型, 
- mask: 事件响应设置。 | | priorityGesture | gesture: [GestureType](#gesturetype),
mask?: [GestureMask](#gesturemask枚举说明) | gesture: -,
mask: GestureMask.Normal | 绑定优先识别手势。
- gesture: 绑定的手势类型, 
- mask: 事件响应设置。
默认情况下,子组件优先识别通过gesture绑定的手势,当父组件配置priorityGesture时,子组件优先识别priorityGesture绑定的手势。 | -| parallelGesture | gesture: [GestureType](#gesturetype),
mask?: [GestureMask](#gesturemask枚举说明) | gesture: -,
mask: GestureMask.Normal | 绑定可与子组件手势同时触发的手势。
- gesture: 绑定的手势类型。 
- mask: 事件响应设置。
手势事件为非冒泡事件。父组件设置parallelGesture时,父子组件相同的手势事件都可以触发,实现类似冒泡效果。 | +| parallelGesture | gesture: [GestureType](#gesturetype),
mask?: [GestureMask](#gesturemask枚举说明) | gesture: -,
mask: GestureMask.Normal | 绑定可与子组件手势同时触发的手势。
- gesture: 绑定的手势类型。 
- mask: 事件响应设置。
手势事件为非冒泡事件。父组件设置parallelGesture时,父子组件相同的手势事件都可以触发,实现类似冒泡效果。若父子组件中同时绑定单击手势事件和双击手势事件,则只响应单击手势事件。 | ## GestureType diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-state-management.md b/zh-cn/application-dev/reference/arkui-ts/ts-state-management.md index 9270ee579a140874d10d1607bca2c48abfbd0a3c..2f958cf53b91705af872585eedae6acc2662c77d 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-state-management.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-state-management.md @@ -136,7 +136,7 @@ Get\(propName: string): T | undefined | 类型 | 描述 | | ----------------- | ------------- | -| boolean或undefined | 返回属性的属性值是否存在。 | +| T或undefined | 属性存在返回属性值,属性不存在返回undefined。 | ```ts let simple = AppStorage.Get('simpleProp') @@ -180,8 +180,8 @@ SetOrCreate\(propName: string, newValue: T): void **返回值:** -| 类型 | 描述 | -| ------- | ------------------------------------------------------------ | +| 类型 | 描述 | +| ------- | ---------------------------------------- | | boolean | 如果已存在与给定键名字相同的属性,更新其值且返回true。如果不存在具有给定名称的属性,在AppStorage中创建具有给定默认值的新属性,默认值必须是T类型。不允许undefined 或 null 返回true。 | ```ts diff --git a/zh-cn/application-dev/reference/errorcodes/errorcode-enterpriseDeviceManager.md b/zh-cn/application-dev/reference/errorcodes/errorcode-enterpriseDeviceManager.md index 1d2b695dd3d2266ddb84380f7eaa024ff718375a..d8437ae84065a31262e8e17003e9a26190cd89a6 100644 --- a/zh-cn/application-dev/reference/errorcodes/errorcode-enterpriseDeviceManager.md +++ b/zh-cn/application-dev/reference/errorcodes/errorcode-enterpriseDeviceManager.md @@ -143,4 +143,22 @@ The system ability work abnormally. **处理步骤** -系统服务内部工作异常,请稍后重试,或者重启设备尝试。 \ No newline at end of file +系统服务内部工作异常,请稍后重试,或者重启设备尝试。 + +## 9200008 系统订阅事件无效 + +**错误信息** + +The specified system events enum is invalid. + +**错误描述** + +当企业设备管理暂不支持订阅此事件或系统订阅的事件无效时,则会产生此错误码。 + +**可能原因** + +企业设备管理暂不支持订阅此事件或系统订阅的事件无效。 + +**处理步骤** + +检查所订阅事件是企业设备管理所支持的有效管理事件。 \ No newline at end of file diff --git a/zh-cn/application-dev/security/huks-guidelines.md b/zh-cn/application-dev/security/huks-guidelines.md index 35b64f31babadb390bbcf544ed6b24d8c3ed70db..4e5cd92fe3290a04393f81ec3afc306d44178ad5 100644 --- a/zh-cn/application-dev/security/huks-guidelines.md +++ b/zh-cn/application-dev/security/huks-guidelines.md @@ -14,6 +14,86 @@ HUKS(OpenHarmony Universal KeyStore,OpenHarmony通用密钥库系统)向 import huks from '@ohos.security.huks' ``` +### 密钥生成 + +通过指定别名和密钥参数的方式,使用HUKS生成应用需要的密钥。生成密钥时支持动态参数指定,分为必选参数和可选参数。其中,必选参数表示在生成密钥时必须传入;可选参数表示在生成密钥时可以传入,也可以不传入。 + +> 说明: +> +> 1、生成密钥时传入的参数是对密钥使用的一种约束,规范了密钥使用的范围。如果在使用时传入的参数和生成密钥时传入的参数相悖,则该参数会校验失败。 +> +> 2、如果可选参数没有在生成密钥阶段时传入,但算法又需要该参数,在使用阶段必须传入。 + +**支持生成的密钥类型:** + +这里罗列了密钥生成过程中支持的必选参数,包括密钥算法、密钥长度、密钥用途。详见下文算法的使用过程。 + +| HUKS_ALG_ALGORITHM | HUKS_ALG_KEY_SIZE | HUKS_ALG_PURPOSE | +| ------------------ | :----------------------------------------------------------- | ------------------------------------------------------------ | +| HUKS_ALG_RSA | HUKS_RSA_KEY_SIZE_512 HUKS_RSA_KEY_SIZE_768 HUKS_RSA_KEY_SIZE_1024 HUKS_RSA_KEY_SIZE_2048 HUKS_RSA_KEY_SIZE_3072 HUKS_RSA_KEY_SIZE_4096 | HUKS_KEY_PURPOSE_ENCRYPT HUKS_KEY_PURPOSE_DECRYPT HUKS_KEY_PURPOSE_SIGN HUKS_KEY_PURPOSE_VERIFY | +| HUKS_ALG_AES | HUKS_AES_KEY_SIZE_128 HUKS_AES_KEY_SIZE_192 HUKS_AES_KEY_SIZE_256 | HUKS_KEY_PURPOSE_ENCRYPT HUKS_KEY_PURPOSE_DECRYPT HUKS_KEY_PURPOSE_DERIVE | +| HUKS_ALG_ECC | HUKS_ECC_KEY_SIZE_224 HUKS_ECC_KEY_SIZE_256 HUKS_ECC_KEY_SIZE_384 HUKS_ECC_KEY_SIZE_521 | HUKS_KEY_PURPOSE_SIGN HUKS_KEY_PURPOSE_VERIFY | +| HUKS_ALG_X25519 | HUKS_CURVE25519_KEY_SIZE_256 | HUKS_KEY_PURPOSE_AGREE | +| HUKS_ALG_ED25519 | HUKS_CURVE25519_KEY_SIZE_256 | HUKS_KEY_PURPOSE_SIGN HUKS_KEY_PURPOSE_VERIFY | +| HUKS_ALG_DSA | HUKS_RSA_KEY_SIZE_1024 | HUKS_KEY_PURPOSE_SIGN HUKS_KEY_PURPOSE_VERIFY | +| HUKS_ALG_DH | HUKS_DH_KEY_SIZE_2048 HUKS_DH_KEY_SIZE_3072 HUKS_DH_KEY_SIZE_4096 | HUKS_KEY_PURPOSE_AGREE | +| HUKS_ALG_ECDH | HUKS_ECC_KEY_SIZE_224 HUKS_ECC_KEY_SIZE_256 HUKS_ECC_KEY_SIZE_384 HUKS_ECC_KEY_SIZE_521 | HUKS_KEY_PURPOSE_AGREE | +| HUKS_ALG_SM2 | HUKS_SM2_KEY_SIZE_256 | HUKS_KEY_PURPOSE_SIGN HUKS_KEY_PURPOSE_VERIFY | +| HUKS_ALG_SM4 | HUKS_SM4_KEY_SIZE_128 | HUKS_KEY_PURPOSE_ENCRYPT HUKS_KEY_PURPOSE_DECRYPT | + +在使用示例前,需要先了解几个预先定义的变量: + +| 参数名 | 类型 | 必填 | 说明 | +| ---------------- | ----------- | ---- | ------------------------------------------------------------ | +| genKeyAlias | string | 是 | 生成密钥的别名。 | +| genKeyProperties | HuksOptions | 是 | 用于存放生成key所需TAG。其中密钥使用的算法、密钥用途、密钥长度为必选参数。 | + +关于接口的具体信息,可在[API参考文档](../reference/apis/js-apis-huks.md)中查看。 + +```ts +/* 以生成ECC256密钥为例 */ +let keyAlias = 'keyAlias'; +let properties = new Array(); +//必选参数 +properties[0] = { + tag: huks.HuksTag.HUKS_TAG_ALGORITHM, + value: huks.HuksKeyAlg.HUKS_ALG_ECC +}; +//必选参数 +properties[1] = { + tag: huks.HuksTag.HUKS_TAG_KEY_SIZE, + value: huks.HuksKeySize.HUKS_ECC_KEY_SIZE_256 +}; +//必选参数 +properties[2] = { + tag: huks.HuksTag.HUKS_TAG_PURPOSE, + value: + huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_SIGN | + huks.HuksKeyPurpose.HUKS_KEY_PURPOSE_VERIFY +}; +//可选参数 +properties[3] = { + tag: huks.HuksTag.HUKS_TAG_DIGEST, + value: huks.HuksKeyDigest.HUKS_DIGEST_SHA256 +}; +let options = { + properties: properties +}; +try { + huks.generateKeyItem(keyAlias, options, function (error, data) { + if (error) { + console.error(`callback: generateKeyItem failed, code: ${error.code}, msg: ${error.message}`); + } else { + console.info(`callback: generateKeyItem key success`); + } + }); +} catch (error) { + console.error(`callback: generateKeyItem input arg invalid, code: ${error.code}, msg: ${error.message}`); +} +``` + + + ### 密钥导入导出 HUKS支持非对称密钥的公钥导出能力,开发者可以通过密钥别名导出应用自己密钥对的公钥,只允许导出属于应用自己的密钥对的公钥。 @@ -2513,7 +2593,7 @@ HksInit对paramSet中参数的要求 | HUKS_TAG_ALGORITHM | HUKS_TAG_PURPOSE | HUKS_TAG_DIGEST | HUKS_TAG_DERIVE_KEY_SIZE | | ------------------------------------------------------------ | ----------------------- | ---------------------------------------------------------- | ------------------------ | -| HUKS_ALG_HKDF (支持长度: HUKS_AES_KEY_SIZE_128 HUKS_AES_KEY_SIZE_192 HUKS_AES_KEY_SIZE_256) | HUKS_KEY_PURPOSE_DERIVE | HUKS_DIGEST_SHA256 HUKS_DIGEST_SHA384 HUKS_DIGEST_SHA512 | 【必选】 | +| HUKS_ALG_HKDF (支持长度: HUKS_AES_KEY_SIZE_128 HUKS_AES_KEY_SIZE_192 HUKS_AES_KEY_SIZE_256) | HUKS_KEY_PURPOSE_DERIVE | HUKS_DIGEST_SHA256 HUKS_DIGEST_SHA384 HUKS_DIGEST_SHA512 | 【必选】 | | HUKS_ALG_PBKDF2 (支持长度: HUKS_AES_KEY_SIZE_128 HUKS_AES_KEY_SIZE_192 HUKS_AES_KEY_SIZE_256) | HUKS_KEY_PURPOSE_DERIVE | HUKS_DIGEST_SHA256 HUKS_DIGEST_SHA384 HUKS_DIGEST_SHA512 | 【必选】 | HksFinish对paramSet中参数的要求: @@ -3588,4 +3668,3 @@ struct Index { } ``` - diff --git a/zh-cn/application-dev/windowmanager/application-window-stage.md b/zh-cn/application-dev/windowmanager/application-window-stage.md index 810980e39b18a114d661e73ee6709896060d95bc..a1e23601da5216b1d9af707e36fcc53611fd8d4d 100644 --- a/zh-cn/application-dev/windowmanager/application-window-stage.md +++ b/zh-cn/application-dev/windowmanager/application-window-stage.md @@ -110,11 +110,9 @@ class MainAbility extends Ability { ### 开发步骤 -1. 创建/获取应用子窗口。 +1. 创建应用子窗口。 通过`createSubWindow`接口创建应用子窗口。 - 通过`getSubWindow`接口获取已创建的应用子窗口。 - 2. 设置子窗口属性。 子窗口创建成功后,可以改变其大小、位置等,还可以根据应用需要设置窗口背景色、亮度等属性。 @@ -139,15 +137,6 @@ class MainAbility extends Ability { } sub_windowClass = data; console.info('Succeeded in creating the subwindow. Data: ' + JSON.stringify(data)); - // 1.获取已创建的应用子窗口。 - windowStage_.getSubWindow((err, data) => { - if (err.code) { - console.error('Failed to obtain the subWindow. Cause:' + JSON.stringify(err)); - return; - } - console.info('Succeeded in obtaining the subWindow. Data: ' + JSON.stringify(data)); - sub_windowClass = data; - }); // 2.子窗口创建成功后,设置子窗口的位置、大小及相关属性等。 sub_windowClass.moveTo(300, 300, (err) => { if (err.code) { diff --git a/zh-cn/device-dev/porting/porting-minichip-subsys-communication.md b/zh-cn/device-dev/porting/porting-minichip-subsys-communication.md index f4bcb06e844dccb0a41732c02006d49dae391124..3397be8423afcfd45df00c15f66930a2434063d1 100644 --- a/zh-cn/device-dev/porting/porting-minichip-subsys-communication.md +++ b/zh-cn/device-dev/porting/porting-minichip-subsys-communication.md @@ -40,9 +40,9 @@ group("wifi") { **表2** wifi_hotspot_config.h -| 文件 | 接口 | 作用 | -| -------- | -------- | -------- | -| wifi_hotspot_config.h | SetBand | 设置该热点的频段。 | +| 接口 | 作用 | +| -------- | -------- | +| SetBand | 设置该热点的频段。 | | GetBand | 获取该热点的频段。 | **表3** wifi_hotspot.h diff --git a/zh-cn/release-notes/api-change/v3.2-beta2/Readme-CN.md b/zh-cn/release-notes/api-change/v3.2-beta2/Readme-CN.md deleted file mode 100644 index 8476b049c4b72aa66a01b0a2f14ead8c112afcec..0000000000000000000000000000000000000000 --- a/zh-cn/release-notes/api-change/v3.2-beta2/Readme-CN.md +++ /dev/null @@ -1,35 +0,0 @@ -# Readme - -本目录记录了OpenHarmony 3.2 Beta2版本相较于OpenHarmony 3.2 Beta1版本的API变化,包括新增、变更、废弃、删除。 - -- JS API差异报告 - - [元能力](js-apidiff-ability.md) - - [无障碍](js-apidiff-accessibility.md) - - [帐号](js-apidiff-account.md) - - [ArkUI](js-apidiff-arkui.md) - - [包管理](js-apidiff-bundle.md) - - [基础通信](js-apidiff-communicate.md) - - [公共基础库](js-apidiff-compiler-and-runtime.md) - - [DFX](js-apidiff-dfx.md) - - [分布式数据管理](js-apidiff-distributed-data.md) - - [事件通知](js-apidiff-event-and-notification.md) - - [文件管理](js-apidiff-file-management.md) - - [位置服务](js-apidiff-geolocation.md) - - [全球化](js-apidiff-global.md) - - [图形图像](js-apidiff-graphic.md) - - [Misc](js-apidiff-misc.md) - - [多模输入](js-apidiff-multi-modal-input.md) - - [多媒体](js-apidiff-multimedia.md) - - [资源调度](js-apidiff-resource-scheduler.md) - - [安全](js-apidiff-security.md) - - [泛Sensor](js-apidiff-sensor.md) - - [分布式软总线](js-apidiff-soft-bus.md) - - [测试框架](js-apidiff-unitest.md) - - [升级服务](js-apidiff-update.md) - - [USB服务](js-apidiff-usb.md) - - [用户身份认证](js-apidiff-user-authentication.md) - - [Web](js-apidiff-web.md) - - [窗口管理](js-apidiff-window.md) -- 变更说明 - - [3.2 beta2相对3.2 beta1变更详细说明](changelog-v3.2-beta2.md) - - [OpenHarmony启用应用沙箱机制-适配指导](application-sandbox-adaptation-guide.md) diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-ability.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-ability.md new file mode 100644 index 0000000000000000000000000000000000000000..615ce7cd876a7dc94eb997cf365353d00c4f2f77 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-ability.md @@ -0,0 +1,1081 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.ability.wantConstant
类名:Action
方法名 or 属性名:ACTION_APP_ACCOUNT_AUTH|@ohos.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.Ability
类名: Ability|@ohos.app.ability.Ability.d.ts| +|新增||模块名: ohos.app.ability.Ability
类名: Ability
方法名 or 属性名: onConfigurationUpdate|@ohos.app.ability.Ability.d.ts| +|新增||模块名: ohos.app.ability.Ability
类名: Ability
方法名 or 属性名: onMemoryLevel|@ohos.app.ability.Ability.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: AbilityConstant|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam
方法名 or 属性名: launchReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchParam
方法名 or 属性名: lastExitReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法名 or 属性名: UNKNOWN|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法名 or 属性名: START_ABILITY|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法名 or 属性名: CALL|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法名 or 属性名: CONTINUATION|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LaunchReason
方法名 or 属性名: APP_RECOVERY|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法名 or 属性名: UNKNOWN|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法名 or 属性名: ABILITY_NOT_RESPONDING|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: LastExitReason
方法名 or 属性名: NORMAL|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法名 or 属性名: AGREE|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法名 or 属性名: REJECT|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnContinueResult
方法名 or 属性名: MISMATCH|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法名 or 属性名: MEMORY_LEVEL_MODERATE|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法名 or 属性名: MEMORY_LEVEL_LOW|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: MemoryLevel
方法名 or 属性名: MEMORY_LEVEL_CRITICAL|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法名 or 属性名: WINDOW_MODE_UNDEFINED|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法名 or 属性名: WINDOW_MODE_FULLSCREEN|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法名 or 属性名: WINDOW_MODE_SPLIT_PRIMARY|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法名 or 属性名: WINDOW_MODE_SPLIT_SECONDARY|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: WindowMode
方法名 or 属性名: WINDOW_MODE_FLOATING|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: ALL_AGREE|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: CONTINUATION_REJECT|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: CONTINUATION_MISMATCH|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: RECOVERY_AGREE|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: RECOVERY_REJECT|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: OnSaveResult
方法名 or 属性名: ALL_REJECT|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: StateType|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: StateType
方法名 or 属性名: CONTINUATION|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.AbilityConstant
类名: StateType
方法名 or 属性名: APP_RECOVERY|@ohos.app.ability.AbilityConstant.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry
方法名 or 属性名: getAbilityDelegator|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: abilityDelegatorRegistry
方法名 or 属性名: getArguments|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法名 or 属性名: UNINITIALIZED|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法名 or 属性名: CREATE|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法名 or 属性名: FOREGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法名 or 属性名: BACKGROUND|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.abilityDelegatorRegistry
类名: AbilityLifecycleState
方法名 or 属性名: DESTROY|@ohos.app.ability.abilityDelegatorRegistry.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onAbilityCreate|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onWindowStageCreate|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onWindowStageActive|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onWindowStageInactive|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onWindowStageDestroy|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onAbilityDestroy|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onAbilityForeground|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onAbilityBackground|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.AbilityLifecycleCallback
类名: AbilityLifecycleCallback
方法名 or 属性名: onAbilityContinue|@ohos.app.ability.AbilityLifecycleCallback.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法名 or 属性名: INITIAL|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法名 or 属性名: FOREGROUND|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法名 or 属性名: BACKGROUND|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法名 or 属性名: FOREGROUNDING|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: AbilityState
方法名 or 属性名: BACKGROUNDING|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: updateConfiguration|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: updateConfiguration|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getAbilityRunningInfos|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getAbilityRunningInfos|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getExtensionRunningInfos|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getExtensionRunningInfos|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getTopAbility|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.abilityManager
类名: abilityManager
方法名 or 属性名: getTopAbility|@ohos.app.ability.abilityManager.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法名 or 属性名: context|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法名 or 属性名: onCreate|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法名 or 属性名: onAcceptWant|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法名 or 属性名: onConfigurationUpdate|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.AbilityStage
类名: AbilityStage
方法名 or 属性名: onMemoryLevel|@ohos.app.ability.AbilityStage.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState
方法名 or 属性名: STATE_CREATE|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState
方法名 or 属性名: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState
方法名 or 属性名: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState
方法名 or 属性名: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ApplicationState
方法名 or 属性名: STATE_DESTROY|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState
方法名 or 属性名: STATE_CREATE|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState
方法名 or 属性名: STATE_FOREGROUND|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState
方法名 or 属性名: STATE_ACTIVE|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState
方法名 or 属性名: STATE_BACKGROUND|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: ProcessState
方法名 or 属性名: STATE_DESTROY|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: on_applicationState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: on_applicationState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: off_applicationState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: off_applicationState|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getForegroundApplications|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getForegroundApplications|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: killProcessWithAccount|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: killProcessWithAccount|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: isRunningInStabilityTest|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: isRunningInStabilityTest|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: killProcessesByBundleName|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: killProcessesByBundleName|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: clearUpApplicationData|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: clearUpApplicationData|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: isRamConstrainedDevice|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: isRamConstrainedDevice|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getAppMemorySize|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getAppMemorySize|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getProcessRunningInformation|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appManager
类名: appManager
方法名 or 属性名: getProcessRunningInformation|@ohos.app.ability.appManager.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: appRecovery|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法名 or 属性名: ALWAYS_RESTART|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法名 or 属性名: CPP_CRASH_NO_RESTART|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法名 or 属性名: JS_CRASH_NO_RESTART|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法名 or 属性名: APP_FREEZE_NO_RESTART|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: RestartFlag
方法名 or 属性名: NO_RESTART|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag
方法名 or 属性名: SAVE_WHEN_ERROR|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveOccasionFlag
方法名 or 属性名: SAVE_WHEN_BACKGROUND|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag
方法名 or 属性名: SAVE_WITH_FILE|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: SaveModeFlag
方法名 or 属性名: SAVE_WITH_SHARED_MEMORY|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法名 or 属性名: enableAppRecovery|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法名 or 属性名: restartApp|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.appRecovery
类名: appRecovery
方法名 or 属性名: saveAppState|@ohos.app.ability.appRecovery.d.ts| +|新增||模块名: ohos.app.ability.common
类名: common|@ohos.app.ability.common.d.ts| +|新增||模块名: ohos.app.ability.common
类名: AreaMode|@ohos.app.ability.common.d.ts| +|新增||模块名: ohos.app.ability.common
类名: AreaMode
方法名 or 属性名: EL1|@ohos.app.ability.common.d.ts| +|新增||模块名: ohos.app.ability.common
类名: AreaMode
方法名 or 属性名: EL2|@ohos.app.ability.common.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: language|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: colorMode|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: direction|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: screenDensity|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: displayId|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.Configuration
类名: Configuration
方法名 or 属性名: hasPointerDevice|@ohos.app.ability.Configuration.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ConfigurationConstant|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法名 or 属性名: COLOR_MODE_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法名 or 属性名: COLOR_MODE_DARK|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ColorMode
方法名 or 属性名: COLOR_MODE_LIGHT|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: Direction|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法名 or 属性名: DIRECTION_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法名 or 属性名: DIRECTION_VERTICAL|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: Direction
方法名 or 属性名: DIRECTION_HORIZONTAL|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_NOT_SET|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_SDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_MDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_LDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_XLDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_XXLDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.ConfigurationConstant
类名: ScreenDensity
方法名 or 属性名: SCREEN_DENSITY_XXXLDPI|@ohos.app.ability.ConfigurationConstant.d.ts| +|新增||模块名: ohos.app.ability.contextConstant
类名: contextConstant|@ohos.app.ability.contextConstant.d.ts| +|新增||模块名: ohos.app.ability.contextConstant
类名: AreaMode|@ohos.app.ability.contextConstant.d.ts| +|新增||模块名: ohos.app.ability.contextConstant
类名: AreaMode
方法名 or 属性名: EL1|@ohos.app.ability.contextConstant.d.ts| +|新增||模块名: ohos.app.ability.contextConstant
类名: AreaMode
方法名 or 属性名: EL2|@ohos.app.ability.contextConstant.d.ts| +|新增||模块名: ohos.app.ability.EnvironmentCallback
类名: EnvironmentCallback|@ohos.app.ability.EnvironmentCallback.d.ts| +|新增||模块名: ohos.app.ability.EnvironmentCallback
类名: EnvironmentCallback
方法名 or 属性名: onConfigurationUpdated|@ohos.app.ability.EnvironmentCallback.d.ts| +|新增||模块名: ohos.app.ability.errorManager
类名: errorManager|@ohos.app.ability.errorManager.d.ts| +|新增||模块名: ohos.app.ability.errorManager
类名: errorManager
方法名 or 属性名: on_error|@ohos.app.ability.errorManager.d.ts| +|新增||模块名: ohos.app.ability.errorManager
类名: errorManager
方法名 or 属性名: off_error|@ohos.app.ability.errorManager.d.ts| +|新增||模块名: ohos.app.ability.errorManager
类名: errorManager
方法名 or 属性名: off_error|@ohos.app.ability.errorManager.d.ts| +|新增||模块名: ohos.app.ability.ExtensionAbility
类名: ExtensionAbility|@ohos.app.ability.ExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: on_mission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: off_mission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: off_mission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionInfo|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionInfo|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionInfos|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionInfos|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionSnapShot|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getMissionSnapShot|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getLowResolutionMissionSnapShot|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: getLowResolutionMissionSnapShot|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: lockMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: lockMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: unlockMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: unlockMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: clearMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: clearMission|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: clearAllMissions|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: clearAllMissions|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: moveMissionToFront|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: moveMissionToFront|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.missionManager
类名: missionManager
方法名 or 属性名: moveMissionToFront|@ohos.app.ability.missionManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: quickFixManager|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: moduleName|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: originHapHash|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: quickFixFilePath|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleName|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleVersionCode|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleVersionName|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: quickFixVersionCode|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: quickFixVersionName|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: hapModuleQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法名 or 属性名: applyQuickFix|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法名 or 属性名: applyQuickFix|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法名 or 属性名: getApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.quickFixManager
类名: quickFixManager
方法名 or 属性名: getApplicationQuickFixInfo|@ohos.app.ability.quickFixManager.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: context|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onCreate|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onDestroy|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onRequest|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onConnect|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onDisconnect|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onReconnect|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onConfigurationUpdate|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.ServiceExtensionAbility
类名: ServiceExtensionAbility
方法名 or 属性名: onDump|@ohos.app.ability.ServiceExtensionAbility.d.ts| +|新增||模块名: ohos.app.ability.StartOptions
类名: StartOptions|@ohos.app.ability.StartOptions.d.ts| +|新增||模块名: ohos.app.ability.StartOptions
类名: StartOptions
方法名 or 属性名: windowMode|@ohos.app.ability.StartOptions.d.ts| +|新增||模块名: ohos.app.ability.StartOptions
类名: StartOptions
方法名 or 属性名: displayId|@ohos.app.ability.StartOptions.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: OnReleaseCallback|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: OnReleaseCallback
方法名 or 属性名: OnReleaseCallback|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: CalleeCallback|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: CalleeCallback
方法名 or 属性名: CalleeCallback|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: call|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: callWithResult|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: release|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: onRelease|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: on_release|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: off_release|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Caller
方法名 or 属性名: off_release|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Callee|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Callee
方法名 or 属性名: on|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: Callee
方法名 or 属性名: off|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: context|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: launchWant|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: lastRequestWant|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: callee|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onCreate|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onWindowStageCreate|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onWindowStageDestroy|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onWindowStageRestore|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onDestroy|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onForeground|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onBackground|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onContinue|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onNewWant|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onDump|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.UIAbility
类名: UIAbility
方法名 or 属性名: onSaveState|@ohos.app.ability.UIAbility.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: deviceId|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: bundleName|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: abilityName|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: uri|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: type|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: flags|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: action|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: parameters|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: entities|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.Want
类名: Want
方法名 or 属性名: moduleName|@ohos.app.ability.Want.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getBundleName|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getBundleName|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getUid|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getUid|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getWant|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getWant|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: cancel|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: cancel|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: trigger|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: trigger|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: equal|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: equal|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getWantAgent|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getWantAgent|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getOperationType|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: wantAgent
方法名 or 属性名: getOperationType|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: ONE_TIME_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: NO_BUILD_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: CANCEL_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: UPDATE_PRESENT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: CONSTANT_FLAG|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: REPLACE_ELEMENT|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: REPLACE_ACTION|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: REPLACE_URI|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: REPLACE_ENTITIES|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: WantAgentFlags
方法名 or 属性名: REPLACE_BUNDLE|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType
方法名 or 属性名: UNKNOWN_TYPE|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType
方法名 or 属性名: START_ABILITY|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType
方法名 or 属性名: START_ABILITIES|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType
方法名 or 属性名: START_SERVICE|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: OperationType
方法名 or 属性名: SEND_COMMON_EVENT|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法名 or 属性名: info|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法名 or 属性名: want|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法名 or 属性名: finalCode|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法名 or 属性名: finalData|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantAgent
类名: CompleteData
方法名 or 属性名: extraInfo|@ohos.app.ability.wantAgent.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: wantConstant|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_HOME|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_DIAL|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SEARCH|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_WIRELESS_SETTINGS|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_MANAGE_APPLICATIONS_SETTINGS|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_APPLICATION_DETAILS_SETTINGS|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SET_ALARM|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SHOW_ALARMS|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SNOOZE_ALARM|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_DISMISS_ALARM|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_DISMISS_TIMER|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SEND_SMS|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_CHOOSE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_IMAGE_CAPTURE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_VIDEO_CAPTURE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SELECT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SEND_DATA|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SEND_MULTIPLE_DATA|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_SCAN_MEDIA_FILE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_VIEW_DATA|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_EDIT_DATA|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: INTENT_PARAMS_INTENT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: INTENT_PARAMS_TITLE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_FILE_SELECT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: PARAMS_STREAM|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_APP_ACCOUNT_AUTH|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_MARKET_DOWNLOAD|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: ACTION_MARKET_CROWDTEST|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: DLP_PARAMS_SANDBOX|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: DLP_PARAMS_BUNDLE_NAME|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: DLP_PARAMS_MODULE_NAME|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: DLP_PARAMS_ABILITY_NAME|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Action
方法名 or 属性名: DLP_PARAMS_INDEX|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity
方法名 or 属性名: ENTITY_DEFAULT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity
方法名 or 属性名: ENTITY_HOME|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity
方法名 or 属性名: ENTITY_VOICE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity
方法名 or 属性名: ENTITY_BROWSABLE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Entity
方法名 or 属性名: ENTITY_VIDEO|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_AUTH_READ_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_AUTH_WRITE_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_FORWARD_RESULT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_CONTINUATION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_NOT_OHOS_COMPONENT|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_FORM_ENABLED|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_AUTH_PERSISTABLE_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_AUTH_PREFIX_URI_PERMISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITYSLICE_MULTI_DEVICE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_START_FOREGROUND_ABILITY|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_CONTINUATION_REVERSIBLE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_INSTALL_ON_DEMAND|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_INSTALL_WITH_BACKGROUND_MODE|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_CLEAR_MISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_NEW_MISSION|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.ability.wantConstant
类名: Flags
方法名 or 属性名: FLAG_ABILITY_MISSION_TOP|@ohos.app.ability.wantConstant.d.ts| +|新增||模块名: ohos.app.form.formBindingData
类名: formBindingData|@ohos.app.form.formBindingData.d.ts| +|新增||模块名: ohos.app.form.formBindingData
类名: formBindingData
方法名 or 属性名: createFormBindingData|@ohos.app.form.formBindingData.d.ts| +|新增||模块名: ohos.app.form.formBindingData
类名: FormBindingData|@ohos.app.form.formBindingData.d.ts| +|新增||模块名: ohos.app.form.formBindingData
类名: FormBindingData
方法名 or 属性名: data|@ohos.app.form.formBindingData.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: context|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onAddForm|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onCastToNormalForm|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onUpdateForm|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onChangeFormVisibility|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onFormEvent|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onRemoveForm|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onConfigurationUpdate|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onAcquireFormState|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.FormExtensionAbility
类名: FormExtensionAbility
方法名 or 属性名: onShareForm|@ohos.app.form.FormExtensionAbility.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: deleteForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: deleteForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: releaseForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: releaseForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: releaseForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: requestForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: requestForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: castToNormalForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: castToNormalForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyVisibleForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyVisibleForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyInvisibleForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyInvisibleForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: enableFormsUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: enableFormsUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: disableFormsUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: disableFormsUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: isSystemReady|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: isSystemReady|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: getAllFormsInfo|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: getAllFormsInfo|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: getFormsInfo|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: getFormsInfo|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: getFormsInfo|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: deleteInvalidForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: deleteInvalidForms|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: acquireFormState|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: acquireFormState|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: on_formUninstall|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: off_formUninstall|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsVisible|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsVisible|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsEnableUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsEnableUpdate|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: shareForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: shareForm|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsPrivacyProtected|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formHost
类名: formHost
方法名 or 属性名: notifyFormsPrivacyProtected|@ohos.app.form.formHost.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: formInfo|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: bundleName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: moduleName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: abilityName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: name|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: description|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: type|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: jsComponentName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: colorMode|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: isDefault|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: updateEnabled|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: formVisibleNotify|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: relatedBundleName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: scheduledUpdateTime|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: formConfigAbility|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: updateDuration|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: defaultDimension|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: supportDimensions|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfo
方法名 or 属性名: customizeData|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormType|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormType
方法名 or 属性名: JS|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormType
方法名 or 属性名: eTS|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: ColorMode|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: ColorMode
方法名 or 属性名: MODE_AUTO|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: ColorMode
方法名 or 属性名: MODE_DARK|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: ColorMode
方法名 or 属性名: MODE_LIGHT|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormStateInfo|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormStateInfo
方法名 or 属性名: formState|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormStateInfo
方法名 or 属性名: want|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormState|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormState
方法名 or 属性名: UNKNOWN|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormState
方法名 or 属性名: DEFAULT|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormState
方法名 or 属性名: READY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: IDENTITY_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: DIMENSION_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: NAME_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: MODULE_NAME_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: WIDTH_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: HEIGHT_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: TEMPORARY_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: BUNDLE_NAME_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: ABILITY_NAME_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormParam
方法名 or 属性名: DEVICE_ID_KEY|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfoFilter|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormInfoFilter
方法名 or 属性名: moduleName|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension
方法名 or 属性名: Dimension_1_2|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension
方法名 or 属性名: Dimension_2_2|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension
方法名 or 属性名: Dimension_2_4|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension
方法名 or 属性名: Dimension_4_4|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: FormDimension
方法名 or 属性名: Dimension_2_1|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: VisibilityType|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: VisibilityType
方法名 or 属性名: FORM_VISIBLE|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formInfo
类名: VisibilityType
方法名 or 属性名: FORM_INVISIBLE|@ohos.app.form.formInfo.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: setFormNextRefreshTime|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: setFormNextRefreshTime|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: updateForm|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: updateForm|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: getFormsInfo|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: getFormsInfo|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: getFormsInfo|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: requestPublishForm|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: requestPublishForm|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: requestPublishForm|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: isRequestPublishFormSupported|@ohos.app.form.formProvider.d.ts| +|新增||模块名: ohos.app.form.formProvider
类名: formProvider
方法名 or 属性名: isRequestPublishFormSupported|@ohos.app.form.formProvider.d.ts| +|新增||模块名:ohos.application.Ability
类名:Ability
方法名 or 属性名:onSaveState|@ohos.application.Ability.d.ts| +|新增||模块名:ohos.application.AbilityConstant
类名:LaunchReason
方法名 or 属性名:APP_RECOVERY|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:ALL_AGREE|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:CONTINUATION_REJECT|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:CONTINUATION_MISMATCH|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:RECOVERY_AGREE|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:RECOVERY_REJECT|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: OnSaveResult
方法名 or 属性名:ALL_REJECT|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: StateType|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: StateType
方法名 or 属性名:CONTINUATION|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.AbilityConstant
类名: StateType
方法名 or 属性名:APP_RECOVERY|@ohos.application.AbilityConstant.d.ts| +|新增||模块名: ohos.application.ExtensionAbility
类名: ExtensionAbility|@ohos.application.ExtensionAbility.d.ts| +|新增||模块名: ohos.application.ExtensionAbility
类名: ExtensionAbility
方法名 or 属性名: onConfigurationUpdated|@ohos.application.ExtensionAbility.d.ts| +|新增||模块名: ohos.application.ExtensionAbility
类名: ExtensionAbility
方法名 or 属性名: onMemoryLevel|@ohos.application.ExtensionAbility.d.ts| +|新增||模块名:ohos.application.formHost
类名:formHost
方法名 or 属性名:notifyFormsPrivacyProtected|@ohos.application.formHost.d.ts| +|新增||模块名:ohos.application.formHost
类名:formHost
方法名 or 属性名:notifyFormsPrivacyProtected|@ohos.application.formHost.d.ts| +|新增||模块名:ohos.application.formInfo
类名:FormType
方法名 or 属性名:eTS|@ohos.application.formInfo.d.ts| +|新增||模块名:ohos.application.formInfo
类名:VisibilityType|@ohos.application.formInfo.d.ts| +|新增||模块名:ohos.application.formInfo
类名:VisibilityType
方法名 or 属性名:FORM_VISIBLE|@ohos.application.formInfo.d.ts| +|新增||模块名:ohos.application.formInfo
类名:VisibilityType
方法名 or 属性名:FORM_INVISIBLE|@ohos.application.formInfo.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:registerContinuation|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:registerContinuation|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:registerContinuation|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:unregisterContinuation|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:unregisterContinuation|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:updateContinuationState|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:updateContinuationState|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.continuation.continuationManager
类名:continuationManager
方法名 or 属性名:startContinuationDeviceManager|@ohos.continuation.continuationManager.d.ts| +|新增||模块名:ohos.distributedMissionManager
类名:distributedMissionManager
方法名 or 属性名:continueMission|@ohos.distributedMissionManager.d.ts| +|新增||模块名:ohos.distributedMissionManager
类名:distributedMissionManager
方法名 or 属性名:continueMission|@ohos.distributedMissionManager.d.ts| +|新增||模块名:AbilityContext
类名:AbilityContext
方法名 or 属性名:connectServiceExtensionAbility|AbilityContext.d.ts| +|新增||模块名:AbilityContext
类名:AbilityContext
方法名 or 属性名:connectServiceExtensionAbilityWithAccount|AbilityContext.d.ts| +|新增||模块名:AbilityContext
类名:AbilityContext
方法名 or 属性名:disconnectServiceExtensionAbility|AbilityContext.d.ts| +|新增||模块名:AbilityContext
类名:AbilityContext
方法名 or 属性名:disconnectServiceExtensionAbility|AbilityContext.d.ts| +|新增||模块名:abilityDelegator
类名:AbilityDelegator|abilityDelegator.d.ts| +|新增||方法名 or 属性名:waitAbilityMonitor
函数:waitAbilityMonitor(monitor: AbilityMonitor, callback: AsyncCallback): void;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:waitAbilityMonitor
函数:waitAbilityMonitor(monitor: AbilityMonitor, timeout: number, callback: AsyncCallback): void;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:waitAbilityMonitor
函数:waitAbilityMonitor(monitor: AbilityMonitor, timeout?: number): Promise;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:getAbilityState
函数:getAbilityState(ability: UIAbility): number;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:getCurrentTopAbility
函数:getCurrentTopAbility(callback: AsyncCallback): void;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:getCurrentTopAbility
函数:getCurrentTopAbility(): Promise|abilityDelegator.d.ts| +|新增||方法名 or 属性名:doAbilityForeground
函数:doAbilityForeground(ability: UIAbility, callback: AsyncCallback): void;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:doAbilityForeground
函数:doAbilityForeground(ability: UIAbility): Promise;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:doAbilityBackground
函数:doAbilityBackground(ability: UIAbility, callback: AsyncCallback): void;|abilityDelegator.d.ts| +|新增||方法名 or 属性名:doAbilityBackground
函数:doAbilityBackground(ability: UIAbility): Promise;|abilityDelegator.d.ts| +|新增||模块名:abilityMonitor
类名:AbilityMonitor
方法名 or 属性名:moduleName|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onAbilityCreate
函数:onAbilityCreate?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onAbilityForeground
函数:onAbilityForeground?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onAbilityBackground
函数:onAbilityBackground?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onAbilityDestroy
函数:onAbilityDestroy?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onWindowStageCreate
函数:onWindowStageCreate?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onWindowStageRestore
函数:onWindowStageRestore?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||方法名 or 属性名:onWindowStageDestroy
函数:onWindowStageDestroy?:(ability: UIAbility) => void;|abilityMonitor.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:on_abilityLifecycle|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:off_abilityLifecycle|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:off_abilityLifecycle|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:on_environment|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:off_environment|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:off_environment|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:getProcessRunningInformation|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:getProcessRunningInformation|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:killProcessesBySelf|ApplicationContext.d.ts| +|新增||模块名:ApplicationContext
类名:ApplicationContext
方法名 or 属性名:killProcessesBySelf|ApplicationContext.d.ts| +|新增||模块名: ContinueCallback
类名: ContinueCallback|ContinueCallback.d.ts| +|新增||模块名: ContinueCallback
类名: ContinueCallback
方法名 or 属性名: onContinueDone|ContinueCallback.d.ts| +|新增||模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo|ContinueDeviceInfo.d.ts| +|新增||模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法名 or 属性名: srcDeviceId|ContinueDeviceInfo.d.ts| +|新增||模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法名 or 属性名: dstDeviceId|ContinueDeviceInfo.d.ts| +|新增||模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法名 or 属性名: missionId|ContinueDeviceInfo.d.ts| +|新增||模块名: ContinueDeviceInfo
类名: ContinueDeviceInfo
方法名 or 属性名: wantParam|ContinueDeviceInfo.d.ts| +|新增||模块名: MissionListener
类名: MissionListener
方法名 or 属性名: onMissionLabelUpdated|MissionListener.d.ts| +|新增||模块名:ServiceExtensionContext
类名:ServiceExtensionContext
方法名 or 属性名:connectServiceExtensionAbility|ServiceExtensionContext.d.ts| +|新增||模块名:ServiceExtensionContext
类名:ServiceExtensionContext
方法名 or 属性名:connectServiceExtensionAbilityWithAccount|ServiceExtensionContext.d.ts| +|新增||模块名:ServiceExtensionContext
类名:ServiceExtensionContext
方法名 or 属性名:disconnectServiceExtensionAbility|ServiceExtensionContext.d.ts| +|新增||模块名:ServiceExtensionContext
类名:ServiceExtensionContext
方法名 or 属性名:disconnectServiceExtensionAbility|ServiceExtensionContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: abilityInfo|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: currentHapModuleInfo|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: config|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityByCall|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResult|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResult|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResult|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResultWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResultWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startAbilityForResultWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: startServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: stopServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: stopServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: stopServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: stopServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: terminateSelf|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: terminateSelf|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: terminateSelfWithResult|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: terminateSelfWithResult|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: connectServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: connectServiceExtensionAbilityWithAccount|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: disconnectServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: disconnectServiceExtensionAbility|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: setMissionLabel|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: setMissionLabel|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: setMissionIcon|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: setMissionIcon|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: requestPermissionsFromUser|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: requestPermissionsFromUser|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: restoreWindowStage|UIAbilityContext.d.ts| +|新增||模块名: UIAbilityContext
类名: UIAbilityContext
方法名 or 属性名: isTerminating|UIAbilityContext.d.ts| +|删除|模块名: ohos.application.context
类名: AreaMode||@ohos.application.context.d.ts| +|删除|模块名: ohos.application.context
类名: AreaMode
方法名 or 属性名:EL1||@ohos.application.context.d.ts| +|删除|模块名: ohos.application.context
类名: AreaMode
方法名 or 属性名:EL2||@ohos.application.context.d.ts| +|删除|模块名:ohos.application.formInfo
类名:VisibilityType||@ohos.application.formInfo.d.ts| +|删除|模块名:ohos.application.formInfo
类名:VisibilityType
方法名 or 属性名:FORM_VISIBLE||@ohos.application.formInfo.d.ts| +|删除|模块名:ohos.application.formInfo
类名:VisibilityType
方法名 or 属性名:FORM_INVISIBLE||@ohos.application.formInfo.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: quickFixManager||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: HapModuleQuickFixInfo||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: moduleName||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: originHapHash||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: HapModuleQuickFixInfo
方法名 or 属性名: quickFixFilePath||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleName||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleVersionCode||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: bundleVersionName||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: quickFixVersionCode||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: quickFixVersionName||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: ApplicationQuickFixInfo
方法名 or 属性名: hapModuleQuickFixInfo||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: quickFixManager
方法名 or 属性名: applyQuickFix||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: quickFixManager
方法名 or 属性名: applyQuickFix||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: quickFixManager
方法名 or 属性名: getApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts| +|删除|模块名: ohos.application.quickFixManager
类名: quickFixManager
方法名 or 属性名: getApplicationQuickFixInfo||@ohos.application.quickFixManager.d.ts| +|model有变化|类名:ability
model:@StageModelOnly|类名:ability
model:@FAModelOnly|@ohos.ability.ability.d.ts| +|废弃版本有变化|类名:wantConstant
废弃版本:|类名:wantConstant
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:Action
废弃版本:|类名:Action
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_HOME
废弃版本:|方法名 or 属性名:ACTION_HOME
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_DIAL
废弃版本:|方法名 or 属性名:ACTION_DIAL
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SEARCH
废弃版本:|方法名 or 属性名:ACTION_SEARCH
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_WIRELESS_SETTINGS
废弃版本:|方法名 or 属性名:ACTION_WIRELESS_SETTINGS
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_MANAGE_APPLICATIONS_SETTINGS
废弃版本:|方法名 or 属性名:ACTION_MANAGE_APPLICATIONS_SETTINGS
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_APPLICATION_DETAILS_SETTINGS
废弃版本:|方法名 or 属性名:ACTION_APPLICATION_DETAILS_SETTINGS
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SET_ALARM
废弃版本:|方法名 or 属性名:ACTION_SET_ALARM
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SHOW_ALARMS
废弃版本:|方法名 or 属性名:ACTION_SHOW_ALARMS
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SNOOZE_ALARM
废弃版本:|方法名 or 属性名:ACTION_SNOOZE_ALARM
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_DISMISS_ALARM
废弃版本:|方法名 or 属性名:ACTION_DISMISS_ALARM
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_DISMISS_TIMER
废弃版本:|方法名 or 属性名:ACTION_DISMISS_TIMER
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SEND_SMS
废弃版本:|方法名 or 属性名:ACTION_SEND_SMS
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_CHOOSE
废弃版本:|方法名 or 属性名:ACTION_CHOOSE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_IMAGE_CAPTURE
废弃版本:|方法名 or 属性名:ACTION_IMAGE_CAPTURE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_VIDEO_CAPTURE
废弃版本:|方法名 or 属性名:ACTION_VIDEO_CAPTURE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SELECT
废弃版本:|方法名 or 属性名:ACTION_SELECT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SEND_DATA
废弃版本:|方法名 or 属性名:ACTION_SEND_DATA
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SEND_MULTIPLE_DATA
废弃版本:|方法名 or 属性名:ACTION_SEND_MULTIPLE_DATA
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_SCAN_MEDIA_FILE
废弃版本:|方法名 or 属性名:ACTION_SCAN_MEDIA_FILE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_VIEW_DATA
废弃版本:|方法名 or 属性名:ACTION_VIEW_DATA
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_EDIT_DATA
废弃版本:|方法名 or 属性名:ACTION_EDIT_DATA
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:INTENT_PARAMS_INTENT
废弃版本:|方法名 or 属性名:INTENT_PARAMS_INTENT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:INTENT_PARAMS_TITLE
废弃版本:|方法名 or 属性名:INTENT_PARAMS_TITLE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_FILE_SELECT
废弃版本:|方法名 or 属性名:ACTION_FILE_SELECT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:PARAMS_STREAM
废弃版本:|方法名 or 属性名:PARAMS_STREAM
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_APP_ACCOUNT_OAUTH
废弃版本:|方法名 or 属性名:ACTION_APP_ACCOUNT_OAUTH
废弃版本:9
代替接口:wantConstant.Action|@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_MARKET_DOWNLOAD
废弃版本:|方法名 or 属性名:ACTION_MARKET_DOWNLOAD
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_MARKET_CROWDTEST
废弃版本:|方法名 or 属性名:ACTION_MARKET_CROWDTEST
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DLP_PARAMS_SANDBOX
废弃版本:|方法名 or 属性名:DLP_PARAMS_SANDBOX
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DLP_PARAMS_BUNDLE_NAME
废弃版本:|方法名 or 属性名:DLP_PARAMS_BUNDLE_NAME
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DLP_PARAMS_MODULE_NAME
废弃版本:|方法名 or 属性名:DLP_PARAMS_MODULE_NAME
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DLP_PARAMS_ABILITY_NAME
废弃版本:|方法名 or 属性名:DLP_PARAMS_ABILITY_NAME
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DLP_PARAMS_INDEX
废弃版本:|方法名 or 属性名:DLP_PARAMS_INDEX
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:Entity
废弃版本:|类名:Entity
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ENTITY_DEFAULT
废弃版本:|方法名 or 属性名:ENTITY_DEFAULT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ENTITY_HOME
废弃版本:|方法名 or 属性名:ENTITY_HOME
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ENTITY_VOICE
废弃版本:|方法名 or 属性名:ENTITY_VOICE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ENTITY_BROWSABLE
废弃版本:|方法名 or 属性名:ENTITY_BROWSABLE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ENTITY_VIDEO
废弃版本:|方法名 or 属性名:ENTITY_VIDEO
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:Flags
废弃版本:|类名:Flags
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_AUTH_READ_URI_PERMISSION
废弃版本:|方法名 or 属性名:FLAG_AUTH_READ_URI_PERMISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_AUTH_WRITE_URI_PERMISSION
废弃版本:|方法名 or 属性名:FLAG_AUTH_WRITE_URI_PERMISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_FORWARD_RESULT
废弃版本:|方法名 or 属性名:FLAG_ABILITY_FORWARD_RESULT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_CONTINUATION
废弃版本:|方法名 or 属性名:FLAG_ABILITY_CONTINUATION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_NOT_OHOS_COMPONENT
废弃版本:|方法名 or 属性名:FLAG_NOT_OHOS_COMPONENT
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_FORM_ENABLED
废弃版本:|方法名 or 属性名:FLAG_ABILITY_FORM_ENABLED
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_AUTH_PERSISTABLE_URI_PERMISSION
废弃版本:|方法名 or 属性名:FLAG_AUTH_PERSISTABLE_URI_PERMISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_AUTH_PREFIX_URI_PERMISSION
废弃版本:|方法名 or 属性名:FLAG_AUTH_PREFIX_URI_PERMISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITYSLICE_MULTI_DEVICE
废弃版本:|方法名 or 属性名:FLAG_ABILITYSLICE_MULTI_DEVICE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_START_FOREGROUND_ABILITY
废弃版本:|方法名 or 属性名:FLAG_START_FOREGROUND_ABILITY
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_CONTINUATION_REVERSIBLE
废弃版本:|方法名 or 属性名:FLAG_ABILITY_CONTINUATION_REVERSIBLE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_INSTALL_ON_DEMAND
废弃版本:|方法名 or 属性名:FLAG_INSTALL_ON_DEMAND
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_INSTALL_WITH_BACKGROUND_MODE
废弃版本:|方法名 or 属性名:FLAG_INSTALL_WITH_BACKGROUND_MODE
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_CLEAR_MISSION
废弃版本:|方法名 or 属性名:FLAG_ABILITY_CLEAR_MISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_NEW_MISSION
废弃版本:|方法名 or 属性名:FLAG_ABILITY_NEW_MISSION
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:FLAG_ABILITY_MISSION_TOP
废弃版本:|方法名 or 属性名:FLAG_ABILITY_MISSION_TOP
废弃版本:9
代替接口:ohos.app.ability.wantConstant |@ohos.ability.wantConstant.d.ts| +|废弃版本有变化|类名:OnReleaseCallBack
废弃版本:|类名:OnReleaseCallBack
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:OnReleaseCallBack
废弃版本:|方法名 or 属性名:OnReleaseCallBack
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|类名:CalleeCallBack
废弃版本:|类名:CalleeCallBack
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:CalleeCallBack
废弃版本:|方法名 or 属性名:CalleeCallBack
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|类名:Caller
废弃版本:|类名:Caller
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:call
废弃版本:|方法名 or 属性名:call
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:callWithResult
废弃版本:|方法名 or 属性名:callWithResult
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:release
废弃版本:|方法名 or 属性名:release
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onRelease
废弃版本:|方法名 or 属性名:onRelease
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|类名:Callee
废弃版本:|类名:Callee
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:on
废弃版本:|方法名 or 属性名:on
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:off
废弃版本:|方法名 or 属性名:off
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|类名:Ability
废弃版本:|类名:Ability
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:context
废弃版本:|方法名 or 属性名:context
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:launchWant
废弃版本:|方法名 or 属性名:launchWant
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:lastRequestWant
废弃版本:|方法名 or 属性名:lastRequestWant
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:callee
废弃版本:|方法名 or 属性名:callee
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onCreate
废弃版本:|方法名 or 属性名:onCreate
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageCreate
废弃版本:|方法名 or 属性名:onWindowStageCreate
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageDestroy
废弃版本:|方法名 or 属性名:onWindowStageDestroy
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageRestore
废弃版本:|方法名 or 属性名:onWindowStageRestore
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onDestroy
废弃版本:|方法名 or 属性名:onDestroy
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onForeground
废弃版本:|方法名 or 属性名:onForeground
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onBackground
废弃版本:|方法名 or 属性名:onBackground
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onContinue
废弃版本:|方法名 or 属性名:onContinue
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onNewWant
废弃版本:|方法名 or 属性名:onNewWant
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onConfigurationUpdated
废弃版本:|方法名 or 属性名:onConfigurationUpdated
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:dump
废弃版本:|方法名 or 属性名:dump
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|方法名 or 属性名:onMemoryLevel
废弃版本:|方法名 or 属性名:onMemoryLevel
废弃版本:9
代替接口:ohos.app.ability.UIAbility |@ohos.application.Ability.d.ts| +|废弃版本有变化|类名:AbilityConstant
废弃版本:|类名:AbilityConstant
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:LaunchParam
废弃版本:|类名:LaunchParam
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:launchReason
废弃版本:|方法名 or 属性名:launchReason
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:lastExitReason
废弃版本:|方法名 or 属性名:lastExitReason
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:LaunchReason
废弃版本:|类名:LaunchReason
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:START_ABILITY
废弃版本:|方法名 or 属性名:START_ABILITY
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:CALL
废弃版本:|方法名 or 属性名:CALL
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:CONTINUATION
废弃版本:|方法名 or 属性名:CONTINUATION
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:LastExitReason
废弃版本:|类名:LastExitReason
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:ABILITY_NOT_RESPONDING
废弃版本:|方法名 or 属性名:ABILITY_NOT_RESPONDING
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:NORMAL
废弃版本:|方法名 or 属性名:NORMAL
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:OnContinueResult
废弃版本:|类名:OnContinueResult
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:AGREE
废弃版本:|方法名 or 属性名:AGREE
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:REJECT
废弃版本:|方法名 or 属性名:REJECT
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:MISMATCH
废弃版本:|方法名 or 属性名:MISMATCH
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:MemoryLevel
废弃版本:|类名:MemoryLevel
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:MEMORY_LEVEL_MODERATE
废弃版本:|方法名 or 属性名:MEMORY_LEVEL_MODERATE
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:MEMORY_LEVEL_LOW
废弃版本:|方法名 or 属性名:MEMORY_LEVEL_LOW
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:MEMORY_LEVEL_CRITICAL
废弃版本:|方法名 or 属性名:MEMORY_LEVEL_CRITICAL
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:WindowMode
废弃版本:|类名:WindowMode
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:WINDOW_MODE_UNDEFINED
废弃版本:|方法名 or 属性名:WINDOW_MODE_UNDEFINED
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:WINDOW_MODE_FULLSCREEN
废弃版本:|方法名 or 属性名:WINDOW_MODE_FULLSCREEN
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:WINDOW_MODE_SPLIT_PRIMARY
废弃版本:|方法名 or 属性名:WINDOW_MODE_SPLIT_PRIMARY
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:WINDOW_MODE_SPLIT_SECONDARY
废弃版本:|方法名 or 属性名:WINDOW_MODE_SPLIT_SECONDARY
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:WINDOW_MODE_FLOATING
废弃版本:|方法名 or 属性名:WINDOW_MODE_FLOATING
废弃版本:9
代替接口:ohos.app.ability.AbilityConstant |@ohos.application.AbilityConstant.d.ts| +|废弃版本有变化|类名:abilityDelegatorRegistry
废弃版本:|类名:abilityDelegatorRegistry
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityDelegator
废弃版本:|方法名 or 属性名:getAbilityDelegator
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:getArguments
废弃版本:|方法名 or 属性名:getArguments
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|类名:AbilityLifecycleState
废弃版本:|类名:AbilityLifecycleState
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:UNINITIALIZED
废弃版本:|方法名 or 属性名:UNINITIALIZED
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:CREATE
废弃版本:|方法名 or 属性名:CREATE
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:FOREGROUND
废弃版本:|方法名 or 属性名:FOREGROUND
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:BACKGROUND
废弃版本:|方法名 or 属性名:BACKGROUND
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|方法名 or 属性名:DESTROY
废弃版本:|方法名 or 属性名:DESTROY
废弃版本:9
代替接口:ohos.app.ability.abilityDelegatorRegistry |@ohos.application.abilityDelegatorRegistry.d.ts| +|废弃版本有变化|类名:AbilityLifecycleCallback
废弃版本:|类名:AbilityLifecycleCallback
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onAbilityCreate
废弃版本:|方法名 or 属性名:onAbilityCreate
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageCreate
废弃版本:|方法名 or 属性名:onWindowStageCreate
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageActive
废弃版本:|方法名 or 属性名:onWindowStageActive
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageInactive
废弃版本:|方法名 or 属性名:onWindowStageInactive
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onWindowStageDestroy
废弃版本:|方法名 or 属性名:onWindowStageDestroy
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onAbilityDestroy
废弃版本:|方法名 or 属性名:onAbilityDestroy
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onAbilityForeground
废弃版本:|方法名 or 属性名:onAbilityForeground
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onAbilityBackground
废弃版本:|方法名 or 属性名:onAbilityBackground
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onAbilityContinue
废弃版本:|方法名 or 属性名:onAbilityContinue
废弃版本:9
代替接口:ohos.app.ability.AbilityLifecycleCallback |@ohos.application.AbilityLifecycleCallback.d.ts| +|废弃版本有变化|类名:abilityManager
废弃版本:|类名:abilityManager
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|类名:AbilityState
废弃版本:|类名:AbilityState
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:INITIAL
废弃版本:|方法名 or 属性名:INITIAL
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:FOREGROUND
废弃版本:|方法名 or 属性名:FOREGROUND
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:BACKGROUND
废弃版本:|方法名 or 属性名:BACKGROUND
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:FOREGROUNDING
废弃版本:|方法名 or 属性名:FOREGROUNDING
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:BACKGROUNDING
废弃版本:|方法名 or 属性名:BACKGROUNDING
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:updateConfiguration
废弃版本:|方法名 or 属性名:updateConfiguration
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityRunningInfos
废弃版本:|方法名 or 属性名:getAbilityRunningInfos
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getExtensionRunningInfos
废弃版本:|方法名 or 属性名:getExtensionRunningInfos
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getTopAbility
废弃版本:|方法名 or 属性名:getTopAbility
废弃版本:9
代替接口:ohos.app.ability.abilityManager |@ohos.application.abilityManager.d.ts| +|废弃版本有变化|类名:AbilityStage
废弃版本:|类名:AbilityStage
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|方法名 or 属性名:context
废弃版本:|方法名 or 属性名:context
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|方法名 or 属性名:onCreate
废弃版本:|方法名 or 属性名:onCreate
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|方法名 or 属性名:onAcceptWant
废弃版本:|方法名 or 属性名:onAcceptWant
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|方法名 or 属性名:onConfigurationUpdated
废弃版本:|方法名 or 属性名:onConfigurationUpdated
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|方法名 or 属性名:onMemoryLevel
废弃版本:|方法名 or 属性名:onMemoryLevel
废弃版本:9
代替接口:ohos.app.ability.AbilityStage |@ohos.application.AbilityStage.d.ts| +|废弃版本有变化|类名:appManager
废弃版本:|类名:appManager
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:ApplicationState
废弃版本:|类名:ApplicationState
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_CREATE
废弃版本:|方法名 or 属性名:STATE_CREATE
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_FOREGROUND
废弃版本:|方法名 or 属性名:STATE_FOREGROUND
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_ACTIVE
废弃版本:|方法名 or 属性名:STATE_ACTIVE
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_BACKGROUND
废弃版本:|方法名 or 属性名:STATE_BACKGROUND
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_DESTROY
废弃版本:|方法名 or 属性名:STATE_DESTROY
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:ProcessState
废弃版本:|类名:ProcessState
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_CREATE
废弃版本:|方法名 or 属性名:STATE_CREATE
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_FOREGROUND
废弃版本:|方法名 or 属性名:STATE_FOREGROUND
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_ACTIVE
废弃版本:|方法名 or 属性名:STATE_ACTIVE
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_BACKGROUND
废弃版本:|方法名 or 属性名:STATE_BACKGROUND
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:STATE_DESTROY
废弃版本:|方法名 or 属性名:STATE_DESTROY
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:registerApplicationStateObserver
废弃版本:|方法名 or 属性名:registerApplicationStateObserver
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:registerApplicationStateObserver
废弃版本:|方法名 or 属性名:registerApplicationStateObserver
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:unregisterApplicationStateObserver
废弃版本:|方法名 or 属性名:unregisterApplicationStateObserver
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getForegroundApplications
废弃版本:|方法名 or 属性名:getForegroundApplications
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:killProcessWithAccount
废弃版本:|方法名 or 属性名:killProcessWithAccount
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:isRunningInStabilityTest
废弃版本:|方法名 or 属性名:isRunningInStabilityTest
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:killProcessesByBundleName
废弃版本:|方法名 or 属性名:killProcessesByBundleName
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:clearUpApplicationData
废弃版本:|方法名 or 属性名:clearUpApplicationData
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:isRamConstrainedDevice
废弃版本:|方法名 or 属性名:isRamConstrainedDevice
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getAppMemorySize
废弃版本:|方法名 or 属性名:getAppMemorySize
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getProcessRunningInformation
废弃版本:|方法名 or 属性名:getProcessRunningInformation
废弃版本:9
代替接口:ohos.app.ability.appManager |@ohos.application.appManager.d.ts| +|废弃版本有变化|类名:Configuration
废弃版本:|类名:Configuration
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:language
废弃版本:|方法名 or 属性名:language
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:colorMode
废弃版本:|方法名 or 属性名:colorMode
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:direction
废弃版本:|方法名 or 属性名:direction
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:screenDensity
废弃版本:|方法名 or 属性名:screenDensity
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:displayId
废弃版本:|方法名 or 属性名:displayId
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|方法名 or 属性名:hasPointerDevice
废弃版本:|方法名 or 属性名:hasPointerDevice
废弃版本:9
代替接口:ohos.app.ability.Configuration |@ohos.application.Configuration.d.ts| +|废弃版本有变化|类名:ConfigurationConstant
废弃版本:|类名:ConfigurationConstant
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|类名:ColorMode
废弃版本:|类名:ColorMode
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:COLOR_MODE_NOT_SET
废弃版本:|方法名 or 属性名:COLOR_MODE_NOT_SET
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:COLOR_MODE_DARK
废弃版本:|方法名 or 属性名:COLOR_MODE_DARK
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:COLOR_MODE_LIGHT
废弃版本:|方法名 or 属性名:COLOR_MODE_LIGHT
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|类名:Direction
废弃版本:|类名:Direction
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DIRECTION_NOT_SET
废弃版本:|方法名 or 属性名:DIRECTION_NOT_SET
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DIRECTION_VERTICAL
废弃版本:|方法名 or 属性名:DIRECTION_VERTICAL
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:DIRECTION_HORIZONTAL
废弃版本:|方法名 or 属性名:DIRECTION_HORIZONTAL
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|类名:ScreenDensity
废弃版本:|类名:ScreenDensity
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_NOT_SET
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_NOT_SET
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_SDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_SDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_MDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_MDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_LDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_LDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_XLDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_XLDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_XXLDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_XXLDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|方法名 or 属性名:SCREEN_DENSITY_XXXLDPI
废弃版本:|方法名 or 属性名:SCREEN_DENSITY_XXXLDPI
废弃版本:9
代替接口:ohos.app.ability.ConfigurationConstant |@ohos.application.ConfigurationConstant.d.ts| +|废弃版本有变化|类名:context
废弃版本:|类名:context
废弃版本:9
代替接口:ohos.app.ability.common |@ohos.application.context.d.ts| +|废弃版本有变化|类名:EnvironmentCallback
废弃版本:|类名:EnvironmentCallback
废弃版本:9
代替接口:ohos.app.ability.EnvironmentCallback |@ohos.application.EnvironmentCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:onConfigurationUpdated
废弃版本:|方法名 or 属性名:onConfigurationUpdated
废弃版本:9
代替接口:ohos.app.ability.EnvironmentCallback |@ohos.application.EnvironmentCallback.d.ts| +|废弃版本有变化|类名:errorManager
废弃版本:|类名:errorManager
废弃版本:9
代替接口:ohos.app.ability.errorManager |@ohos.application.errorManager.d.ts| +|废弃版本有变化|方法名 or 属性名:registerErrorObserver
废弃版本:|方法名 or 属性名:registerErrorObserver
废弃版本:9
代替接口:ohos.app.ability.errorManager |@ohos.application.errorManager.d.ts| +|废弃版本有变化|方法名 or 属性名:unregisterErrorObserver
废弃版本:|方法名 or 属性名:unregisterErrorObserver
废弃版本:9
代替接口:ohos.app.ability.errorManager |@ohos.application.errorManager.d.ts| +|废弃版本有变化|类名:formBindingData
废弃版本:|类名:formBindingData
废弃版本:9
代替接口:ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts| +|废弃版本有变化|方法名 or 属性名:createFormBindingData
废弃版本:|方法名 or 属性名:createFormBindingData
废弃版本:9
代替接口:ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts| +|废弃版本有变化|类名:FormBindingData
废弃版本:|类名:FormBindingData
废弃版本:9
代替接口:ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts| +|废弃版本有变化|方法名 or 属性名:data
废弃版本:|方法名 or 属性名:data
废弃版本:9
代替接口:ohos.app.form.formBindingData |@ohos.application.formBindingData.d.ts| +|废弃版本有变化|类名:FormExtension
废弃版本:|类名:FormExtension
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:context
废弃版本:|方法名 or 属性名:context
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onCreate
废弃版本:|方法名 or 属性名:onCreate
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onCastToNormal
废弃版本:|方法名 or 属性名:onCastToNormal
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onUpdate
废弃版本:|方法名 or 属性名:onUpdate
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onVisibilityChange
废弃版本:|方法名 or 属性名:onVisibilityChange
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onEvent
废弃版本:|方法名 or 属性名:onEvent
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onDestroy
废弃版本:|方法名 or 属性名:onDestroy
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onConfigurationUpdated
废弃版本:|方法名 or 属性名:onConfigurationUpdated
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onAcquireFormState
废弃版本:|方法名 or 属性名:onAcquireFormState
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|方法名 or 属性名:onShare
废弃版本:|方法名 or 属性名:onShare
废弃版本:9
代替接口:ohos.app.form.FormExtensionAbility |@ohos.application.FormExtension.d.ts| +|废弃版本有变化|类名:formHost
废弃版本:|类名:formHost
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteForm
废弃版本:|方法名 or 属性名:deleteForm
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:releaseForm
废弃版本:|方法名 or 属性名:releaseForm
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:requestForm
废弃版本:|方法名 or 属性名:requestForm
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:castTempForm
废弃版本:|方法名 or 属性名:castTempForm
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:notifyVisibleForms
废弃版本:|方法名 or 属性名:notifyVisibleForms
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:notifyInvisibleForms
废弃版本:|方法名 or 属性名:notifyInvisibleForms
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:enableFormsUpdate
废弃版本:|方法名 or 属性名:enableFormsUpdate
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:disableFormsUpdate
废弃版本:|方法名 or 属性名:disableFormsUpdate
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:isSystemReady
废弃版本:|方法名 or 属性名:isSystemReady
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllFormsInfo
废弃版本:|方法名 or 属性名:getAllFormsInfo
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:getFormsInfo
废弃版本:|方法名 or 属性名:getFormsInfo
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteInvalidForms
废弃版本:|方法名 or 属性名:deleteInvalidForms
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:acquireFormState
废弃版本:|方法名 or 属性名:acquireFormState
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:on_formUninstall
废弃版本:|方法名 or 属性名:on_formUninstall
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:off_formUninstall
废弃版本:|方法名 or 属性名:off_formUninstall
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:notifyFormsVisible
废弃版本:|方法名 or 属性名:notifyFormsVisible
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:notifyFormsEnableUpdate
废弃版本:|方法名 or 属性名:notifyFormsEnableUpdate
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|方法名 or 属性名:shareForm
废弃版本:|方法名 or 属性名:shareForm
废弃版本:9
代替接口:ohos.app.form.formHost |@ohos.application.formHost.d.ts| +|废弃版本有变化|类名:formInfo
废弃版本:|类名:formInfo
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormInfo
废弃版本:|类名:FormInfo
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:description
废弃版本:|方法名 or 属性名:description
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:jsComponentName
废弃版本:|方法名 or 属性名:jsComponentName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:colorMode
废弃版本:|方法名 or 属性名:colorMode
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isDefault
废弃版本:|方法名 or 属性名:isDefault
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:updateEnabled
废弃版本:|方法名 or 属性名:updateEnabled
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:formVisibleNotify
废弃版本:|方法名 or 属性名:formVisibleNotify
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:relatedBundleName
废弃版本:|方法名 or 属性名:relatedBundleName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:scheduledUpdateTime
废弃版本:|方法名 or 属性名:scheduledUpdateTime
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:formConfigAbility
废弃版本:|方法名 or 属性名:formConfigAbility
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:updateDuration
废弃版本:|方法名 or 属性名:updateDuration
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:defaultDimension
废弃版本:|方法名 or 属性名:defaultDimension
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:supportDimensions
废弃版本:|方法名 or 属性名:supportDimensions
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:customizeData
废弃版本:|方法名 or 属性名:customizeData
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormType
废弃版本:|类名:FormType
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:JS
废弃版本:|方法名 or 属性名:JS
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:ColorMode
废弃版本:|类名:ColorMode
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:MODE_AUTO
废弃版本:|方法名 or 属性名:MODE_AUTO
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:MODE_DARK
废弃版本:|方法名 or 属性名:MODE_DARK
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:MODE_LIGHT
废弃版本:|方法名 or 属性名:MODE_LIGHT
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormStateInfo
废弃版本:|类名:FormStateInfo
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:formState
废弃版本:|方法名 or 属性名:formState
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:want
废弃版本:|方法名 or 属性名:want
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormState
废弃版本:|类名:FormState
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:DEFAULT
废弃版本:|方法名 or 属性名:DEFAULT
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:READY
废弃版本:|方法名 or 属性名:READY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormParam
废弃版本:|类名:FormParam
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:IDENTITY_KEY
废弃版本:|方法名 or 属性名:IDENTITY_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:DIMENSION_KEY
废弃版本:|方法名 or 属性名:DIMENSION_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:NAME_KEY
废弃版本:|方法名 or 属性名:NAME_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:MODULE_NAME_KEY
废弃版本:|方法名 or 属性名:MODULE_NAME_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:WIDTH_KEY
废弃版本:|方法名 or 属性名:WIDTH_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:HEIGHT_KEY
废弃版本:|方法名 or 属性名:HEIGHT_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:TEMPORARY_KEY
废弃版本:|方法名 or 属性名:TEMPORARY_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:BUNDLE_NAME_KEY
废弃版本:|方法名 or 属性名:BUNDLE_NAME_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:ABILITY_NAME_KEY
废弃版本:|方法名 or 属性名:ABILITY_NAME_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:DEVICE_ID_KEY
废弃版本:|方法名 or 属性名:DEVICE_ID_KEY
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormInfoFilter
废弃版本:|类名:FormInfoFilter
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:FormDimension
废弃版本:|类名:FormDimension
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:Dimension_1_2
废弃版本:|方法名 or 属性名:Dimension_1_2
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:Dimension_2_2
废弃版本:|方法名 or 属性名:Dimension_2_2
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:Dimension_2_4
废弃版本:|方法名 or 属性名:Dimension_2_4
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:Dimension_4_4
废弃版本:|方法名 or 属性名:Dimension_4_4
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:Dimension_2_1
废弃版本:|方法名 or 属性名:Dimension_2_1
废弃版本:9
代替接口:ohos.app.form.formInfo |@ohos.application.formInfo.d.ts| +|废弃版本有变化|类名:formProvider
废弃版本:|类名:formProvider
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|方法名 or 属性名:setFormNextRefreshTime
废弃版本:|方法名 or 属性名:setFormNextRefreshTime
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|方法名 or 属性名:updateForm
废弃版本:|方法名 or 属性名:updateForm
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|方法名 or 属性名:getFormsInfo
废弃版本:|方法名 or 属性名:getFormsInfo
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|方法名 or 属性名:requestPublishForm
废弃版本:|方法名 or 属性名:requestPublishForm
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|方法名 or 属性名:isRequestPublishFormSupported
废弃版本:|方法名 or 属性名:isRequestPublishFormSupported
废弃版本:9
代替接口:ohos.app.form.formProvider |@ohos.application.formProvider.d.ts| +|废弃版本有变化|类名:missionManager
废弃版本:|类名:missionManager
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:registerMissionListener
废弃版本:|方法名 or 属性名:registerMissionListener
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:unregisterMissionListener
废弃版本:|方法名 or 属性名:unregisterMissionListener
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMissionInfo
废弃版本:|方法名 or 属性名:getMissionInfo
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMissionInfos
废弃版本:|方法名 or 属性名:getMissionInfos
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMissionSnapShot
废弃版本:|方法名 or 属性名:getMissionSnapShot
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getLowResolutionMissionSnapShot
废弃版本:|方法名 or 属性名:getLowResolutionMissionSnapShot
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:lockMission
废弃版本:|方法名 or 属性名:lockMission
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:unlockMission
废弃版本:|方法名 or 属性名:unlockMission
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:clearMission
废弃版本:|方法名 or 属性名:clearMission
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:clearAllMissions
废弃版本:|方法名 or 属性名:clearAllMissions
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|方法名 or 属性名:moveMissionToFront
废弃版本:|方法名 or 属性名:moveMissionToFront
废弃版本:9
代替接口:ohos.app.ability.missionManager |@ohos.application.missionManager.d.ts| +|废弃版本有变化|类名:ServiceExtensionAbility
废弃版本:|类名:ServiceExtensionAbility
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:context
废弃版本:|方法名 or 属性名:context
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onCreate
废弃版本:|方法名 or 属性名:onCreate
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onDestroy
废弃版本:|方法名 or 属性名:onDestroy
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onRequest
废弃版本:|方法名 or 属性名:onRequest
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onConnect
废弃版本:|方法名 or 属性名:onConnect
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onDisconnect
废弃版本:|方法名 or 属性名:onDisconnect
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onReconnect
废弃版本:|方法名 or 属性名:onReconnect
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:onConfigurationUpdated
废弃版本:|方法名 or 属性名:onConfigurationUpdated
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:dump
废弃版本:|方法名 or 属性名:dump
废弃版本:9
代替接口:ohos.app.ability.ServiceExtensionAbility |@ohos.application.ServiceExtensionAbility.d.ts| +|废弃版本有变化|类名:StartOptions
废弃版本:|类名:StartOptions
废弃版本:9
代替接口:ohos.app.ability.StartOptions |@ohos.application.StartOptions.d.ts| +|废弃版本有变化|方法名 or 属性名:windowMode
废弃版本:|方法名 or 属性名:windowMode
废弃版本:9
代替接口:ohos.app.ability.StartOptions |@ohos.application.StartOptions.d.ts| +|废弃版本有变化|方法名 or 属性名:displayId
废弃版本:|方法名 or 属性名:displayId
废弃版本:9
代替接口:ohos.app.ability.StartOptions |@ohos.application.StartOptions.d.ts| +|废弃版本有变化|类名:Want
废弃版本:|类名:Want
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceId
废弃版本:|方法名 or 属性名:deviceId
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:|方法名 or 属性名:uri
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:flags
废弃版本:|方法名 or 属性名:flags
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:action
废弃版本:|方法名 or 属性名:action
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:parameters
废弃版本:|方法名 or 属性名:parameters
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:entities
废弃版本:|方法名 or 属性名:entities
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.app.ability.Want |@ohos.application.Want.d.ts| +|废弃版本有变化|方法名 or 属性名:register
废弃版本:|方法名 or 属性名:register
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|方法名 or 属性名:unregister
废弃版本:|方法名 or 属性名:unregister
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|方法名 or 属性名:updateConnectStatus
废弃版本:|方法名 or 属性名:updateConnectStatus
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|方法名 or 属性名:startDeviceManager
废弃版本:|方法名 or 属性名:startDeviceManager
废弃版本:9
代替接口:ohos.continuation.continuationManager.continuationManager|@ohos.continuation.continuationManager.d.ts| +|废弃版本有变化|类名:wantAgent
废弃版本:|类名:wantAgent
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getBundleName
废弃版本:|方法名 or 属性名:getBundleName
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getUid
废弃版本:|方法名 or 属性名:getUid
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getWant
废弃版本:|方法名 or 属性名:getWant
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getWant
废弃版本:|方法名 or 属性名:getWant
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:cancel
废弃版本:|方法名 or 属性名:cancel
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:trigger
废弃版本:|方法名 or 属性名:trigger
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:trigger
废弃版本:|方法名 or 属性名:trigger
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:equal
废弃版本:|方法名 or 属性名:equal
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getWantAgent
废弃版本:|方法名 or 属性名:getWantAgent
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getOperationType
废弃版本:|方法名 or 属性名:getOperationType
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|类名:WantAgentFlags
废弃版本:|类名:WantAgentFlags
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:ONE_TIME_FLAG
废弃版本:|方法名 or 属性名:ONE_TIME_FLAG
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:NO_BUILD_FLAG
废弃版本:|方法名 or 属性名:NO_BUILD_FLAG
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:CANCEL_PRESENT_FLAG
废弃版本:|方法名 or 属性名:CANCEL_PRESENT_FLAG
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:UPDATE_PRESENT_FLAG
废弃版本:|方法名 or 属性名:UPDATE_PRESENT_FLAG
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:CONSTANT_FLAG
废弃版本:|方法名 or 属性名:CONSTANT_FLAG
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REPLACE_ELEMENT
废弃版本:|方法名 or 属性名:REPLACE_ELEMENT
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REPLACE_ACTION
废弃版本:|方法名 or 属性名:REPLACE_ACTION
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REPLACE_URI
废弃版本:|方法名 or 属性名:REPLACE_URI
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REPLACE_ENTITIES
废弃版本:|方法名 or 属性名:REPLACE_ENTITIES
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REPLACE_BUNDLE
废弃版本:|方法名 or 属性名:REPLACE_BUNDLE
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|类名:OperationType
废弃版本:|类名:OperationType
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN_TYPE
废弃版本:|方法名 or 属性名:UNKNOWN_TYPE
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:START_ABILITY
废弃版本:|方法名 or 属性名:START_ABILITY
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:START_ABILITIES
废弃版本:|方法名 or 属性名:START_ABILITIES
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:START_SERVICE
废弃版本:|方法名 or 属性名:START_SERVICE
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:SEND_COMMON_EVENT
废弃版本:|方法名 or 属性名:SEND_COMMON_EVENT
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|类名:CompleteData
废弃版本:|类名:CompleteData
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:info
废弃版本:|方法名 or 属性名:info
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:want
废弃版本:|方法名 or 属性名:want
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:finalCode
废弃版本:|方法名 or 属性名:finalCode
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:finalData
废弃版本:|方法名 or 属性名:finalData
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:extraInfo
废弃版本:|方法名 or 属性名:extraInfo
废弃版本:9
代替接口:ohos.app.ability.wantAgent |@ohos.wantAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:connectAbility
废弃版本:|方法名 or 属性名:connectAbility
废弃版本:9
代替接口:connectServiceExtensionAbility |AbilityContext.d.ts| +|废弃版本有变化|方法名 or 属性名:connectAbilityWithAccount
废弃版本:|方法名 or 属性名:connectAbilityWithAccount
废弃版本:9
代替接口:connectServiceExtensionAbilityWithAccount |AbilityContext.d.ts| +|废弃版本有变化|方法名 or 属性名:disconnectAbility
废弃版本:|方法名 or 属性名:disconnectAbility
废弃版本:9
代替接口:disconnectServiceExtensionAbility |AbilityContext.d.ts| +|废弃版本有变化|方法名 or 属性名:registerAbilityLifecycleCallback
废弃版本:|方法名 or 属性名:registerAbilityLifecycleCallback
废弃版本:9
代替接口:on |ApplicationContext.d.ts| +|废弃版本有变化|方法名 or 属性名:unregisterAbilityLifecycleCallback
废弃版本:|方法名 or 属性名:unregisterAbilityLifecycleCallback
废弃版本:9
代替接口:off |ApplicationContext.d.ts| +|废弃版本有变化|方法名 or 属性名:registerEnvironmentCallback
废弃版本:|方法名 or 属性名:registerEnvironmentCallback
废弃版本:9
代替接口:on |ApplicationContext.d.ts| +|废弃版本有变化|方法名 or 属性名:unregisterEnvironmentCallback
废弃版本:|方法名 or 属性名:unregisterEnvironmentCallback
废弃版本:9
代替接口:off |ApplicationContext.d.ts| +|废弃版本有变化|方法名 or 属性名:connectAbility
废弃版本:|方法名 or 属性名:connectAbility
废弃版本:9
代替接口:connectServiceExtensionAbility |ServiceExtensionContext.d.ts| +|废弃版本有变化|方法名 or 属性名:connectAbilityWithAccount
废弃版本:|方法名 or 属性名:connectAbilityWithAccount
废弃版本:9
代替接口:connectServiceExtensionAbilityWithAccount |ServiceExtensionContext.d.ts| +|废弃版本有变化|方法名 or 属性名:disconnectAbility
废弃版本:|方法名 or 属性名:disconnectAbility
废弃版本:9
代替接口:disconnectServiceExtensionAbility |ServiceExtensionContext.d.ts| +|删除(权限)|类名:distributedMissionManager
权限:ohos.permission.MANAGE_MISSIONS|类名:distributedMissionManager
权限:N/A|@ohos.distributedMissionManager.d.ts| +|新增(错误码)||方法名 or 属性名:on_deviceConnect
错误码内容:401,16600001,16600002,16600004|@ohos.continuation.continuationManager.d.ts| +|新增(错误码)||方法名 or 属性名:on_deviceDisconnect
错误码内容:401,16600001,16600002,16600004|@ohos.continuation.continuationManager.d.ts| +|新增(错误码)||方法名 or 属性名:startSyncRemoteMissions
错误码内容:201,401|@ohos.distributedMissionManager.d.ts| +|新增(错误码)||方法名 or 属性名:stopSyncRemoteMissions
错误码内容:201,401|@ohos.distributedMissionManager.d.ts| +|新增(错误码)||方法名 or 属性名:registerMissionListener
错误码内容:201,401|@ohos.distributedMissionManager.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityByCall
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResult
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResult
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResult
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResultWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResultWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityForResultWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbility
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbilityWithAccount
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelf
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelf
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelfWithResult
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelfWithResult
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:setMissionLabel
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:setMissionIcon
错误码内容:401|AbilityContext.d.ts| +|新增(错误码)||方法名 or 属性名:addAbilityMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:addAbilityMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:addAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:addAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:removeAbilityMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:removeAbilityMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:removeAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:removeAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:waitAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:waitAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:waitAbilityStageMonitor
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:printSync
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:finishTest
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:finishTest
错误码内容:401|abilityDelegator.d.ts| +|新增(错误码)||方法名 or 属性名:createBundleContext
错误码内容:401|Context.d.ts| +|新增(错误码)||方法名 or 属性名:createModuleContext
错误码内容:401|Context.d.ts| +|新增(错误码)||方法名 or 属性名:createModuleContext
错误码内容:401|Context.d.ts| +|新增(错误码)||方法名 or 属性名:on
错误码内容:401|EventHub.d.ts| +|新增(错误码)||方法名 or 属性名:off
错误码内容:401|EventHub.d.ts| +|新增(错误码)||方法名 or 属性名:emit
错误码内容:401|EventHub.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startServiceExtensionAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbility
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:stopServiceExtensionAbilityWithAccount
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelf
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:terminateSelf
错误码内容:401|ServiceExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:startAbilityByCall
错误码内容:401|ServiceExtensionContext.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-accessibility.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-accessibility.md new file mode 100644 index 0000000000000000000000000000000000000000..8111483f04c7e03415d54ba0c95b5d8e18cd5bab --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-accessibility.md @@ -0,0 +1,50 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.accessibility.config
类名:config
方法名 or 属性名:on_enabledAccessibilityExtensionListChange|@ohos.accessibility.config.d.ts| +|新增||模块名:ohos.accessibility.config
类名:config
方法名 or 属性名:off_enabledAccessibilityExtensionListChange|@ohos.accessibility.config.d.ts| +|新增||模块名:ohos.accessibility
类名:accessibility
方法名 or 属性名:getAccessibilityExtensionList|@ohos.accessibility.d.ts| +|新增||模块名:ohos.accessibility
类名:accessibility
方法名 or 属性名:getAccessibilityExtensionList|@ohos.accessibility.d.ts| +|新增||模块名:ohos.accessibility
类名:accessibility
方法名 or 属性名:sendAccessibilityEvent|@ohos.accessibility.d.ts| +|新增||模块名:ohos.accessibility
类名:accessibility
方法名 or 属性名:sendAccessibilityEvent|@ohos.accessibility.d.ts| +|新增||模块名: ohos.accessibility.GesturePath
类名: GesturePath|@ohos.accessibility.GesturePath.d.ts| +|新增||模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法名 or 属性名: ructor(durationTime|@ohos.accessibility.GesturePath.d.ts| +|新增||模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法名 or 属性名: points|@ohos.accessibility.GesturePath.d.ts| +|新增||模块名: ohos.accessibility.GesturePath
类名: GesturePath
方法名 or 属性名: durationTime|@ohos.accessibility.GesturePath.d.ts| +|新增||模块名: ohos.accessibility.GesturePoint
类名: GesturePoint|@ohos.accessibility.GesturePoint.d.ts| +|新增||模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法名 or 属性名: ructor(positionX|@ohos.accessibility.GesturePoint.d.ts| +|新增||模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法名 or 属性名: positionX|@ohos.accessibility.GesturePoint.d.ts| +|新增||模块名: ohos.accessibility.GesturePoint
类名: GesturePoint
方法名 or 属性名: positionY|@ohos.accessibility.GesturePoint.d.ts| +|新增||方法名 or 属性名:performAction
函数:performAction(actionName: string, parameters?: object): Promise;|AccessibilityExtensionContext.d.ts| +|新增||方法名 or 属性名:performAction
函数:performAction(actionName: string, callback: AsyncCallback): void;|AccessibilityExtensionContext.d.ts| +|新增||方法名 or 属性名:performAction
函数:performAction(actionName: string, parameters: object, callback: AsyncCallback): void;|AccessibilityExtensionContext.d.ts| +|删除|模块名:ohos.accessibility.config
类名:config
方法名 or 属性名:on_enableAbilityListsStateChanged||@ohos.accessibility.config.d.ts| +|删除|模块名:ohos.accessibility.config
类名:config
方法名 or 属性名:off_enableAbilityListsStateChanged||@ohos.accessibility.config.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePath||@ohos.application.AccessibilityExtensionAbility.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePath
方法名 or 属性名: points||@ohos.application.AccessibilityExtensionAbility.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePath
方法名 or 属性名: durationTime||@ohos.application.AccessibilityExtensionAbility.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePoint||@ohos.application.AccessibilityExtensionAbility.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePoint
方法名 or 属性名: positionX||@ohos.application.AccessibilityExtensionAbility.d.ts| +|删除|模块名: ohos.application.AccessibilityExtensionAbility
类名: GesturePoint
方法名 or 属性名: positionY||@ohos.application.AccessibilityExtensionAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityLists
废弃版本:|方法名 or 属性名:getAbilityLists
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|废弃版本有变化|方法名 or 属性名:sendEvent
废弃版本:|方法名 or 属性名:sendEvent
废弃版本:9
代替接口:ohos.accessibility|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:enableAbility
错误码内容:201,401,9300001,9300002|@ohos.accessibility.config.d.ts| +|新增(错误码)||方法名 or 属性名:disableAbility
错误码内容:201,401,9300001|@ohos.accessibility.config.d.ts| +|新增(错误码)||方法名 or 属性名:set
错误码内容:201,401|@ohos.accessibility.config.d.ts| +|新增(错误码)||方法名 or 属性名:on
错误码内容:401|@ohos.accessibility.config.d.ts| +|新增(错误码)||方法名 or 属性名:on_accessibilityStateChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:on_touchGuideStateChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:off_accessibilityStateChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:off_touchGuideStateChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:on_enableChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:on_styleChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:off_enableChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:off_styleChange
错误码内容:401|@ohos.accessibility.d.ts| +|新增(错误码)||方法名 or 属性名:setTargetBundleName
错误码内容:401|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:getFocusElement
错误码内容:9300003|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:getWindowRootElement
错误码内容:9300003|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:getWindows
错误码内容:9300003|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:injectGesture
错误码内容:401,9300003|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:attributeValue
错误码内容:401,9300004|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:findElement
错误码内容:401|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:findElement
错误码内容:401|AccessibilityExtensionContext.d.ts| +|新增(错误码)||方法名 or 属性名:findElement
错误码内容:401|AccessibilityExtensionContext.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-account.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-account.md new file mode 100644 index 0000000000000000000000000000000000000000..318e27b9b81242b01766007564a0abc8f07514ac --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-account.md @@ -0,0 +1,209 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:createAccount|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:createAccount|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:createAccount|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:createAccountImplicitly|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:createAccountImplicitly|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:removeAccount|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:removeAccount|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAppAccess|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAppAccess|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:checkDataSyncEnabled|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:checkDataSyncEnabled|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setCredential|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setCredential|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setDataSyncEnabled|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setDataSyncEnabled|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setCustomData|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setCustomData|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:getAllAccounts
函数:getAllAccounts(callback: AsyncCallback>): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:getAllAccounts
函数:getAllAccounts(): Promise>;|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAccountsByOwner|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAccountsByOwner|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getCredential|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getCredential|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getCustomData|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getCustomData|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getCustomDataSync|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:on_accountChange|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:off_accountChange|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:auth|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:auth|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteAuthToken|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAuthTokenVisibility|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:setAuthTokenVisibility|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:checkAuthTokenVisibility|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:checkAuthTokenVisibility|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAllAuthTokens|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAllAuthTokens|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthList|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthList|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthCallback|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAuthCallback|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:queryAuthenticatorInfo|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:queryAuthenticatorInfo|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteCredential|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteCredential|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:selectAccountsByOptions
函数:selectAccountsByOptions(options: SelectAccountsOptions, callback: AsyncCallback>): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:verifyCredential
函数:verifyCredential(name: string, owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:verifyCredential
函数:verifyCredential(name: string, owner: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:setAuthenticatorProperties
函数:setAuthenticatorProperties(owner: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:setAuthenticatorProperties
函数:setAuthenticatorProperties(owner: string, options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthTokenInfo|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法名 or 属性名:authType|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法名 or 属性名:token|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthTokenInfo
方法名 or 属性名:account|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthResult|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthResult
方法名 or 属性名:account|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthResult
方法名 or 属性名:tokenInfo|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountOptions|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountOptions
方法名 or 属性名:customData|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法名 or 属性名:requiredLabels|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法名 or 属性名:authType|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: CreateAccountImplicitlyOptions
方法名 or 属性名:parameters|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Constants
方法名 or 属性名:ACTION_CREATE_ACCOUNT_IMPLICITLY|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Constants
方法名 or 属性名:ACTION_AUTH|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Constants
方法名 or 属性名:ACTION_VERIFY_CREDENTIAL|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Constants
方法名 or 属性名:ACTION_SET_AUTHENTICATOR_PROPERTIES|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthCallback|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthCallback
方法名 or 属性名:onResult|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthCallback
方法名 or 属性名:onRequestRedirected|@ohos.account.appAccount.d.ts| +|新增||模块名: ohos.account.appAccount
类名: AuthCallback
方法名 or 属性名:onRequestContinued|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Authenticator
方法名 or 属性名:createAccountImplicitly|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.appAccount
类名:Authenticator
方法名 or 属性名:auth|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:verifyCredential
函数:verifyCredential(name: string, options: VerifyCredentialOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:setProperties
函数:setProperties(options: SetPropertiesOptions, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:checkAccountLabels
函数:checkAccountLabels(name: string, labels: Array, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||方法名 or 属性名:isAccountRemovable
函数:isAccountRemovable(name: string, callback: AuthCallback): void;|@ohos.account.appAccount.d.ts| +|新增||模块名:ohos.account.distributedAccount
类名:DistributedAccountAbility
方法名 or 属性名:getOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts| +|新增||模块名:ohos.account.distributedAccount
类名:DistributedAccountAbility
方法名 or 属性名:getOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts| +|新增||模块名:ohos.account.distributedAccount
类名:DistributedAccountAbility
方法名 or 属性名:setOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts| +|新增||模块名:ohos.account.distributedAccount
类名:DistributedAccountAbility
方法名 or 属性名:setOsAccountDistributedInfo|@ohos.account.distributedAccount.d.ts| +|新增||模块名: ohos.account.distributedAccount
类名: DistributedInfo
方法名 or 属性名:nickname|@ohos.account.distributedAccount.d.ts| +|新增||模块名: ohos.account.distributedAccount
类名: DistributedInfo
方法名 or 属性名:avatar|@ohos.account.distributedAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkMultiOsAccountEnabled|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkMultiOsAccountEnabled|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountActivated|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountActivated|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkConstraintEnabled|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkConstraintEnabled|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountTestable|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountTestable|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountVerified|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountVerified|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:checkOsAccountVerified|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountCount|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountCount|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromProcess|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromProcess|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromUid|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromUid|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromDomain|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdFromDomain|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountConstraints|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountConstraints|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getActivatedOsAccountIds|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getActivatedOsAccountIds|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getCurrentOsAccount|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getCurrentOsAccount|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountType|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:getOsAccountType|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryDistributedVirtualDeviceId|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryDistributedVirtualDeviceId|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdBySerialNumber|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:queryOsAccountLocalIdBySerialNumber|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:querySerialNumberByOsAccountLocalId|@ohos.account.osAccount.d.ts| +|新增||模块名:ohos.account.osAccount
类名:AccountManager
方法名 or 属性名:querySerialNumberByOsAccountLocalId|@ohos.account.osAccount.d.ts| +|新增||方法名 or 属性名:setProperty
函数:setProperty(request: SetPropertyRequest, callback: AsyncCallback): void;|@ohos.account.osAccount.d.ts| +|新增||方法名 or 属性名:setProperty
函数:setProperty(request: SetPropertyRequest): Promise;|@ohos.account.osAccount.d.ts| +|新增||方法名 or 属性名:cancelAuth
函数:cancelAuth(contextID: Uint8Array): void;|@ohos.account.osAccount.d.ts| +|新增||方法名 or 属性名:registerInputer
函数:registerInputer(inputer: IInputer): void;|@ohos.account.osAccount.d.ts| +|新增||方法名 or 属性名:cancel
函数:cancel(challenge: Uint8Array): void;|@ohos.account.osAccount.d.ts| +|删除|模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:getAssociatedDataSync||@ohos.account.appAccount.d.ts| +|删除|模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteAccountCredential||@ohos.account.appAccount.d.ts| +|删除|模块名:ohos.account.appAccount
类名:AppAccountManager
方法名 or 属性名:deleteAccountCredential||@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:addAccount
废弃版本:|方法名 or 属性名:addAccount
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:addAccountImplicitly
废弃版本:|方法名 or 属性名:addAccountImplicitly
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteAccount
废弃版本:|方法名 or 属性名:deleteAccount
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:disableAppAccess
废弃版本:|方法名 or 属性名:disableAppAccess
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:enableAppAccess
废弃版本:|方法名 or 属性名:enableAppAccess
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:checkAppAccountSyncEnable
废弃版本:|方法名 or 属性名:checkAppAccountSyncEnable
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setAccountCredential
废弃版本:|方法名 or 属性名:setAccountCredential
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setAccountExtraInfo
废弃版本:|方法名 or 属性名:setAccountExtraInfo
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setAppAccountSyncEnable
废弃版本:|方法名 or 属性名:setAppAccountSyncEnable
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setAssociatedData
废弃版本:|方法名 or 属性名:setAssociatedData
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllAccessibleAccounts
废弃版本:|方法名 or 属性名:getAllAccessibleAccounts
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllAccounts
废弃版本:|方法名 or 属性名:getAllAccounts
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAccountCredential
废弃版本:|方法名 or 属性名:getAccountCredential
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAccountExtraInfo
废弃版本:|方法名 or 属性名:getAccountExtraInfo
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAssociatedData
废弃版本:|方法名 or 属性名:getAssociatedData
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:on_change
废弃版本:|方法名 or 属性名:on_change
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:off_change
废弃版本:|方法名 or 属性名:off_change
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:authenticate
废弃版本:|方法名 or 属性名:authenticate
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOAuthToken
废弃版本:|方法名 or 属性名:getOAuthToken
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setOAuthToken
废弃版本:|方法名 or 属性名:setOAuthToken
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteOAuthToken
废弃版本:|方法名 or 属性名:deleteOAuthToken
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:setOAuthTokenVisibility
废弃版本:|方法名 or 属性名:setOAuthTokenVisibility
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:checkOAuthTokenVisibility
废弃版本:|方法名 or 属性名:checkOAuthTokenVisibility
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllOAuthTokens
废弃版本:|方法名 or 属性名:getAllOAuthTokens
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOAuthList
废弃版本:|方法名 or 属性名:getOAuthList
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAuthenticatorCallback
废弃版本:|方法名 or 属性名:getAuthenticatorCallback
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getAuthenticatorInfo
废弃版本:|方法名 or 属性名:getAuthenticatorInfo
废弃版本:9
代替接口:appAccount.AppAccountManager|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:OAuthTokenInfo
废弃版本:|类名:OAuthTokenInfo
废弃版本:9
代替接口:appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:authType
废弃版本:|方法名 or 属性名:authType
废弃版本:9
代替接口:appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:token
废弃版本:|方法名 or 属性名:token
废弃版本:9
代替接口:appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:account
废弃版本:|方法名 or 属性名:account
废弃版本:9
代替接口:appAccount.AuthTokenInfo |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_ADD_ACCOUNT_IMPLICITLY
废弃版本:|方法名 or 属性名:ACTION_ADD_ACCOUNT_IMPLICITLY
废弃版本:9
代替接口:appAccount.Constants|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_AUTHENTICATE
废弃版本:|方法名 or 属性名:ACTION_AUTHENTICATE
废弃版本:9
代替接口:appAccount.Constants|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:ResultCode
废弃版本:|类名:ResultCode
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:SUCCESS
废弃版本:|方法名 or 属性名:SUCCESS
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_ACCOUNT_NOT_EXIST
废弃版本:|方法名 or 属性名:ERROR_ACCOUNT_NOT_EXIST
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_APP_ACCOUNT_SERVICE_EXCEPTION
废弃版本:|方法名 or 属性名:ERROR_APP_ACCOUNT_SERVICE_EXCEPTION
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_INVALID_PASSWORD
废弃版本:|方法名 or 属性名:ERROR_INVALID_PASSWORD
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_INVALID_REQUEST
废弃版本:|方法名 or 属性名:ERROR_INVALID_REQUEST
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_INVALID_RESPONSE
废弃版本:|方法名 or 属性名:ERROR_INVALID_RESPONSE
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_NETWORK_EXCEPTION
废弃版本:|方法名 or 属性名:ERROR_NETWORK_EXCEPTION
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_AUTHENTICATOR_NOT_EXIST
废弃版本:|方法名 or 属性名:ERROR_OAUTH_AUTHENTICATOR_NOT_EXIST
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_CANCELED
废弃版本:|方法名 or 属性名:ERROR_OAUTH_CANCELED
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_LIST_TOO_LARGE
废弃版本:|方法名 or 属性名:ERROR_OAUTH_LIST_TOO_LARGE
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_SERVICE_BUSY
废弃版本:|方法名 or 属性名:ERROR_OAUTH_SERVICE_BUSY
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_SERVICE_EXCEPTION
废弃版本:|方法名 or 属性名:ERROR_OAUTH_SERVICE_EXCEPTION
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_SESSION_NOT_EXIST
废弃版本:|方法名 or 属性名:ERROR_OAUTH_SESSION_NOT_EXIST
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_TIMEOUT
废弃版本:|方法名 or 属性名:ERROR_OAUTH_TIMEOUT
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_TOKEN_NOT_EXIST
废弃版本:|方法名 or 属性名:ERROR_OAUTH_TOKEN_NOT_EXIST
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_TOKEN_TOO_MANY
废弃版本:|方法名 or 属性名:ERROR_OAUTH_TOKEN_TOO_MANY
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_UNSUPPORT_ACTION
废弃版本:|方法名 or 属性名:ERROR_OAUTH_UNSUPPORT_ACTION
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_OAUTH_UNSUPPORT_AUTH_TYPE
废弃版本:|方法名 or 属性名:ERROR_OAUTH_UNSUPPORT_AUTH_TYPE
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_PERMISSION_DENIED
废弃版本:|方法名 or 属性名:ERROR_PERMISSION_DENIED
废弃版本:9|@ohos.account.appAccount.d.ts| +|废弃版本有变化|类名:AuthenticatorCallback
废弃版本:|类名:AuthenticatorCallback
废弃版本:9
代替接口:AppAccount.AuthCallback |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:onResult
废弃版本:|方法名 or 属性名:onResult
废弃版本:9
代替接口:AppAccount.AuthCallback |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:onRequestRedirected
废弃版本:|方法名 or 属性名:onRequestRedirected
废弃版本:9
代替接口:AppAccount.AuthCallback |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:onRequestContinued
废弃版本:|方法名 or 属性名:onRequestContinued
废弃版本:9
代替接口:AppAccount.AuthCallback |@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:addAccountImplicitly
废弃版本:|方法名 or 属性名:addAccountImplicitly
废弃版本:9
代替接口:appAccount.Authenticator|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:authenticate
废弃版本:|方法名 or 属性名:authenticate
废弃版本:9
代替接口:appAccount.Authenticator|@ohos.account.appAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:queryOsAccountDistributedInfo
废弃版本:|方法名 or 属性名:queryOsAccountDistributedInfo
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:updateOsAccountDistributedInfo
废弃版本:|方法名 or 属性名:updateOsAccountDistributedInfo
废弃版本:9
代替接口:distributedAccount.DistributedAccountAbility|@ohos.account.distributedAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:isMultiOsAccountEnable
废弃版本:|方法名 or 属性名:isMultiOsAccountEnable
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:isOsAccountActived
废弃版本:|方法名 or 属性名:isOsAccountActived
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:isOsAccountConstraintEnable
废弃版本:|方法名 or 属性名:isOsAccountConstraintEnable
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:isTestOsAccount
废弃版本:|方法名 or 属性名:isTestOsAccount
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:isOsAccountVerified
废弃版本:|方法名 or 属性名:isOsAccountVerified
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getCreatedOsAccountsCount
废弃版本:|方法名 or 属性名:getCreatedOsAccountsCount
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountLocalIdFromProcess
废弃版本:|方法名 or 属性名:getOsAccountLocalIdFromProcess
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountLocalIdFromUid
废弃版本:|方法名 or 属性名:getOsAccountLocalIdFromUid
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountLocalIdFromDomain
废弃版本:|方法名 or 属性名:getOsAccountLocalIdFromDomain
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountAllConstraints
废弃版本:|方法名 or 属性名:getOsAccountAllConstraints
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:queryActivatedOsAccountIds
废弃版本:|方法名 or 属性名:queryActivatedOsAccountIds
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:queryCurrentOsAccount
废弃版本:|方法名 or 属性名:queryCurrentOsAccount
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountTypeFromProcess
废弃版本:|方法名 or 属性名:getOsAccountTypeFromProcess
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getDistributedVirtualDeviceId
废弃版本:|方法名 or 属性名:getDistributedVirtualDeviceId
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getOsAccountLocalIdBySerialNumber
废弃版本:|方法名 or 属性名:getOsAccountLocalIdBySerialNumber
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|废弃版本有变化|方法名 or 属性名:getSerialNumberByOsAccountLocalId
废弃版本:|方法名 or 属性名:getSerialNumberByOsAccountLocalId
废弃版本:9
代替接口:osAccount.AccountManager|@ohos.account.osAccount.d.ts| +|新增(权限)|方法名 or 属性名:isOsAccountVerified
权限:N/A|方法名 or 属性名:isOsAccountVerified
权限:ohos.permission.MANAGE_LOCAL_ACCOUNTS or ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS|@ohos.account.osAccount.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-application.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-application.md new file mode 100644 index 0000000000000000000000000000000000000000..33d1321a18557647b6c8faf3f8c44c8605a4c709 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-application.md @@ -0,0 +1,207 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.contact
类名:Contact|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:INVALID_CONTACT_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:id|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:key|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:contactAttributes|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:emails|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:events|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:groups|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:imAddresses|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:phoneNumbers|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:portrait|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:postalAddresses|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:relations|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:sipAddresses|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:websites|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:name|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:nickName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:note|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Contact
方法名 or 属性名:organization|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ContactAttributes|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ContactAttributes
方法名 or 属性名:attributes|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_CONTACT_EVENT|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_EMAIL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_GROUP_MEMBERSHIP|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_IM|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_NAME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_NICKNAME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_NOTE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_ORGANIZATION|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_PHONE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_PORTRAIT|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_POSTAL_ADDRESS|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_RELATION|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_SIP_ADDRESS|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Attribute
方法名 or 属性名:ATTR_WEBSITE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:EMAIL_HOME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:EMAIL_WORK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:EMAIL_OTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:email|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:displayName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Email
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:EVENT_ANNIVERSARY|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:EVENT_OTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:EVENT_BIRTHDAY|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:eventDate|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Event
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Group|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Group
方法名 or 属性名:groupId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Group
方法名 or 属性名:title|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Holder|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Holder
方法名 or 属性名:bundleName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Holder
方法名 or 属性名:displayName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Holder
方法名 or 属性名:holderId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_AIM|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_MSN|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_YAHOO|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_SKYPE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_QQ|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_ICQ|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:IM_JABBER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:imAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:ImAddress
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:familyName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:familyNamePhonetic|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:fullName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:givenName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:givenNamePhonetic|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:middleName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:middleNamePhonetic|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:namePrefix|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Name
方法名 or 属性名:nameSuffix|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:NickName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:NickName
方法名 or 属性名:nickName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Note|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Note
方法名 or 属性名:noteContent|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Organization|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Organization
方法名 or 属性名:name|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Organization
方法名 or 属性名:title|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_HOME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_MOBILE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_WORK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_FAX_WORK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_FAX_HOME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_PAGER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_OTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_CALLBACK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_CAR|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_COMPANY_MAIN|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_ISDN|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_MAIN|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_OTHER_FAX|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_RADIO|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_TELEX|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_TTY_TDD|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_WORK_MOBILE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_WORK_PAGER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_ASSISTANT|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:NUM_MMS|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:phoneNumber|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PhoneNumber
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Portrait|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Portrait
方法名 or 属性名:uri|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:ADDR_HOME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:ADDR_WORK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:ADDR_OTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:city|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:country|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:neighborhood|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:pobox|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:postalAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:postcode|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:region|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:street|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:PostalAddress
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_ASSISTANT|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_BROTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_CHILD|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_DOMESTIC_PARTNER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_FATHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_FRIEND|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_MANAGER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_MOTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_PARENT|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_PARTNER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_REFERRED_BY|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_RELATIVE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_SISTER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:RELATION_SPOUSE|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:relationName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Relation
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:CUSTOM_LABEL|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:SIP_HOME|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:SIP_WORK|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:SIP_OTHER|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:INVALID_LABEL_ID|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:labelName|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:sipAddress|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:SipAddress
方法名 or 属性名:labelId|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Website|@ohos.contact.d.ts| +|新增||模块名:ohos.contact
类名:Website
方法名 or 属性名:website|@ohos.contact.d.ts| +|新增||模块名: ohos.telephony.call
类名: AudioDevice
方法名 or 属性名:DEVICE_MIC|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:hangup
权限:N/A|方法名 or 属性名:hangup
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:hangup
权限:N/A|方法名 or 属性名:hangup
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:reject
权限:N/A|方法名 or 属性名:reject
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:reject
权限:N/A|方法名 or 属性名:reject
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:reject
权限:N/A|方法名 or 属性名:reject
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:reject
权限:N/A|方法名 or 属性名:reject
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:reject
权限:N/A|方法名 or 属性名:reject
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:holdCall
权限:N/A|方法名 or 属性名:holdCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:holdCall
权限:N/A|方法名 or 属性名:holdCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:unHoldCall
权限:N/A|方法名 or 属性名:unHoldCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:unHoldCall
权限:N/A|方法名 or 属性名:unHoldCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:switchCall
权限:N/A|方法名 or 属性名:switchCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:switchCall
权限:N/A|方法名 or 属性名:switchCall
权限:ohos.permission.ANSWER_CALL|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallWaitingStatus
权限:N/A|方法名 or 属性名:getCallWaitingStatus
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallWaitingStatus
权限:N/A|方法名 or 属性名:getCallWaitingStatus
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallWaiting
权限:N/A|方法名 or 属性名:setCallWaiting
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallWaiting
权限:N/A|方法名 or 属性名:setCallWaiting
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:on_callDetailsChange
权限:N/A|方法名 or 属性名:on_callDetailsChange
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:off_callDetailsChange
权限:N/A|方法名 or 属性名:off_callDetailsChange
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:on_callEventChange
权限:N/A|方法名 or 属性名:on_callEventChange
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:off_callEventChange
权限:N/A|方法名 or 属性名:off_callEventChange
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:on_callDisconnectedCause
权限:N/A|方法名 or 属性名:on_callDisconnectedCause
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:off_callDisconnectedCause
权限:N/A|方法名 or 属性名:off_callDisconnectedCause
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:on_mmiCodeResult
权限:N/A|方法名 or 属性名:on_mmiCodeResult
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:off_mmiCodeResult
权限:N/A|方法名 or 属性名:off_mmiCodeResult
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallRestrictionStatus
权限:N/A|方法名 or 属性名:getCallRestrictionStatus
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallRestrictionStatus
权限:N/A|方法名 or 属性名:getCallRestrictionStatus
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallRestriction
权限:N/A|方法名 or 属性名:setCallRestriction
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallRestriction
权限:N/A|方法名 or 属性名:setCallRestriction
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallTransferInfo
权限:N/A|方法名 or 属性名:getCallTransferInfo
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:getCallTransferInfo
权限:N/A|方法名 or 属性名:getCallTransferInfo
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallTransfer
权限:N/A|方法名 or 属性名:setCallTransfer
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:setCallTransfer
权限:N/A|方法名 or 属性名:setCallTransfer
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:enableImsSwitch
权限:N/A|方法名 or 属性名:enableImsSwitch
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:enableImsSwitch
权限:N/A|方法名 or 属性名:enableImsSwitch
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:disableImsSwitch
权限:N/A|方法名 or 属性名:disableImsSwitch
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| +|新增(权限)|方法名 or 属性名:disableImsSwitch
权限:N/A|方法名 or 属性名:disableImsSwitch
权限:ohos.permission.SET_TELEPHONY_STATE|@ohos.telephony.call.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-arkui.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-arkui.md new file mode 100644 index 0000000000000000000000000000000000000000..b28504134ba40c7dc0974c733ebbc9c01d87821b --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-arkui.md @@ -0,0 +1,205 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.animator
类名:AnimatorResult
方法名 or 属性名:reset|@ohos.animator.d.ts| +|新增||模块名:ohos.animator
类名:Animator
方法名 or 属性名:create|@ohos.animator.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowToastOptions|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowToastOptions
方法名 or 属性名: message|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowToastOptions
方法名 or 属性名: duration|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowToastOptions
方法名 or 属性名: bottom|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: Button|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: Button
方法名 or 属性名: text|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: Button
方法名 or 属性名: color|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogSuccessResponse|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogSuccessResponse
方法名 or 属性名: index|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogOptions|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogOptions
方法名 or 属性名: title|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogOptions
方法名 or 属性名: message|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ShowDialogOptions
方法名 or 属性名: buttons|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ActionMenuSuccessResponse|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ActionMenuSuccessResponse
方法名 or 属性名: index|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ActionMenuOptions|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ActionMenuOptions
方法名 or 属性名: title|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: ActionMenuOptions
方法名 or 属性名: buttons|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction
方法名 or 属性名: showToast|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction
方法名 or 属性名: showDialog|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction
方法名 or 属性名: showDialog|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction
方法名 or 属性名: showActionMenu|@ohos.promptAction.d.ts| +|新增||模块名: ohos.promptAction
类名: promptAction
方法名 or 属性名: showActionMenu|@ohos.promptAction.d.ts| +|新增||模块名:ohos.router
类名:RouterOptions|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:pushUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:pushUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:pushUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:pushUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:replaceUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:replaceUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:replaceUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:replaceUrl|@ohos.router.d.ts| +|新增||模块名:ohos.router
类名:router
方法名 or 属性名:enableBackPageAlert|@ohos.router.d.ts| +|新增||模块名: common
类名:
方法名 or 属性名:postCardAction|common.d.ts| +|新增||模块名: common
类名: PopupOptions
方法名 or 属性名:showInSubWindow|common.d.ts| +|新增||模块名: common
类名: CustomPopupOptions
方法名 or 属性名:showInSubWindow|common.d.ts| +|新增||模块名: common
类名: LayoutBorderInfo|common.d.ts| +|新增||模块名: common
类名: LayoutBorderInfo
方法名 or 属性名:borderWidth|common.d.ts| +|新增||模块名: common
类名: LayoutBorderInfo
方法名 or 属性名:margin|common.d.ts| +|新增||模块名: common
类名: LayoutBorderInfo
方法名 or 属性名:padding|common.d.ts| +|新增||模块名: common
类名: LayoutInfo|common.d.ts| +|新增||模块名: common
类名: LayoutInfo
方法名 or 属性名:position|common.d.ts| +|新增||模块名: common
类名: LayoutInfo
方法名 or 属性名:constraint|common.d.ts| +|新增||模块名: common
类名: LayoutChild|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:name|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:id|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:constraint|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:borderInfo|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:position|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:measure|common.d.ts| +|新增||模块名: common
类名: LayoutChild
方法名 or 属性名:layout|common.d.ts| +|新增||模块名: common
类名: CustomComponent
方法名 or 属性名:onLayout|common.d.ts| +|新增||模块名: common
类名: CustomComponent
方法名 or 属性名:onMeasure|common.d.ts| +|新增||模块名: common
类名: CustomComponent
方法名 or 属性名:pageTransition|common.d.ts| +|新增||模块名:common_ts_ets_api
类名:AppStorage
方法名 or 属性名:Clear|common_ts_ets_api.d.ts| +|新增||模块名: enums
类名: TitleHeight|enums.d.ts| +|新增||模块名: enums
类名: TitleHeight
方法名 or 属性名: MainOnly|enums.d.ts| +|新增||模块名: enums
类名: TitleHeight
方法名 or 属性名: MainWithSub|enums.d.ts| +|新增||模块名: flow_item
类名: FlowItemInterface|flow_item.d.ts| +|新增||模块名: flow_item
类名: FlowItemInterface
方法名 or 属性名: FlowItemInterface|flow_item.d.ts| +|新增||模块名: flow_item
类名: FlowItemAttribute|flow_item.d.ts| +|新增||方法名 or 属性名:FormComponentInterface
函数:(value: {
id: number;
name: string;
bundle: string;
ability: string;
module: string;
dimension?: FormDimension;
temporary?: boolean;
want?: import('../api/@ohos.application.Want').default;
}): FormComponentAttribute;|form_component.d.ts| +|新增||方法名 or 属性名:GridColInterface
函数:(option?: GridColOptions): GridColAttribute;|grid_col.d.ts| +|新增||模块名: navigation
类名: NavigationCommonTitle|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationCommonTitle
方法名 or 属性名:main|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationCommonTitle
方法名 or 属性名:sub|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationCustomTitle|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationCustomTitle
方法名 or 属性名:builder|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationCustomTitle
方法名 or 属性名:height|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationMode|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationMode
方法名 or 属性名:Stack|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationMode
方法名 or 属性名:Split|navigation.d.ts| +|新增||模块名: navigation
类名: NavigationMode
方法名 or 属性名:Auto|navigation.d.ts| +|新增||模块名: navigation
类名: NavBarPosition|navigation.d.ts| +|新增||模块名: navigation
类名: NavBarPosition
方法名 or 属性名:Start|navigation.d.ts| +|新增||模块名: navigation
类名: NavBarPosition
方法名 or 属性名:End|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:navBarWidth|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:navBarPosition|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:mode|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:backButtonIcon|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:hideNavBar|navigation.d.ts| +|新增||方法名 or 属性名:title
函数:title(value: string \| CustomBuilder \| NavigationCommonTitle \| NavigationCustomTitle): NavigationAttribute;|navigation.d.ts| +|新增||模块名:navigation
类名:NavigationAttribute
方法名 or 属性名:onNavBarStateChange|navigation.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCommonTitle|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCommonTitle
方法名 or 属性名: main|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCommonTitle
方法名 or 属性名: sub|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCustomTitle|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCustomTitle
方法名 or 属性名: builder|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationCustomTitle
方法名 or 属性名: height|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationInterface|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationInterface
方法名 or 属性名: NavDestinationInterface|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationAttribute|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationAttribute
方法名 or 属性名: title|nav_destination.d.ts| +|新增||模块名: nav_destination
类名: NavDestinationAttribute
方法名 or 属性名: hideTitleBar|nav_destination.d.ts| +|新增||模块名: nav_router
类名: NavRouterInterface|nav_router.d.ts| +|新增||模块名: nav_router
类名: NavRouterInterface
方法名 or 属性名: NavRouterInterface|nav_router.d.ts| +|新增||模块名: nav_router
类名: NavRouterAttribute|nav_router.d.ts| +|新增||模块名: nav_router
类名: NavRouterAttribute
方法名 or 属性名: onStateChange|nav_router.d.ts| +|新增||模块名: water_flow
类名: WaterFlowOptions|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowOptions
方法名 or 属性名: footer|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowOptions
方法名 or 属性名: scroller|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowInterface|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowInterface
方法名 or 属性名: WaterFlowInterface|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: columnsTemplate|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: itemConstraintSize|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: rowsTemplate|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: columnsGap|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: rowsGap|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: layoutDirection|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: onReachStart|water_flow.d.ts| +|新增||模块名: water_flow
类名: WaterFlowAttribute
方法名 or 属性名: onReachEnd|water_flow.d.ts| +|新增||模块名: web
类名: FullScreenExitHandler|web.d.ts| +|新增||模块名: web
类名: FullScreenExitHandler
方法名 or 属性名:exitFullScreen|web.d.ts| +|新增||模块名: web
类名: ControllerHandler|web.d.ts| +|新增||模块名: web
类名: ControllerHandler
方法名 or 属性名:setWebController|web.d.ts| +|新增||模块名:web
类名:WebController
方法名 or 属性名:getUrl|web.d.ts| +|新增||方法名 or 属性名:controller
函数:controller: WebController \| WebviewController;|web.d.ts| +|新增||方法名 or 属性名:javaScriptProxy
函数:javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array,
controller: WebController \| WebviewController }): WebAttribute;|web.d.ts| +|新增||模块名:web
类名:WebAttribute
方法名 or 属性名:onFullScreenExit|web.d.ts| +|新增||模块名:web
类名:WebAttribute
方法名 or 属性名:onFullScreenEnter|web.d.ts| +|新增||模块名:web
类名:WebAttribute
方法名 or 属性名:onWindowNew|web.d.ts| +|新增||模块名:web
类名:WebAttribute
方法名 or 属性名:onWindowExit|web.d.ts| +|新增||模块名:web
类名:WebAttribute
方法名 or 属性名:multiWindowAccess|web.d.ts| +|新增||模块名:viewmodel
类名:ViewModel
方法名 or 属性名:$t|viewmodel.d.ts| +|新增||模块名:viewmodel
类名:ElementReferences
方法名 or 属性名:ElementReferences|viewmodel.d.ts| +|删除|模块名: ohos.uiAppearance
类名: uiAppearance||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: DarkMode||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: DarkMode
方法名 or 属性名: ALWAYS_DARK||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: DarkMode
方法名 or 属性名: ALWAYS_LIGHT||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: uiAppearance
方法名 or 属性名: setDarkMode||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: uiAppearance
方法名 or 属性名: setDarkMode||@ohos.uiAppearance.d.ts| +|删除|模块名: ohos.uiAppearance
类名: uiAppearance
方法名 or 属性名: getDarkMode||@ohos.uiAppearance.d.ts| +|删除|模块名:web
类名:WebAttribute
方法名 or 属性名:fileFromUrlAccess||web.d.ts| +|废弃版本有变化|方法名 or 属性名:update
废弃版本:|方法名 or 属性名:update
废弃版本:9
代替接口:ohos.animator.reset |@ohos.animator.d.ts| +|废弃版本有变化|方法名 or 属性名:createAnimator
废弃版本:|方法名 or 属性名:createAnimator
废弃版本:9
代替接口:ohos.animator.create |@ohos.animator.d.ts| +|废弃版本有变化|类名:prompt
废弃版本:|类名:prompt
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:ShowToastOptions
废弃版本:|类名:ShowToastOptions
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:message
废弃版本:|方法名 or 属性名:message
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:duration
废弃版本:|方法名 or 属性名:duration
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:bottom
废弃版本:|方法名 or 属性名:bottom
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:Button
废弃版本:|类名:Button
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:text
废弃版本:|方法名 or 属性名:text
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:color
废弃版本:|方法名 or 属性名:color
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:ShowDialogSuccessResponse
废弃版本:|类名:ShowDialogSuccessResponse
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:index
废弃版本:|方法名 or 属性名:index
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:ShowDialogOptions
废弃版本:|类名:ShowDialogOptions
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:title
废弃版本:|方法名 or 属性名:title
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:message
废弃版本:|方法名 or 属性名:message
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:buttons
废弃版本:|方法名 or 属性名:buttons
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:ActionMenuSuccessResponse
废弃版本:|类名:ActionMenuSuccessResponse
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:index
废弃版本:|方法名 or 属性名:index
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|类名:ActionMenuOptions
废弃版本:|类名:ActionMenuOptions
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:title
废弃版本:|方法名 or 属性名:title
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:buttons
废弃版本:|方法名 or 属性名:buttons
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:showToast
废弃版本:|方法名 or 属性名:showToast
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:showDialog
废弃版本:|方法名 or 属性名:showDialog
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:showActionMenu
废弃版本:|方法名 or 属性名:showActionMenu
废弃版本:9
代替接口:ohos.promptAction |@ohos.prompt.d.ts| +|废弃版本有变化|方法名 or 属性名:push
废弃版本:|方法名 or 属性名:push
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|方法名 or 属性名:replace
废弃版本:|方法名 or 属性名:replace
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|方法名 or 属性名:enableAlertBeforeBackPage
废弃版本:|方法名 or 属性名:enableAlertBeforeBackPage
废弃版本:9
代替接口:ohos.router.router|@ohos.router.d.ts| +|废弃版本有变化|方法名 or 属性名:staticClear
废弃版本:|方法名 or 属性名:staticClear
废弃版本:9
代替接口:AppStorage.Clear |common_ts_ets_api.d.ts| +|废弃版本有变化|方法名 or 属性名:subTitle
废弃版本:|方法名 or 属性名:subTitle
废弃版本:9
代替接口:title |navigation.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(message
废弃版本:|方法名 or 属性名:ructor(message
废弃版本:9
代替接口:ohos.web.ConsoleMessage|web.d.ts| +|废弃版本有变化|类名:WebController
废弃版本:|类名:WebController
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:onInactive
废弃版本:|方法名 or 属性名:onInactive
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:onActive
废弃版本:|方法名 or 属性名:onActive
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:zoom
废弃版本:|方法名 or 属性名:zoom
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:zoomIn
废弃版本:|方法名 or 属性名:zoomIn
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:zoomOut
废弃版本:|方法名 or 属性名:zoomOut
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:clearHistory
废弃版本:|方法名 or 属性名:clearHistory
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:runJavaScript
废弃版本:|方法名 or 属性名:runJavaScript
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:createWebMessagePorts
废弃版本:|方法名 or 属性名:createWebMessagePorts
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:postMessage
废弃版本:|方法名 or 属性名:postMessage
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:loadData
废弃版本:|方法名 or 属性名:loadData
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:loadUrl
废弃版本:|方法名 or 属性名:loadUrl
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:refresh
废弃版本:|方法名 or 属性名:refresh
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:stop
废弃版本:|方法名 or 属性名:stop
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:registerJavaScriptProxy
废弃版本:|方法名 or 属性名:registerJavaScriptProxy
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteJavaScriptRegister
废弃版本:|方法名 or 属性名:deleteJavaScriptRegister
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:getHitTest
废弃版本:|方法名 or 属性名:getHitTest
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:getHitTestValue
废弃版本:|方法名 or 属性名:getHitTestValue
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:getWebId
废弃版本:|方法名 or 属性名:getWebId
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:getDefaultUserAgent
废弃版本:|方法名 or 属性名:getDefaultUserAgent
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:getTitle
废弃版本:|方法名 or 属性名:getTitle
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:getPageHeight
废弃版本:|方法名 or 属性名:getPageHeight
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:requestFocus
废弃版本:|方法名 or 属性名:requestFocus
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:accessBackward
废弃版本:|方法名 or 属性名:accessBackward
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:accessForward
废弃版本:|方法名 or 属性名:accessForward
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:accessStep
废弃版本:|方法名 or 属性名:accessStep
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:backward
废弃版本:|方法名 or 属性名:backward
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:forward
废弃版本:|方法名 or 属性名:forward
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController|web.d.ts| +|废弃版本有变化|方法名 or 属性名:backOrForward
废弃版本:|方法名 or 属性名:backOrForward
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:getCookieManager
废弃版本:|方法名 or 属性名:getCookieManager
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:searchAllAsync
废弃版本:|方法名 or 属性名:searchAllAsync
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:clearMatches
废弃版本:|方法名 or 属性名:clearMatches
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:searchNext
废弃版本:|方法名 or 属性名:searchNext
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:clearSslCache
废弃版本:|方法名 or 属性名:clearSslCache
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|废弃版本有变化|方法名 or 属性名:clearClientAuthenticationCache
废弃版本:|方法名 or 属性名:clearClientAuthenticationCache
废弃版本:9
代替接口:ohos.web.webview.webview.WebviewController |web.d.ts| +|起始版本有变化|方法名 or 属性名:extendViewModel
起始版本:|方法名 or 属性名:extendViewModel
起始版本:4|viewmodel.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-battery.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-battery.md new file mode 100644 index 0000000000000000000000000000000000000000..ecfd8d0dbdf21bfa3f545042ffc91ba9cdbfb6ac --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-battery.md @@ -0,0 +1,72 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.power
类名:power
方法名 or 属性名:shutdown|@ohos.power.d.ts| +|新增||模块名:ohos.power
类名:power
方法名 or 属性名:reboot|@ohos.power.d.ts| +|新增||模块名:ohos.power
类名:power
方法名 or 属性名:isActive|@ohos.power.d.ts| +|新增||模块名:ohos.power
类名:power
方法名 or 属性名:wakeup|@ohos.power.d.ts| +|新增||模块名:ohos.power
类名:power
方法名 or 属性名:suspend|@ohos.power.d.ts| +|新增||方法名 or 属性名:getPowerMode
函数:function getPowerMode(): DevicePowerMode;|@ohos.power.d.ts| +|新增||模块名:ohos.runningLock
类名:RunningLock
方法名 or 属性名:hold|@ohos.runningLock.d.ts| +|新增||模块名:ohos.runningLock
类名:RunningLock
方法名 or 属性名:isHolding|@ohos.runningLock.d.ts| +|新增||模块名:ohos.runningLock
类名:RunningLock
方法名 or 属性名:unhold|@ohos.runningLock.d.ts| +|新增||模块名:ohos.runningLock
类名:runningLock
方法名 or 属性名:isSupported|@ohos.runningLock.d.ts| +|新增||模块名:ohos.runningLock
类名:runningLock
方法名 or 属性名:create|@ohos.runningLock.d.ts| +|新增||模块名:ohos.runningLock
类名:runningLock
方法名 or 属性名:create|@ohos.runningLock.d.ts| +|新增||模块名:ohos.thermal
类名:thermal
方法名 or 属性名:registerThermalLevelCallback|@ohos.thermal.d.ts| +|新增||模块名:ohos.thermal
类名:thermal
方法名 or 属性名:unregisterThermalLevelCallback|@ohos.thermal.d.ts| +|新增||模块名:ohos.thermal
类名:thermal
方法名 or 属性名:getLevel|@ohos.thermal.d.ts| +|删除|模块名:ohos.power
类名:power
方法名 or 属性名:shutdownDevice||@ohos.power.d.ts| +|删除|模块名:ohos.power
类名:power
方法名 or 属性名:wakeupDevice||@ohos.power.d.ts| +|删除|模块名:ohos.power
类名:power
方法名 or 属性名:suspendDevice||@ohos.power.d.ts| +|废弃版本有变化|方法名 or 属性名:rebootDevice
废弃版本:|方法名 or 属性名:rebootDevice
废弃版本:9
代替接口:{@link power|@ohos.power.d.ts| +|废弃版本有变化|方法名 or 属性名:isScreenOn
废弃版本:|方法名 or 属性名:isScreenOn
废弃版本:9
代替接口:{@link power|@ohos.power.d.ts| +|废弃版本有变化|方法名 or 属性名:lock
废弃版本:|方法名 or 属性名:lock
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|方法名 or 属性名:isUsed
废弃版本:|方法名 or 属性名:isUsed
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|方法名 or 属性名:unlock
废弃版本:|方法名 or 属性名:unlock
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|方法名 or 属性名:isRunningLockTypeSupported
废弃版本:|方法名 or 属性名:isRunningLockTypeSupported
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|方法名 or 属性名:createRunningLock
废弃版本:|方法名 or 属性名:createRunningLock
废弃版本:9
代替接口:{@link RunningLock|@ohos.runningLock.d.ts| +|废弃版本有变化|方法名 or 属性名:subscribeThermalLevel
废弃版本:|方法名 or 属性名:subscribeThermalLevel
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|方法名 or 属性名:unsubscribeThermalLevel
废弃版本:|方法名 or 属性名:unsubscribeThermalLevel
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|方法名 or 属性名:getThermalLevel
废弃版本:|方法名 or 属性名:getThermalLevel
废弃版本:9
代替接口:{@link thermal|@ohos.thermal.d.ts| +|废弃版本有变化|类名:BatteryResponse
废弃版本:9|类名:BatteryResponse
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:charging
废弃版本:9|方法名 or 属性名:charging
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:level
废弃版本:9|方法名 or 属性名:level
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|类名:GetStatusOptions
废弃版本:9|类名:GetStatusOptions
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|类名:Battery
废弃版本:9|类名:Battery
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|方法名 or 属性名:getStatus
废弃版本:9|方法名 or 属性名:getStatus
废弃版本:6|@system.battery.d.ts| +|废弃版本有变化|类名:BrightnessResponse
废弃版本:9|类名:BrightnessResponse
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:9|方法名 or 属性名:value
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessOptions
废弃版本:9|类名:GetBrightnessOptions
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessOptions
废弃版本:9|类名:SetBrightnessOptions
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:9|方法名 or 属性名:value
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:BrightnessModeResponse
废弃版本:9|类名:BrightnessModeResponse
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:mode
废弃版本:9|方法名 or 属性名:mode
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:GetBrightnessModeOptions
废弃版本:9|类名:GetBrightnessModeOptions
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:SetBrightnessModeOptions
废弃版本:9|类名:SetBrightnessModeOptions
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:mode
废弃版本:9|方法名 or 属性名:mode
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:SetKeepScreenOnOptions
废弃版本:9|类名:SetKeepScreenOnOptions
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:keepScreenOn
废弃版本:9|方法名 or 属性名:keepScreenOn
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:9|方法名 or 属性名:success
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:9|方法名 or 属性名:fail
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:9|方法名 or 属性名:complete
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|类名:Brightness
废弃版本:9|类名:Brightness
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:getValue
废弃版本:9|方法名 or 属性名:getValue
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:setValue
废弃版本:9|方法名 or 属性名:setValue
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:getMode
废弃版本:9|方法名 or 属性名:getMode
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:setMode
废弃版本:9|方法名 or 属性名:setMode
废弃版本:7|@system.brightness.d.ts| +|废弃版本有变化|方法名 or 属性名:setKeepScreenOn
废弃版本:9|方法名 or 属性名:setKeepScreenOn
废弃版本:7|@system.brightness.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-bundle.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-bundle.md new file mode 100644 index 0000000000000000000000000000000000000000..68266ccd5c2bca30ee3ec9fe4c03815131f714d0 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-bundle.md @@ -0,0 +1,652 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.bundle.appControl
类名: appControl|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: setDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: setDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: getDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: getDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: deleteDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.appControl
类名: appControl
方法名 or 属性名: deleteDisposedStatus|@ohos.bundle.appControl.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_HAP_MODULE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_ABILITY|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_EXTENSION_ABILITY|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_REQUESTED_PERMISSION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: BundleFlag
方法名 or 属性名: GET_BUNDLE_INFO_WITH_SIGNATURE_INFO|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ApplicationFlag|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法名 or 属性名: GET_APPLICATION_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法名 or 属性名: GET_APPLICATION_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法名 or 属性名: GET_APPLICATION_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ApplicationFlag
方法名 or 属性名: GET_APPLICATION_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_WITH_DISABLE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityFlag
方法名 or 属性名: GET_ABILITY_INFO_ONLY_SYSTEM_APP|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法名 or 属性名: GET_EXTENSION_ABILITY_INFO_DEFAULT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法名 or 属性名: GET_EXTENSION_ABILITY_INFO_WITH_PERMISSION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法名 or 属性名: GET_EXTENSION_ABILITY_INFO_WITH_APPLICATION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityFlag
方法名 or 属性名: GET_EXTENSION_ABILITY_INFO_WITH_METADATA|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: FORM|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: WORK_SCHEDULER|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: INPUT_METHOD|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: SERVICE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: ACCESSIBILITY|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: DATA_SHARE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: FILE_SHARE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: STATIC_SUBSCRIBER|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: WALLPAPER|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: BACKUP|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: WINDOW|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: ENTERPRISE_ADMIN|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: THUMBNAIL|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: PREVIEW|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: ExtensionAbilityType
方法名 or 属性名: UNSPECIFIED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: PermissionGrantState|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: PermissionGrantState
方法名 or 属性名: PERMISSION_DENIED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: PermissionGrantState
方法名 or 属性名: PERMISSION_GRANTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: SupportWindowMode|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法名 or 属性名: FULL_SCREEN|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法名 or 属性名: SPLIT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: SupportWindowMode
方法名 or 属性名: FLOATING|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: LaunchType|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: LaunchType
方法名 or 属性名: SINGLETON|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: LaunchType
方法名 or 属性名: STANDARD|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: LaunchType
方法名 or 属性名: SPECIFIED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityType|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityType
方法名 or 属性名: PAGE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityType
方法名 or 属性名: SERVICE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: AbilityType
方法名 or 属性名: DATA|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: UNSPECIFIED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: LANDSCAPE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: PORTRAIT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: FOLLOW_RECENT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: LANDSCAPE_INVERTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: PORTRAIT_INVERTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION_LANDSCAPE|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION_PORTRAIT|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION_LANDSCAPE_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: AUTO_ROTATION_PORTRAIT_RESTRICTED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: DisplayOrientation
方法名 or 属性名: LOCKED|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfoForSelf|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfoForSelf|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllBundleInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAllApplicationInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: queryExtensionAbilityInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleNameByUid|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleNameByUid|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleArchiveInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleArchiveInfo|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: cleanBundleCacheFiles|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: cleanBundleCacheFiles|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: setApplicationEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: setApplicationEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: setAbilityEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: setAbilityEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: isApplicationEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: isApplicationEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: isAbilityEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: isAbilityEnabled|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getLaunchWantForBundle|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getProfileByAbility|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getProfileByAbility|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getProfileByExtensionAbility|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getProfileByExtensionAbility|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getPermissionDef|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getPermissionDef|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAbilityLabel|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAbilityLabel|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAbilityIcon|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getAbilityIcon|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getApplicationInfoSync|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getApplicationInfoSync|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfoSync|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleManager
类名: bundleManager
方法名 or 属性名: getBundleInfoSync|@ohos.bundle.bundleManager.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo
方法名 or 属性名: bundleName|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: BundleChangedInfo
方法名 or 属性名: userId|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: on_add|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: on_update|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: on_remove|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: off_add|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: off_update|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名: ohos.bundle.bundleMonitor
类名: bundleMonitor
方法名 or 属性名: off_remove|@ohos.bundle.bundleMonitor.d.ts| +|新增||模块名:ohos.bundle.defaultAppManager
类名:ApplicationType|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:BROWSER
函数:BROWSER = "Web Browser"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:IMAGE
函数:IMAGE = "Image Gallery"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:AUDIO
函数:AUDIO = "Audio Player"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:VIDEO
函数:VIDEO = "Video Player"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:PDF
函数:PDF = "PDF Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:WORD
函数:WORD = "Word Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:EXCEL
函数:EXCEL = "Excel Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增||方法名 or 属性名:PPT
函数:PPT = "PPT Viewer"|@ohos.bundle.defaultAppManager.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.distributedBundle
类名: distributedBundle
方法名 or 属性名: getRemoteAbilityInfo|@ohos.bundle.distributedBundle.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: UpgradeFlag|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法名 or 属性名: NOT_UPGRADE|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法名 or 属性名: SINGLE_UPGRADE|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: UpgradeFlag
方法名 or 属性名: RELATION_UPGRADE|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: BundlePackFlag|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法名 or 属性名: GET_PACK_INFO_ALL|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法名 or 属性名: GET_PACKAGES|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法名 or 属性名: GET_BUNDLE_SUMMARY|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: BundlePackFlag
方法名 or 属性名: GET_MODULE_SUMMARY|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: setHapModuleUpgradeFlag|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: setHapModuleUpgradeFlag|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: isHapModuleRemovable|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: isHapModuleRemovable|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: getBundlePackInfo|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: getBundlePackInfo|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: getDispatchInfo|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.freeInstall
类名: freeInstall
方法名 or 属性名: getDispatchInfo|@ohos.bundle.freeInstall.d.ts| +|新增||模块名: ohos.bundle.installer
类名: installer|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: installer
方法名 or 属性名: getBundleInstaller|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: installer
方法名 or 属性名: getBundleInstaller|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: BundleInstaller|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: BundleInstaller
方法名 or 属性名: install|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: BundleInstaller
方法名 or 属性名: uninstall|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: BundleInstaller
方法名 or 属性名: recover|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: HashParam|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: HashParam
方法名 or 属性名: moduleName|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: HashParam
方法名 or 属性名: hashValue|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam
方法名 or 属性名: userId|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam
方法名 or 属性名: installFlag|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam
方法名 or 属性名: isKeepData|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam
方法名 or 属性名: hashParams|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.installer
类名: InstallParam
方法名 or 属性名: crowdtestDeadline|@ohos.bundle.installer.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getAllLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getAllLauncherAbilityInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getShortcutInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名: ohos.bundle.launcherBundleManager
类名: launcherBundleManager
方法名 or 属性名: getShortcutInfo|@ohos.bundle.launcherBundleManager.d.ts| +|新增||模块名:ohos.zlib
类名:zlib
方法名 or 属性名:compressFile|@ohos.zlib.d.ts| +|新增||模块名:ohos.zlib
类名:zlib
方法名 or 属性名:compressFile|@ohos.zlib.d.ts| +|新增||模块名:ohos.zlib
类名:zlib
方法名 or 属性名:decompressFile|@ohos.zlib.d.ts| +|新增||模块名:ohos.zlib
类名:zlib
方法名 or 属性名:decompressFile|@ohos.zlib.d.ts| +|新增||方法名 or 属性名:type
函数:readonly type: bundleManager.AbilityType;|abilityInfo.d.ts| +|新增||方法名 or 属性名:orientation
函数:readonly orientation: bundleManager.DisplayOrientation;|abilityInfo.d.ts| +|新增||模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:launchType|abilityInfo.d.ts| +|新增||模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:supportWindowModes|abilityInfo.d.ts| +|新增||模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:windowSize|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:maxWindowRatio|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:minWindowRatio|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:maxWindowWidth|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:minWindowWidth|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:maxWindowHeight|abilityInfo.d.ts| +|新增||模块名: abilityInfo
类名: WindowSize
方法名 or 属性名:minWindowHeight|abilityInfo.d.ts| +|新增||方法名 or 属性名:labelId
函数:readonly labelId: number;|applicationInfo.d.ts| +|新增||方法名 or 属性名:iconId
函数:readonly iconId: number;|applicationInfo.d.ts| +|新增||模块名:bundleInfo
类名:BundleInfo
方法名 or 属性名:hapModulesInfo|bundleInfo.d.ts| +|新增||模块名:bundleInfo
类名:BundleInfo
方法名 or 属性名:permissionGrantStates|bundleInfo.d.ts| +|新增||模块名:bundleInfo
类名:BundleInfo
方法名 or 属性名:signatureInfo|bundleInfo.d.ts| +|新增||模块名: bundleInfo
类名: SignatureInfo|bundleInfo.d.ts| +|新增||模块名: bundleInfo
类名: SignatureInfo
方法名 or 属性名:appId|bundleInfo.d.ts| +|新增||模块名: bundleInfo
类名: SignatureInfo
方法名 or 属性名:fingerprint|bundleInfo.d.ts| +|新增||模块名:dispatchInfo
类名:DispatchInfo|dispatchInfo.d.ts| +|新增||模块名:dispatchInfo
类名:DispatchInfo
方法名 or 属性名:version|dispatchInfo.d.ts| +|新增||模块名:dispatchInfo
类名:DispatchInfo
方法名 or 属性名:dispatchAPIVersion|dispatchInfo.d.ts| +|新增||模块名:elementName
类名:ElementName
方法名 or 属性名:moduleName|elementName.d.ts| +|新增||方法名 or 属性名:extensionAbilityType
函数:readonly extensionAbilityType: bundleManager.ExtensionAbilityType;|extensionAbilityInfo.d.ts| +|新增||模块名:hapModuleInfo
类名:HapModuleInfo
方法名 or 属性名:abilitiesInfo|hapModuleInfo.d.ts| +|新增||模块名:hapModuleInfo
类名:HapModuleInfo
方法名 or 属性名:extensionAbilitiesInfo|hapModuleInfo.d.ts| +|新增||模块名:hapModuleInfo
类名:HapModuleInfo
方法名 or 属性名:moduleSourceDir|hapModuleInfo.d.ts| +|新增||模块名:packInfo
类名:BundlePackInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:BundlePackInfo
方法名 or 属性名:packages|packInfo.d.ts| +|新增||模块名:packInfo
类名:BundlePackInfo
方法名 or 属性名:summary|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageConfig|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageConfig
方法名 or 属性名:deviceTypes|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageConfig
方法名 or 属性名:name|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageConfig
方法名 or 属性名:moduleType|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageConfig
方法名 or 属性名:deliveryWithInstall|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageSummary|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageSummary
方法名 or 属性名:app|packInfo.d.ts| +|新增||模块名:packInfo
类名:PackageSummary
方法名 or 属性名:modules|packInfo.d.ts| +|新增||模块名:packInfo
类名:BundleConfigInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:BundleConfigInfo
方法名 or 属性名:bundleName|packInfo.d.ts| +|新增||模块名:packInfo
类名:BundleConfigInfo
方法名 or 属性名:version|packInfo.d.ts| +|新增||模块名: packInfo
类名: ExtensionAbility|packInfo.d.ts| +|新增||模块名: packInfo
类名: ExtensionAbility
方法名 or 属性名:name|packInfo.d.ts| +|新增||模块名: packInfo
类名: ExtensionAbility
方法名 or 属性名:forms|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:mainAbility|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:apiVersion|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:deviceTypes|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:distro|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:abilities|packInfo.d.ts| +|新增||方法名 or 属性名:extensionAbilities
函数:readonly extensionAbilities: Array;|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleDistroInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleDistroInfo
方法名 or 属性名:deliveryWithInstall|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleDistroInfo
方法名 or 属性名:installationFree|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleDistroInfo
方法名 or 属性名:moduleName|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleDistroInfo
方法名 or 属性名:moduleType|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleAbilityInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleAbilityInfo
方法名 or 属性名:name|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleAbilityInfo
方法名 or 属性名:label|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleAbilityInfo
方法名 or 属性名:visible|packInfo.d.ts| +|新增||模块名:packInfo
类名:ModuleAbilityInfo
方法名 or 属性名:forms|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo
方法名 or 属性名:name|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo
方法名 or 属性名:type|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo
方法名 or 属性名:updateEnabled|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo
方法名 or 属性名:scheduledUpdateTime|packInfo.d.ts| +|新增||模块名:packInfo
类名:AbilityFormInfo
方法名 or 属性名:updateDuration|packInfo.d.ts| +|新增||方法名 or 属性名:supportDimensions
函数:readonly supportDimensions: Array;|packInfo.d.ts| +|新增||方法名 or 属性名:defaultDimension
函数:readonly defaultDimension: string;|packInfo.d.ts| +|新增||模块名:packInfo
类名:Version|packInfo.d.ts| +|新增||模块名:packInfo
类名:Version
方法名 or 属性名:minCompatibleVersionCode|packInfo.d.ts| +|新增||模块名:packInfo
类名:Version
方法名 or 属性名:name|packInfo.d.ts| +|新增||模块名:packInfo
类名:Version
方法名 or 属性名:code|packInfo.d.ts| +|新增||模块名:packInfo
类名:ApiVersion|packInfo.d.ts| +|新增||模块名:packInfo
类名:ApiVersion
方法名 or 属性名:releaseType|packInfo.d.ts| +|新增||模块名:packInfo
类名:ApiVersion
方法名 or 属性名:compatible|packInfo.d.ts| +|新增||模块名:packInfo
类名:ApiVersion
方法名 or 属性名:target|packInfo.d.ts| +|新增||模块名: permissionDef
类名: PermissionDef|permissionDef.d.ts| +|新增||模块名: permissionDef
类名: PermissionDef
方法名 or 属性名: permissionName|permissionDef.d.ts| +|新增||模块名: permissionDef
类名: PermissionDef
方法名 or 属性名: grantMode|permissionDef.d.ts| +|新增||模块名: permissionDef
类名: PermissionDef
方法名 or 属性名: labelId|permissionDef.d.ts| +|新增||模块名: permissionDef
类名: PermissionDef
方法名 or 属性名: descriptionId|permissionDef.d.ts| +|新增||方法名 or 属性名:moduleName
函数:readonly moduleName: string;|shortcutInfo.d.ts| +|新增||模块名:shortcutInfo
类名:ShortcutWant
方法名 or 属性名:targetAbility|shortcutInfo.d.ts| +|删除|模块名:ohos.bundle
类名:BundleFlag
方法名 or 属性名:GET_BUNDLE_WITH_EXTENSION_ABILITY||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:BundleFlag
方法名 or 属性名:GET_BUNDLE_WITH_HASH_VALUE||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:BundleFlag
方法名 or 属性名:GET_APPLICATION_INFO_WITH_CERTIFICATE_FINGERPRINT||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionFlag||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionFlag
方法名 or 属性名:GET_EXTENSION_INFO_DEFAULT||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionFlag
方法名 or 属性名:GET_EXTENSION_INFO_WITH_PERMISSION||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionFlag
方法名 or 属性名:GET_EXTENSION_INFO_WITH_APPLICATION||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionFlag
方法名 or 属性名:GET_EXTENSION_INFO_WITH_METADATA||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:LANDSCAPE_INVERTED||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:PORTRAIT_INVERTED||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION_LANDSCAPE||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION_PORTRAIT||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION_RESTRICTED||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION_LANDSCAPE_RESTRICTED||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:AUTO_ROTATION_PORTRAIT_RESTRICTED||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:DisplayOrientation
方法名 or 属性名:LOCKED||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:FORM||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:WORK_SCHEDULER||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:INPUT_METHOD||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:SERVICE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:ACCESSIBILITY||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:DATA_SHARE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:FILE_SHARE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:STATIC_SUBSCRIBER||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:WALLPAPER||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:BACKUP||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:WINDOW||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:ENTERPRISE_ADMIN||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:THUMBNAIL||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:PREVIEW||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: ExtensionAbilityType
方法名 or 属性名:UNSPECIFIED||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: UpgradeFlag||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: UpgradeFlag
方法名 or 属性名:NOT_UPGRADE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: UpgradeFlag
方法名 or 属性名:SINGLE_UPGRADE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: UpgradeFlag
方法名 or 属性名:RELATION_UPGRADE||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: SupportWindowMode||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: SupportWindowMode
方法名 or 属性名:FULL_SCREEN||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: SupportWindowMode
方法名 or 属性名:SPLIT||@ohos.bundle.d.ts| +|删除|模块名: ohos.bundle
类名: SupportWindowMode
方法名 or 属性名:FLOATING||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:queryExtensionAbilityInfos||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:queryExtensionAbilityInfos||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:queryExtensionAbilityInfos||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:setModuleUpgradeFlag||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:setModuleUpgradeFlag||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:isModuleRemovable||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:isModuleRemovable||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getBundlePackInfo||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getBundlePackInfo||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getDispatcherVersion||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getDispatcherVersion||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getProfileByAbility||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getProfileByAbility||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getProfileByExtensionAbility||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getProfileByExtensionAbility||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:setDisposedStatus||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:setDisposedStatus||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getDisposedStatus||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getDisposedStatus||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getApplicationInfoSync||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getApplicationInfoSync||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getBundleInfoSync||@ohos.bundle.d.ts| +|删除|模块名:ohos.bundle
类名:bundle
方法名 or 属性名:getBundleInfoSync||@ohos.bundle.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:supportWindowMode||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:maxWindowRatio||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:minWindowRatio||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:maxWindowWidth||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:minWindowWidth||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:maxWindowHeight||abilityInfo.d.ts| +|删除|模块名:abilityInfo
类名:AbilityInfo
方法名 or 属性名:minWindowHeight||abilityInfo.d.ts| +|删除|模块名:applicationInfo
类名:ApplicationInfo
方法名 or 属性名:labelIndex||applicationInfo.d.ts| +|删除|模块名:applicationInfo
类名:ApplicationInfo
方法名 or 属性名:iconIndex||applicationInfo.d.ts| +|删除|模块名:applicationInfo
类名:ApplicationInfo
方法名 or 属性名:fingerprint||applicationInfo.d.ts| +|删除|模块名:bundleInfo
类名:BundleInfo
方法名 or 属性名:extensionAbilityInfo||bundleInfo.d.ts| +|删除|模块名: bundleInstaller
类名: HashParam||bundleInstaller.d.ts| +|删除|模块名: bundleInstaller
类名: HashParam
方法名 or 属性名:moduleName||bundleInstaller.d.ts| +|删除|模块名: bundleInstaller
类名: HashParam
方法名 or 属性名:hashValue||bundleInstaller.d.ts| +|删除|模块名:bundleInstaller
类名:InstallParam
方法名 or 属性名:hashParams||bundleInstaller.d.ts| +|删除|模块名:bundleInstaller
类名:InstallParam
方法名 or 属性名:crowdtestDeadline||bundleInstaller.d.ts| +|删除|模块名:dispatchInfo
类名:DispatchInfo
方法名 or 属性名:dispatchAPI||dispatchInfo.d.ts| +|删除|模块名:hapModuleInfo
类名:HapModuleInfo
方法名 or 属性名:extensionAbilityInfo||hapModuleInfo.d.ts| +|删除|模块名:packInfo
类名:PackageConfig
方法名 or 属性名:deviceType||packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbilities||packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbilities
方法名 or 属性名:name||packInfo.d.ts| +|删除|模块名: packInfo
类名: ExtensionAbilities
方法名 or 属性名:forms||packInfo.d.ts| +|删除|模块名:packInfo
类名:ModuleConfigInfo
方法名 or 属性名:deviceType||packInfo.d.ts| +|删除|模块名:packInfo
类名:ModuleDistroInfo
方法名 or 属性名:mainAbility||packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackFlag||packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackFlag
方法名 or 属性名:GET_PACK_INFO_ALL||packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackFlag
方法名 or 属性名:GET_PACKAGES||packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackFlag
方法名 or 属性名:GET_BUNDLE_SUMMARY||packInfo.d.ts| +|删除|模块名: packInfo
类名: BundlePackFlag
方法名 or 属性名:GET_MODULE_SUMMARY||packInfo.d.ts| +|废弃版本有变化|类名:bundle
废弃版本:|类名:bundle
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|类名:BundleFlag
废弃版本:|类名:BundleFlag
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_BUNDLE_DEFAULT
废弃版本:|方法名 or 属性名:GET_BUNDLE_DEFAULT
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_BUNDLE_WITH_ABILITIES
废弃版本:|方法名 or 属性名:GET_BUNDLE_WITH_ABILITIES
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ABILITY_INFO_WITH_PERMISSION
废弃版本:|方法名 or 属性名:GET_ABILITY_INFO_WITH_PERMISSION
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ABILITY_INFO_WITH_APPLICATION
废弃版本:|方法名 or 属性名:GET_ABILITY_INFO_WITH_APPLICATION
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_APPLICATION_INFO_WITH_PERMISSION
废弃版本:|方法名 or 属性名:GET_APPLICATION_INFO_WITH_PERMISSION
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_BUNDLE_WITH_REQUESTED_PERMISSION
废弃版本:|方法名 or 属性名:GET_BUNDLE_WITH_REQUESTED_PERMISSION
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ALL_APPLICATION_INFO
废弃版本:|方法名 or 属性名:GET_ALL_APPLICATION_INFO
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ABILITY_INFO_WITH_METADATA
废弃版本:|方法名 or 属性名:GET_ABILITY_INFO_WITH_METADATA
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_APPLICATION_INFO_WITH_METADATA
废弃版本:|方法名 or 属性名:GET_APPLICATION_INFO_WITH_METADATA
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ABILITY_INFO_SYSTEMAPP_ONLY
废弃版本:|方法名 or 属性名:GET_ABILITY_INFO_SYSTEMAPP_ONLY
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_ABILITY_INFO_WITH_DISABLE
废弃版本:|方法名 or 属性名:GET_ABILITY_INFO_WITH_DISABLE
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:GET_APPLICATION_INFO_WITH_DISABLE
废弃版本:|方法名 or 属性名:GET_APPLICATION_INFO_WITH_DISABLE
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleFlag|@ohos.bundle.d.ts| +|废弃版本有变化|类名:ColorMode
废弃版本:|类名:ColorMode
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:AUTO_MODE
废弃版本:|方法名 or 属性名:AUTO_MODE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:DARK_MODE
废弃版本:|方法名 or 属性名:DARK_MODE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:LIGHT_MODE
废弃版本:|方法名 or 属性名:LIGHT_MODE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|类名:GrantStatus
废弃版本:|类名:GrantStatus
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionGrantState |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:PERMISSION_DENIED
废弃版本:|方法名 or 属性名:PERMISSION_DENIED
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionGrantState |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:PERMISSION_GRANTED
废弃版本:|方法名 or 属性名:PERMISSION_GRANTED
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionGrantState |@ohos.bundle.d.ts| +|废弃版本有变化|类名:AbilityType
废弃版本:|类名:AbilityType
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:PAGE
废弃版本:|方法名 or 属性名:PAGE
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:SERVICE
废弃版本:|方法名 or 属性名:SERVICE
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:DATA
废弃版本:|方法名 or 属性名:DATA
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityType |@ohos.bundle.d.ts| +|废弃版本有变化|类名:AbilitySubType
废弃版本:|类名:AbilitySubType
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:UNSPECIFIED
废弃版本:|方法名 or 属性名:UNSPECIFIED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:CA
废弃版本:|方法名 or 属性名:CA
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|类名:DisplayOrientation
废弃版本:|类名:DisplayOrientation
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:UNSPECIFIED
废弃版本:|方法名 or 属性名:UNSPECIFIED
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:LANDSCAPE
废弃版本:|方法名 or 属性名:LANDSCAPE
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:PORTRAIT
废弃版本:|方法名 or 属性名:PORTRAIT
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:FOLLOW_RECENT
废弃版本:|方法名 or 属性名:FOLLOW_RECENT
废弃版本:9
代替接口:ohos.bundle.bundleManager.DisplayOrientation |@ohos.bundle.d.ts| +|废弃版本有变化|类名:LaunchMode
废弃版本:|类名:LaunchMode
废弃版本:9
代替接口:ohos.bundle.bundleManager.LaunchType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:SINGLETON
废弃版本:|方法名 or 属性名:SINGLETON
废弃版本:9
代替接口:ohos.bundle.bundleManager.LaunchType |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STANDARD
废弃版本:|方法名 or 属性名:STANDARD
废弃版本:9
代替接口:ohos.bundle.bundleManager.LaunchType |@ohos.bundle.d.ts| +|废弃版本有变化|类名:BundleOptions
废弃版本:|类名:BundleOptions
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:userId
废弃版本:|方法名 or 属性名:userId
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|类名:InstallErrorCode
废弃版本:|类名:InstallErrorCode
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:SUCCESS
废弃版本:|方法名 or 属性名:SUCCESS
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_ABORTED
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_ABORTED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_INVALID
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_INVALID
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_CONFLICT
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_CONFLICT
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_STORAGE
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_STORAGE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_INCOMPATIBLE
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_INCOMPATIBLE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_UNINSTALL_FAILURE
废弃版本:|方法名 or 属性名:STATUS_UNINSTALL_FAILURE
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_BLOCKED
废弃版本:|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_BLOCKED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_ABORTED
废弃版本:|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_ABORTED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_CONFLICT
废弃版本:|方法名 or 属性名:STATUS_UNINSTALL_FAILURE_CONFLICT
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_DOWNLOAD_TIMEOUT
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_DOWNLOAD_TIMEOUT
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_FAILURE_DOWNLOAD_FAILED
废弃版本:|方法名 or 属性名:STATUS_INSTALL_FAILURE_DOWNLOAD_FAILED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_RECOVER_FAILURE_INVALID
废弃版本:|方法名 or 属性名:STATUS_RECOVER_FAILURE_INVALID
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_ABILITY_NOT_FOUND
废弃版本:|方法名 or 属性名:STATUS_ABILITY_NOT_FOUND
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_BMS_SERVICE_ERROR
废弃版本:|方法名 or 属性名:STATUS_BMS_SERVICE_ERROR
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_FAILED_NO_SPACE_LEFT
废弃版本:|方法名 or 属性名:STATUS_FAILED_NO_SPACE_LEFT
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_GRANT_REQUEST_PERMISSIONS_FAILED
废弃版本:|方法名 or 属性名:STATUS_GRANT_REQUEST_PERMISSIONS_FAILED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_INSTALL_PERMISSION_DENIED
废弃版本:|方法名 or 属性名:STATUS_INSTALL_PERMISSION_DENIED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:STATUS_UNINSTALL_PERMISSION_DENIED
废弃版本:|方法名 or 属性名:STATUS_UNINSTALL_PERMISSION_DENIED
废弃版本:9
代替接口:ohos.bundle.bundleManager |@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getBundleInfo
废弃版本:|方法名 or 属性名:getBundleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getBundleInstaller
废弃版本:|方法名 or 属性名:getBundleInstaller
废弃版本:9
代替接口:ohos.bundle.installer|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityInfo
废弃版本:|方法名 or 属性名:getAbilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getApplicationInfo
废弃版本:|方法名 or 属性名:getApplicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:queryAbilityByWant
废弃版本:|方法名 or 属性名:queryAbilityByWant
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllBundleInfo
废弃版本:|方法名 or 属性名:getAllBundleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllApplicationInfo
废弃版本:|方法名 or 属性名:getAllApplicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getNameForUid
废弃版本:|方法名 or 属性名:getNameForUid
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getBundleArchiveInfo
废弃版本:|方法名 or 属性名:getBundleArchiveInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getLaunchWantForBundle
废弃版本:|方法名 or 属性名:getLaunchWantForBundle
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:cleanBundleCacheFiles
废弃版本:|方法名 or 属性名:cleanBundleCacheFiles
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:setApplicationEnabled
废弃版本:|方法名 or 属性名:setApplicationEnabled
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:setAbilityEnabled
废弃版本:|方法名 or 属性名:setAbilityEnabled
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getPermissionDef
废弃版本:|方法名 or 属性名:getPermissionDef
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityLabel
废弃版本:|方法名 or 属性名:getAbilityLabel
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getAbilityIcon
废弃版本:|方法名 or 属性名:getAbilityIcon
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:isAbilityEnabled
废弃版本:|方法名 or 属性名:isAbilityEnabled
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:isApplicationEnabled
废弃版本:|方法名 or 属性名:isApplicationEnabled
废弃版本:9
代替接口:ohos.bundle.bundleManager|@ohos.bundle.d.ts| +|废弃版本有变化|方法名 or 属性名:isDefaultApplication
废弃版本:undefined|方法名 or 属性名:isDefaultApplication
废弃版本:|@ohos.bundle.defaultAppManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getDefaultApplication
废弃版本:undefined|方法名 or 属性名:getDefaultApplication
废弃版本:|@ohos.bundle.defaultAppManager.d.ts| +|废弃版本有变化|方法名 or 属性名:setDefaultApplication
废弃版本:undefined|方法名 or 属性名:setDefaultApplication
废弃版本:|@ohos.bundle.defaultAppManager.d.ts| +|废弃版本有变化|方法名 or 属性名:resetDefaultApplication
废弃版本:undefined|方法名 or 属性名:resetDefaultApplication
废弃版本:|@ohos.bundle.defaultAppManager.d.ts| +|废弃版本有变化|类名:innerBundleManager
废弃版本:|类名:innerBundleManager
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager |@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getLauncherAbilityInfos
废弃版本:|方法名 or 属性名:getLauncherAbilityInfos
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|方法名 or 属性名:on_BundleStatusChange
废弃版本:|方法名 or 属性名:on_BundleStatusChange
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|方法名 or 属性名:off_BundleStatusChange
废弃版本:|方法名 or 属性名:off_BundleStatusChange
废弃版本:9
代替接口:ohos.bundle.bundleMonitor|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllLauncherAbilityInfos
废弃版本:|方法名 or 属性名:getAllLauncherAbilityInfos
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getShortcutInfos
废弃版本:|方法名 or 属性名:getShortcutInfos
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager|@ohos.bundle.innerBundleManager.d.ts| +|废弃版本有变化|类名:distributedBundle
废弃版本:|类名:distributedBundle
废弃版本:9
代替接口:ohos.bundle.distributeBundle |@ohos.distributedBundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getRemoteAbilityInfo
废弃版本:|方法名 or 属性名:getRemoteAbilityInfo
废弃版本:9
代替接口:ohos.bundle.distributeBundle|@ohos.distributedBundle.d.ts| +|废弃版本有变化|方法名 or 属性名:getRemoteAbilityInfos
废弃版本:|方法名 or 属性名:getRemoteAbilityInfos
废弃版本:9
代替接口:ohos.bundle.distributeBundle|@ohos.distributedBundle.d.ts| +|废弃版本有变化|类名:ErrorCode
废弃版本:|类名:ErrorCode
废弃版本:9|@ohos.zlib.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_CODE_OK
废弃版本:|方法名 or 属性名:ERROR_CODE_OK
废弃版本:9|@ohos.zlib.d.ts| +|废弃版本有变化|方法名 or 属性名:ERROR_CODE_ERRNO
废弃版本:|方法名 or 属性名:ERROR_CODE_ERRNO
废弃版本:9|@ohos.zlib.d.ts| +|废弃版本有变化|方法名 or 属性名:zipFile
废弃版本:|方法名 or 属性名:zipFile
废弃版本:9
代替接口:ohos.zlib|@ohos.zlib.d.ts| +|废弃版本有变化|方法名 or 属性名:unzipFile
废弃版本:|方法名 or 属性名:unzipFile
废弃版本:9
代替接口:ohos.zlib|@ohos.zlib.d.ts| +|废弃版本有变化|类名:CheckPackageHasInstalledResponse
废弃版本:|类名:CheckPackageHasInstalledResponse
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:result
废弃版本:|方法名 or 属性名:result
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|类名:CheckPackageHasInstalledOptions
废弃版本:|类名:CheckPackageHasInstalledOptions
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:|方法名 or 属性名:success
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:|方法名 or 属性名:fail
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:|方法名 or 属性名:complete
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|类名:Package
废弃版本:|类名:Package
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|方法名 or 属性名:hasInstalled
废弃版本:|方法名 or 属性名:hasInstalled
废弃版本:9|@system.package.d.ts| +|废弃版本有变化|类名:AbilityInfo
废弃版本:|类名:AbilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:description
废弃版本:|方法名 or 属性名:description
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:icon
废弃版本:|方法名 or 属性名:icon
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:labelId
废弃版本:|方法名 or 属性名:labelId
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:descriptionId
废弃版本:|方法名 or 属性名:descriptionId
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:iconId
废弃版本:|方法名 or 属性名:iconId
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:process
废弃版本:|方法名 or 属性名:process
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:targetAbility
废弃版本:|方法名 or 属性名:targetAbility
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:backgroundModes
废弃版本:|方法名 or 属性名:backgroundModes
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isVisible
废弃版本:|方法名 or 属性名:isVisible
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:formEnabled
废弃版本:|方法名 or 属性名:formEnabled
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:subType
废弃版本:|方法名 or 属性名:subType
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:orientation
废弃版本:|方法名 or 属性名:orientation
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:launchMode
废弃版本:|方法名 or 属性名:launchMode
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:permissions
废弃版本:|方法名 or 属性名:permissions
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceTypes
废弃版本:|方法名 or 属性名:deviceTypes
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceCapabilities
废弃版本:|方法名 or 属性名:deviceCapabilities
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:readPermission
废弃版本:|方法名 or 属性名:readPermission
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:writePermission
废弃版本:|方法名 or 属性名:writePermission
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:applicationInfo
废弃版本:|方法名 or 属性名:applicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:|方法名 or 属性名:uri
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:metaData
废弃版本:|方法名 or 属性名:metaData
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:enabled
废弃版本:|方法名 or 属性名:enabled
废弃版本:9
代替接口:ohos.bundle.bundleManager.AbilityInfo |abilityInfo.d.ts| +|废弃版本有变化|类名:ApplicationInfo
废弃版本:|类名:ApplicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:description
废弃版本:|方法名 or 属性名:description
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:descriptionId
废弃版本:|方法名 or 属性名:descriptionId
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:systemApp
废弃版本:|方法名 or 属性名:systemApp
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:enabled
废弃版本:|方法名 or 属性名:enabled
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:icon
废弃版本:|方法名 or 属性名:icon
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:process
废弃版本:|方法名 or 属性名:process
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:supportedModes
废弃版本:|方法名 or 属性名:supportedModes
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleSourceDirs
废弃版本:|方法名 or 属性名:moduleSourceDirs
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:permissions
废弃版本:|方法名 or 属性名:permissions
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleInfos
废弃版本:|方法名 or 属性名:moduleInfos
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:entryDir
废弃版本:|方法名 or 属性名:entryDir
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:codePath
废弃版本:|方法名 or 属性名:codePath
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:metaData
废弃版本:|方法名 or 属性名:metaData
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:removable
废弃版本:|方法名 or 属性名:removable
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:accessTokenId
废弃版本:|方法名 or 属性名:accessTokenId
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:uid
废弃版本:|方法名 or 属性名:uid
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:entityType
废弃版本:|方法名 or 属性名:entityType
废弃版本:9
代替接口:ohos.bundle.bundleManager.ApplicationInfo |applicationInfo.d.ts| +|废弃版本有变化|类名:UsedScene
废弃版本:|类名:UsedScene
废弃版本:9
代替接口:ohos.bundle.bundleManager.UsedScene |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:abilities
废弃版本:|方法名 or 属性名:abilities
废弃版本:9
代替接口:ohos.bundle.bundleManager.UsedScene |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:when
废弃版本:|方法名 or 属性名:when
废弃版本:9
代替接口:ohos.bundle.bundleManager.UsedScene |bundleInfo.d.ts| +|废弃版本有变化|类名:ReqPermissionDetail
废弃版本:|类名:ReqPermissionDetail
废弃版本:9
代替接口:ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:reason
废弃版本:|方法名 or 属性名:reason
废弃版本:9
代替接口:ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:usedScene
废弃版本:|方法名 or 属性名:usedScene
废弃版本:9
代替接口:ohos.bundle.bundleManager.ReqPermissionDetail |bundleInfo.d.ts| +|废弃版本有变化|类名:BundleInfo
废弃版本:|类名:BundleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:appId
废弃版本:|方法名 or 属性名:appId
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:uid
废弃版本:|方法名 or 属性名:uid
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:installTime
废弃版本:|方法名 or 属性名:installTime
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:updateTime
废弃版本:|方法名 or 属性名:updateTime
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:appInfo
废弃版本:|方法名 or 属性名:appInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityInfos
废弃版本:|方法名 or 属性名:abilityInfos
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:reqPermissions
废弃版本:|方法名 or 属性名:reqPermissions
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:reqPermissionDetails
废弃版本:|方法名 or 属性名:reqPermissionDetails
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:vendor
废弃版本:|方法名 or 属性名:vendor
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:versionCode
废弃版本:|方法名 or 属性名:versionCode
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:versionName
废弃版本:|方法名 or 属性名:versionName
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:compatibleVersion
废弃版本:|方法名 or 属性名:compatibleVersion
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:targetVersion
废弃版本:|方法名 or 属性名:targetVersion
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isCompressNativeLibs
废弃版本:|方法名 or 属性名:isCompressNativeLibs
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:hapModuleInfos
废弃版本:|方法名 or 属性名:hapModuleInfos
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:entryModuleName
废弃版本:|方法名 or 属性名:entryModuleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:cpuAbi
废弃版本:|方法名 or 属性名:cpuAbi
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isSilentInstallation
废弃版本:|方法名 or 属性名:isSilentInstallation
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:minCompatibleVersionCode
废弃版本:|方法名 or 属性名:minCompatibleVersionCode
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:entryInstallationFree
废弃版本:|方法名 or 属性名:entryInstallationFree
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:reqPermissionStates
废弃版本:|方法名 or 属性名:reqPermissionStates
废弃版本:9
代替接口:ohos.bundle.bundleManager.BundleInfo |bundleInfo.d.ts| +|废弃版本有变化|类名:InstallParam
废弃版本:|类名:InstallParam
废弃版本:9
代替接口:ohos.bundle.installer|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:userId
废弃版本:|方法名 or 属性名:userId
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:installFlag
废弃版本:|方法名 or 属性名:installFlag
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:isKeepData
废弃版本:|方法名 or 属性名:isKeepData
废弃版本:9
代替接口:ohos.bundle.installer.InstallParam|bundleInstaller.d.ts| +|废弃版本有变化|类名:InstallStatus
废弃版本:|类名:InstallStatus
废弃版本:9|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:status
废弃版本:|方法名 or 属性名:status
废弃版本:9|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:statusMessage
废弃版本:|方法名 or 属性名:statusMessage
废弃版本:9|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleInstaller
废弃版本:|类名:BundleInstaller
废弃版本:9
代替接口:ohos.bundle.installer|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:install
废弃版本:|方法名 or 属性名:install
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:uninstall
废弃版本:|方法名 or 属性名:uninstall
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|方法名 or 属性名:recover
废弃版本:|方法名 or 属性名:recover
废弃版本:9
代替接口:ohos.bundle.installer.BundleInstaller|bundleInstaller.d.ts| +|废弃版本有变化|类名:BundleStatusCallback
废弃版本:|类名:BundleStatusCallback
废弃版本:9|bundleStatusCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:add
废弃版本:|方法名 or 属性名:add
废弃版本:9|bundleStatusCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:update
废弃版本:|方法名 or 属性名:update
废弃版本:9|bundleStatusCallback.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9|bundleStatusCallback.d.ts| +|废弃版本有变化|类名:CustomizeData
废弃版本:|类名:CustomizeData
废弃版本:9
代替接口:ohos.bundle.bundleManager.Metadata |customizeData.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.Metadata |customizeData.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:|方法名 or 属性名:value
废弃版本:9
代替接口:ohos.bundle.bundleManager.Metadata |customizeData.d.ts| +|废弃版本有变化|方法名 or 属性名:extra
废弃版本:|方法名 or 属性名:extra
废弃版本:9
代替接口:ohos.bundle.bundleManager.Metadata |customizeData.d.ts| +|废弃版本有变化|类名:ElementName
废弃版本:|类名:ElementName
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceId
废弃版本:|方法名 or 属性名:deviceId
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:|方法名 or 属性名:uri
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|方法名 or 属性名:shortName
废弃版本:|方法名 or 属性名:shortName
废弃版本:9
代替接口:ohos.bundle.bundleManager.ElementName |elementName.d.ts| +|废弃版本有变化|类名:HapModuleInfo
废弃版本:|类名:HapModuleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:description
废弃版本:|方法名 or 属性名:description
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:descriptionId
废弃版本:|方法名 or 属性名:descriptionId
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:icon
废弃版本:|方法名 or 属性名:icon
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:labelId
废弃版本:|方法名 or 属性名:labelId
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:iconId
废弃版本:|方法名 or 属性名:iconId
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:backgroundImg
废弃版本:|方法名 or 属性名:backgroundImg
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:supportedModes
废弃版本:|方法名 or 属性名:supportedModes
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:reqCapabilities
废弃版本:|方法名 or 属性名:reqCapabilities
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceTypes
废弃版本:|方法名 or 属性名:deviceTypes
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityInfo
废弃版本:|方法名 or 属性名:abilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:mainAbilityName
废弃版本:|方法名 or 属性名:mainAbilityName
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:installationFree
废弃版本:|方法名 or 属性名:installationFree
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |hapModuleInfo.d.ts| +|废弃版本有变化|类名:LauncherAbilityInfo
废弃版本:|类名:LauncherAbilityInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:applicationInfo
废弃版本:|方法名 or 属性名:applicationInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:elementName
废弃版本:|方法名 or 属性名:elementName
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:labelId
废弃版本:|方法名 or 属性名:labelId
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:iconId
废弃版本:|方法名 or 属性名:iconId
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:userId
废弃版本:|方法名 or 属性名:userId
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:installTime
废弃版本:|方法名 or 属性名:installTime
废弃版本:9
代替接口:ohos.bundle.bundleManager.LauncherAbilityInfo |launcherAbilityInfo.d.ts| +|废弃版本有变化|类名:ModuleInfo
废弃版本:|类名:ModuleInfo
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |moduleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleName
废弃版本:|方法名 or 属性名:moduleName
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |moduleInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:moduleSourceDir
废弃版本:|方法名 or 属性名:moduleSourceDir
废弃版本:9
代替接口:ohos.bundle.bundleManager.HapModuleInfo |moduleInfo.d.ts| +|废弃版本有变化|类名:PermissionDef
废弃版本:|类名:PermissionDef
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|方法名 or 属性名:permissionName
废弃版本:|方法名 or 属性名:permissionName
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|方法名 or 属性名:grantMode
废弃版本:|方法名 or 属性名:grantMode
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|方法名 or 属性名:labelId
废弃版本:|方法名 or 属性名:labelId
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|方法名 or 属性名:descriptionId
废弃版本:|方法名 or 属性名:descriptionId
废弃版本:9
代替接口:ohos.bundle.bundleManager.PermissionDef |PermissionDef.d.ts| +|废弃版本有变化|类名:RemoteAbilityInfo
废弃版本:|类名:RemoteAbilityInfo
废弃版本:9
代替接口:ohos.bundle.distributedBundle.RemoteAbilityInfo |remoteAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:elementName
废弃版本:|方法名 or 属性名:elementName
废弃版本:9
代替接口:ohos.bundle.distributedBundle.RemoteAbilityInfo |remoteAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.bundle.distributedBundle.RemoteAbilityInfo |remoteAbilityInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:icon
废弃版本:|方法名 or 属性名:icon
废弃版本:9
代替接口:ohos.bundle.distributedBundle.RemoteAbilityInfo |remoteAbilityInfo.d.ts| +|废弃版本有变化|类名:ShortcutWant
废弃版本:|类名:ShortcutWant
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutWant |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:targetBundle
废弃版本:|方法名 or 属性名:targetBundle
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutWant |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:targetClass
废弃版本:|方法名 or 属性名:targetClass
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutWant |shortcutInfo.d.ts| +|废弃版本有变化|类名:ShortcutInfo
废弃版本:|类名:ShortcutInfo
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:hostAbility
废弃版本:|方法名 or 属性名:hostAbility
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:icon
废弃版本:|方法名 or 属性名:icon
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:iconId
废弃版本:|方法名 or 属性名:iconId
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:labelId
废弃版本:|方法名 or 属性名:labelId
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:disableMessage
废弃版本:|方法名 or 属性名:disableMessage
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:wants
废弃版本:|方法名 or 属性名:wants
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isStatic
废弃版本:|方法名 or 属性名:isStatic
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isHomeShortcut
废弃版本:|方法名 or 属性名:isHomeShortcut
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|废弃版本有变化|方法名 or 属性名:isEnabled
废弃版本:|方法名 or 属性名:isEnabled
废弃版本:9
代替接口:ohos.bundle.launcherBundleManager.ShortcutInfo |shortcutInfo.d.ts| +|新增(错误码)||方法名 or 属性名:isDefaultApplication
错误码内容:401,801|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:isDefaultApplication
错误码内容:401,801|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:getDefaultApplication
错误码内容:201,401,801,17700004,17700023,17700025|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:getDefaultApplication
错误码内容:201,401,801,17700004,17700023,17700025|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:setDefaultApplication
错误码内容:201,401,801,17700004,17700025,17700028|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:setDefaultApplication
错误码内容:201,401,801,17700004,17700025,17700028|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:resetDefaultApplication
错误码内容:201,401,801,17700004,17700025|@ohos.bundle.defaultAppManager.d.ts| +|新增(错误码)||方法名 or 属性名:resetDefaultApplication
错误码内容:201,401,801,17700004,17700025|@ohos.bundle.defaultAppManager.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-communicate.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-communicate.md new file mode 100644 index 0000000000000000000000000000000000000000..6bc98d0308b7eaf6aee5e1e53c9a9fb05e4ea7ac --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-communicate.md @@ -0,0 +1,1060 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.net.connection
类名: connection
方法名 or 属性名: isDefaultNetMetered|@ohos.net.connection.d.ts| +|新增||模块名: ohos.net.connection
类名: connection
方法名 or 属性名: isDefaultNetMetered|@ohos.net.connection.d.ts| +|新增||模块名: ohos.net.connection
类名: NetHandle
方法名 or 属性名: bindSocket|@ohos.net.connection.d.ts| +|新增||模块名: ohos.net.connection
类名: NetHandle
方法名 or 属性名: bindSocket|@ohos.net.connection.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: getIfaceConfig|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: getIfaceConfig|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: setIfaceConfig|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: setIfaceConfig|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: isIfaceActive|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: isIfaceActive|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: getAllActiveIfaces|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: ethernet
方法名 or 属性名: getAllActiveIfaces|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: mode|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: ipAddr|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: route|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: gateway|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: netMask|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: InterfaceConfiguration
方法名 or 属性名: dnsServers|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: IPSetMode|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: IPSetMode
方法名 or 属性名: STATIC|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.ethernet
类名: IPSetMode
方法名 or 属性名: DHCP|@ohos.net.ethernet.d.ts| +|新增||模块名: ohos.net.http
类名: HttpRequestOptions
方法名 or 属性名: expectDataType|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpRequestOptions
方法名 or 属性名: usingCache|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpRequestOptions
方法名 or 属性名: priority|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpRequestOptions
方法名 or 属性名: usingProtocol|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpProtocol|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpProtocol
方法名 or 属性名: HTTP1_1|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpProtocol
方法名 or 属性名: HTTP2|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpDataType|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpDataType
方法名 or 属性名: STRING|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpDataType
方法名 or 属性名: OBJECT|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpDataType
方法名 or 属性名: ARRAY_BUFFER|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponse
方法名 or 属性名: resultType|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: http
方法名 or 属性名: createHttpResponseCache|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponseCache|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponseCache
方法名 or 属性名: flush|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponseCache
方法名 or 属性名: flush|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponseCache
方法名 or 属性名: delete|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.http
类名: HttpResponseCache
方法名 or 属性名: delete|@ohos.net.http.d.ts| +|新增||模块名: ohos.net.socket
类名: socket
方法名 or 属性名:constructTLSSocketInstance|@ohos.net.socket.d.ts| +|新增||方法名 or 属性名:socketLinger
函数:socketLinger?: {on: boolean, linger: number};|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:bind|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:bind|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getRemoteAddress|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getRemoteAddress|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getState|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getState|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:setExtraOptions|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:setExtraOptions|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:on_message|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:off_message|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:on_connect|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:on_close|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:off_connect|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:off_close|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:on_error|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:off_error|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getCertificate|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getCertificate|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getRemoteCertificate|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getRemoteCertificate|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getProtocol|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getProtocol|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getCipherSuite|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getCipherSuite|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getSignatureAlgorithms|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:getSignatureAlgorithms|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:connect|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:connect|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:send|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:send|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:close|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSocket
方法名 or 属性名:close|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:ca|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:cert|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:key|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:passwd|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:protocols|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:useRemoteCipherPrefer|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:signatureAlgorithms|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSSecureOptions
方法名 or 属性名:cipherSuite|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSConnectOptions|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSConnectOptions
方法名 or 属性名:address|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSConnectOptions
方法名 or 属性名:secureOptions|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: TLSConnectOptions
方法名 or 属性名:ALPNProtocols|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: Protocol|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: Protocol
方法名 or 属性名:TLSv12|@ohos.net.socket.d.ts| +|新增||模块名: ohos.net.socket
类名: Protocol
方法名 or 属性名:TLSv13|@ohos.net.socket.d.ts| +|新增||方法名 or 属性名:NDEF_FORMATABLE
函数:const NDEF_FORMATABLE = 7;|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_EMPTY|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_WELL_KNOWN|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_MEDIA|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_ABSOLUTE_URI|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_EXT_APP|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_UNKNOWN|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: TnfType
方法名 or 属性名:TNF_UNCHANGED|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_1|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_2|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_3|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_4|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NfcForumType
方法名 or 属性名:MIFARE_CLASSIC|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:RTD_TEXT|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:RTD_URI|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicType|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicType
方法名 or 属性名:TYPE_UNKNOWN|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicType
方法名 or 属性名:TYPE_CLASSIC|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicType
方法名 or 属性名:TYPE_PLUS|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicType
方法名 or 属性名:TYPE_PRO|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicSize|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicSize
方法名 or 属性名:MC_SIZE_MINI|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicSize
方法名 or 属性名:MC_SIZE_1K|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicSize
方法名 or 属性名:MC_SIZE_2K|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareClassicSize
方法名 or 属性名:MC_SIZE_4K|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareUltralightType|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareUltralightType
方法名 or 属性名:TYPE_UNKNOWN|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareUltralightType
方法名 or 属性名:TYPE_ULTRALIGHT|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: MifareUltralightType
方法名 or 属性名:TYPE_ULTRALIGHT_C|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getIsoDep|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getNdef|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getMifareClassic|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getMifareUltralight|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getNdefFormatable|@ohos.nfc.tag.d.ts| +|新增||模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getTagInfo|@ohos.nfc.tag.d.ts| +|新增||方法名 or 属性名:uid
函数:uid: number[];|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NdefRecord|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NdefRecord
方法名 or 属性名:tnf|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NdefRecord
方法名 or 属性名:rtdType|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NdefRecord
方法名 or 属性名:id|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: NdefRecord
方法名 or 属性名:payload|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:makeUriRecord|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:makeTextRecord|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:makeMimeRecord|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:makeExternalRecord|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:createNdefMessage|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:createNdefMessage|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.nfc.tag
类名: ndef
方法名 or 属性名:messageToBytes|@ohos.nfc.tag.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:CHECK_PARAM_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:OS_MMAP_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:OS_IOCTL_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:WRITE_TO_ASHMEM_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:READ_FROM_ASHMEM_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:ONLY_PROXY_OBJECT_PERMITTED_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:ONLY_REMOTE_OBJECT_PERMITTED_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:COMMUNICATION_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:PROXY_OR_REMOTE_OBJECT_INVALID_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:WRITE_DATA_TO_MESSAGE_SEQUENCE_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:READ_DATA_FROM_MESSAGE_SEQUENCE_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:PARCEL_MEMORY_ALLOC_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:CALL_JS_METHOD_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: ErrorCode
方法名 or 属性名:OS_DUP_ERROR|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:create|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:reclaim|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeRemoteObject|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readRemoteObject|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeInterfaceToken|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readInterfaceToken|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getSize|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getCapacity|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:setSize|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:setCapacity|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getWritableBytes|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getReadableBytes|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getReadPosition|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getWritePosition|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:rewindRead|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:rewindWrite|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeNoException|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readException|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeByte|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeShort|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeInt|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeLong|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeFloat|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeDouble|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeBoolean|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeChar|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeString|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeParcelable|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeByteArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeShortArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeIntArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeLongArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeFloatArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeDoubleArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeBooleanArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeCharArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeStringArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeParcelableArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeRemoteObjectArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readByte|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readShort|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readInt|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readLong|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readFloat|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readDouble|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readBoolean|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readChar|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readString|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readParcelable|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readByteArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readByteArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readShortArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readShortArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readIntArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readIntArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readLongArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readLongArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readFloatArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readFloatArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readDoubleArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readDoubleArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readBooleanArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readBooleanArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readCharArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readCharArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readStringArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readStringArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readParcelableArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readRemoteObjectArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readRemoteObjectArray|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:closeFileDescriptor|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:dupFileDescriptor|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:containFileDescriptors|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeFileDescriptor|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readFileDescriptor|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeAshmem|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readAshmem|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:getRawDataCapacity|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:writeRawData|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageSequence
方法名 or 属性名:readRawData|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: Parcelable|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: Parcelable
方法名 or 属性名:marshalling|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: Parcelable
方法名 or 属性名:unmarshalling|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: RequestResult|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: RequestResult
方法名 or 属性名:errCode|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: RequestResult
方法名 or 属性名:code|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: RequestResult
方法名 or 属性名:data|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: RequestResult
方法名 or 属性名:reply|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:getLocalInterface|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:registerDeathRecipient|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:unregisterDeathRecipient|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:getDescriptor|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageOption
方法名 or 属性名:ructor(async?|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageOption
方法名 or 属性名:isAsync|@ohos.rpc.d.ts| +|新增||模块名: ohos.rpc
类名: MessageOption
方法名 or 属性名:setAsync|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:getLocalInterface|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:getDescriptor|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:onRemoteMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:modifyLocalInterface|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:getLocalInterface|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:registerDeathRecipient|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:unregisterDeathRecipient|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:getDescriptor|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:sendMessageRequest|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IPCSkeleton
方法名 or 属性名:flushCmdBuffer|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:IPCSkeleton
方法名 or 属性名:restoreCallingIdentity|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:create|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:create|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:mapTypedAshmem|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:mapReadWriteAshmem|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:mapReadonlyAshmem|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:setProtectionType|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:writeAshmem|@ohos.rpc.d.ts| +|新增||模块名:ohos.rpc
类名:Ashmem
方法名 or 属性名:readAshmem|@ohos.rpc.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: enableWifi|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: disableWifi|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: isWifiActive|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: scan|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getScanResults|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getScanResults|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getScanResultsSync|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: addDeviceConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: addDeviceConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: addCandidateConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: addCandidateConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: removeCandidateConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: removeCandidateConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getCandidateConfigs|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: connectToCandidateConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: connectToNetwork|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: connectToDevice|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: disconnect|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getSignalLevel|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: isConnected|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getSupportedFeatures|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: isFeatureSupported|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getDeviceMacAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getIpInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getCountryCode|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: reassociate|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: reconnect|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getDeviceConfigs|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: updateNetwork|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: disableNetwork|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: removeAllNetwork|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: removeDevice|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: enableHotspot|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: disableHotspot|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: isHotspotDualBandSupported|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: isHotspotActive|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: setHotspotConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getHotspotConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getStations|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getCurrentGroup|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getCurrentGroup|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pPeerDevices|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pPeerDevices|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pLocalDevice|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pLocalDevice|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: createGroup|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: removeGroup|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: p2pConnect|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: p2pDisconnect|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: startDiscoverDevices|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: stopDiscoverDevices|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: deletePersistentGroup|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pGroups|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: getP2pGroups|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: setDeviceName|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_wifiStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_wifiStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_wifiConnectionChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_wifiConnectionChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_wifiScanStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_wifiScanStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_wifiRssiChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_wifiRssiChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_streamChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_streamChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_deviceConfigChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_deviceConfigChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_hotspotStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_hotspotStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_hotspotStaJoin|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_hotspotStaJoin|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_hotspotStaLeave|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_hotspotStaLeave|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pStateChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pConnectionChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pConnectionChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pDeviceChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pDeviceChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pPeerDeviceChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pPeerDeviceChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pPersistentGroupChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pPersistentGroupChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: on_p2pDiscoveryChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: wifiManager
方法名 or 属性名: off_p2pDiscoveryChange|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_NONE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_PEAP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_TLS|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_TTLS|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_PWD|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_SIM|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_AKA|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_AKA_PRIME|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: EapMethod
方法名 or 属性名: EAP_UNAUTH_TLS|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_NONE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_PAP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_MSCHAP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_MSCHAPV2|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_GTC|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_SIM|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_AKA|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: Phase2Method
方法名 or 属性名: PHASE2_AKA_PRIME|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: eapMethod|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: phase2Method|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: identity|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: anonymousIdentity|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: password|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: caCertAliases|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: caPath|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: clientCertAliases|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: altSubjectMatch|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: domainSuffixMatch|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: realm|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: plmn|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiEapConfig
方法名 or 属性名: eapSubId|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: ssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: bssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: preSharedKey|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: isHiddenSsid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: securityType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: creatorUid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: disableReason|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: netId|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: randomMacType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: randomMacAddr|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: ipType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: staticIp|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiDeviceConfig
方法名 or 属性名: eapConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig
方法名 or 属性名: ipAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig
方法名 or 属性名: gateway|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig
方法名 or 属性名: prefixLength|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig
方法名 or 属性名: dnsServers|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpConfig
方法名 or 属性名: domains|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiInfoElem|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiInfoElem
方法名 or 属性名: eid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiInfoElem
方法名 or 属性名: content|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_20MHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_40MHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_80MHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_160MHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_80MHZ_PLUS|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiChannelWidth
方法名 or 属性名: WIDTH_INVALID|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: ssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: bssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: capabilities|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: securityType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: rssi|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: band|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: frequency|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: channelWidth|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: centerFrequency0|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: centerFrequency1|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: infoElems|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiScanInfo
方法名 or 属性名: timestamp|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_INVALID|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_OPEN|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_WEP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_PSK|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_SAE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_EAP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_EAP_SUITE_B|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_OWE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_WAPI_CERT|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiSecurityType
方法名 or 属性名: WIFI_SEC_TYPE_WAPI_PSK|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: ssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: bssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: networkId|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: rssi|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: band|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: linkSpeed|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: frequency|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: isHidden|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: isRestricted|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: chload|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: snr|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: macType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: macAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: ipAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: suppState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiLinkedInfo
方法名 or 属性名: connState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: ipAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: gateway|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: netmask|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: primaryDns|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: secondDns|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: serverIp|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpInfo
方法名 or 属性名: leaseDuration|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig
方法名 or 属性名: ssid|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig
方法名 or 属性名: securityType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig
方法名 or 属性名: band|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig
方法名 or 属性名: preSharedKey|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: HotspotConfig
方法名 or 属性名: maxConn|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: StationInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: StationInfo
方法名 or 属性名: name|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: StationInfo
方法名 or 属性名: macAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: StationInfo
方法名 or 属性名: ipAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpType
方法名 or 属性名: STATIC|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpType
方法名 or 属性名: DHCP|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: IpType
方法名 or 属性名: UNKNOWN|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: DISCONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: INTERFACE_DISABLED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: INACTIVE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: SCANNING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: AUTHENTICATING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: ASSOCIATING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: ASSOCIATED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: FOUR_WAY_HANDSHAKE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: GROUP_HANDSHAKE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: COMPLETED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: UNINITIALIZED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: SuppState
方法名 or 属性名: INVALID|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: SCANNING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: CONNECTING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: AUTHENTICATING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: OBTAINING_IPADDR|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: CONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: DISCONNECTING|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: DISCONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: ConnState
方法名 or 属性名: UNKNOWN|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice
方法名 or 属性名: deviceName|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice
方法名 or 属性名: deviceAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice
方法名 or 属性名: primaryDeviceType|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice
方法名 or 属性名: deviceStatus|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pDevice
方法名 or 属性名: groupCapabilities|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig
方法名 or 属性名: deviceAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig
方法名 or 属性名: netId|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig
方法名 or 属性名: passphrase|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig
方法名 or 属性名: groupName|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2PConfig
方法名 or 属性名: goBand|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: isP2pGo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: ownerInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: passphrase|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: interface|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: groupName|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: networkId|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: frequency|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: clientDevices|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pGroupInfo
方法名 or 属性名: goIpAddress|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pConnectState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pConnectState
方法名 or 属性名: DISCONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pConnectState
方法名 or 属性名: CONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法名 or 属性名: connectState|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法名 or 属性名: isGroupOwner|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: WifiP2pLinkedInfo
方法名 or 属性名: groupOwnerAddr|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法名 or 属性名: CONNECTED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法名 or 属性名: INVITED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法名 or 属性名: FAILED|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法名 or 属性名: AVAILABLE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: P2pDeviceStatus
方法名 or 属性名: UNAVAILABLE|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: GroupOwnerBand|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: GroupOwnerBand
方法名 or 属性名: GO_BAND_AUTO|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: GroupOwnerBand
方法名 or 属性名: GO_BAND_2GHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManager
类名: GroupOwnerBand
方法名 or 属性名: GO_BAND_5GHZ|@ohos.wifiManager.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: enableHotspot|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: disableHotspot|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: getSupportedPowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: getSupportedPowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: getPowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: getPowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: wifiManagerExt
方法名 or 属性名: setPowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: PowerMode|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: PowerMode
方法名 or 属性名: SLEEPING|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: PowerMode
方法名 or 属性名: GENERAL|@ohos.wifiManagerExt.d.ts| +|新增||模块名: ohos.wifiManagerExt
类名: PowerMode
方法名 or 属性名: THROUGH_WALL|@ohos.wifiManagerExt.d.ts| +|新增||方法名 or 属性名:getHistoricalBytes
函数:getHistoricalBytes(): number[];|nfctech.d.ts| +|新增||方法名 or 属性名:getHiLayerResponse
函数:getHiLayerResponse(): number[];|nfctech.d.ts| +|新增||方法名 or 属性名:getNdefRecords
函数:getNdefRecords(): tag.NdefRecord[];|nfctech.d.ts| +|新增||方法名 or 属性名:getNdefTagType
函数:getNdefTagType(): tag.NfcForumType;|nfctech.d.ts| +|新增||方法名 or 属性名:isNdefWritable
函数:isNdefWritable(): boolean;|nfctech.d.ts| +|新增||方法名 or 属性名:writeNdef
函数:writeNdef(msg: NdefMessage): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:writeNdef
函数:writeNdef(msg: NdefMessage, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:canSetReadOnly
函数:canSetReadOnly(): boolean;|nfctech.d.ts| +|新增||方法名 or 属性名:setReadOnly
函数:setReadOnly(): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:setReadOnly
函数:setReadOnly(callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:getNdefTagTypeString
函数:getNdefTagTypeString(type: tag.NfcForumType): string;|nfctech.d.ts| +|新增||方法名 or 属性名:authenticateSector
函数:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:authenticateSector
函数:authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:readSingleBlock
函数:readSingleBlock(blockIndex: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:readSingleBlock
函数:readSingleBlock(blockIndex: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:writeSingleBlock
函数:writeSingleBlock(blockIndex: number, data: number[]): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:writeSingleBlock
函数:writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:incrementBlock
函数:incrementBlock(blockIndex: number, value: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:incrementBlock
函数:incrementBlock(blockIndex: number, value: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:decrementBlock
函数:decrementBlock(blockIndex: number, value: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:decrementBlock
函数:decrementBlock(blockIndex: number, value: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:transferToBlock
函数:transferToBlock(blockIndex: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:transferToBlock
函数:transferToBlock(blockIndex: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:restoreFromBlock
函数:restoreFromBlock(blockIndex: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:restoreFromBlock
函数:restoreFromBlock(blockIndex: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:getType
函数:getType(): tag.MifareClassicType;|nfctech.d.ts| +|新增||方法名 or 属性名:readMultiplePages
函数:readMultiplePages(pageIndex: number): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:readMultiplePages
函数:readMultiplePages(pageIndex: number, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||模块名:nfctech
类名:MifareUltralightTag
方法名 or 属性名:writeSinglePage|nfctech.d.ts| +|新增||模块名:nfctech
类名:MifareUltralightTag
方法名 or 属性名:writeSinglePage|nfctech.d.ts| +|新增||方法名 or 属性名:getType
函数:getType(): tag.MifareUltralightType;|nfctech.d.ts| +|新增||方法名 or 属性名:format
函数:format(message: NdefMessage): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:format
函数:format(message: NdefMessage, callback: AsyncCallback): void;|nfctech.d.ts| +|新增||方法名 or 属性名:formatReadOnly
函数:formatReadOnly(message: NdefMessage): Promise;|nfctech.d.ts| +|新增||方法名 or 属性名:formatReadOnly
函数:formatReadOnly(message: NdefMessage, callback: AsyncCallback): void;|nfctech.d.ts| +|删除|模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getIsoDepTag||@ohos.nfc.tag.d.ts| +|删除|模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getNdefTag||@ohos.nfc.tag.d.ts| +|删除|模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getMifareClassicTag||@ohos.nfc.tag.d.ts| +|删除|模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getMifareUltralightTag||@ohos.nfc.tag.d.ts| +|删除|模块名:ohos.nfc.tag
类名:tag
方法名 or 属性名:getNdefFormatableTag||@ohos.nfc.tag.d.ts| +|删除|模块名:ohos.rpc
类名:IRemoteObject
方法名 or 属性名:sendRequestAsync||@ohos.rpc.d.ts| +|删除|模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:onRemoteRequestEx||@ohos.rpc.d.ts| +|删除|模块名:ohos.rpc
类名:RemoteObject
方法名 or 属性名:sendRequestAsync||@ohos.rpc.d.ts| +|删除|模块名:ohos.rpc
类名:RemoteProxy
方法名 or 属性名:sendRequestAsync||@ohos.rpc.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getScanInfosSync||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:addCandidateConfig||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:addCandidateConfig||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:removeCandidateConfig||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:removeCandidateConfig||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getCandidateConfigs||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:connectToCandidateConfig||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getP2pLocalDevice||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getP2pLocalDevice||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getP2pGroups||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:getP2pGroups||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:on_deviceConfigChange||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:wifi
方法名 or 属性名:off_deviceConfigChange||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_NONE||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_PEAP||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_TLS||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_TTLS||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_PWD||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_SIM||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_AKA||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_AKA_PRIME||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: EapMethod
方法名 or 属性名:EAP_UNAUTH_TLS||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_NONE||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_PAP||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_MSCHAP||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_MSCHAPV2||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_GTC||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_SIM||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_AKA||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: Phase2Method
方法名 or 属性名:PHASE2_AKA_PRIME||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:eapMethod||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:phase2Method||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:identity||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:anonymousIdentity||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:password||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:caCertAliases||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:caPath||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:clientCertAliases||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:altSubjectMatch||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:domainSuffixMatch||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:realm||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:plmn||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiEapConfig
方法名 or 属性名:eapSubId||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiDeviceConfig
方法名 or 属性名:eapConfig||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiInfoElem||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiInfoElem
方法名 or 属性名:eid||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiInfoElem
方法名 or 属性名:content||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_20MHZ||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_40MHZ||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_80MHZ||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_160MHZ||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_80MHZ_PLUS||@ohos.wifi.d.ts| +|删除|模块名: ohos.wifi
类名: WifiChannelWidth
方法名 or 属性名:WIDTH_INVALID||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiScanInfo
方法名 or 属性名:centerFrequency0||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiScanInfo
方法名 or 属性名:centerFrequency1||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiScanInfo
方法名 or 属性名:infoElems||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiSecurityType
方法名 or 属性名:WIFI_SEC_TYPE_EAP||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiSecurityType
方法名 or 属性名:WIFI_SEC_TYPE_EAP_SUITE_B||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiSecurityType
方法名 or 属性名:WIFI_SEC_TYPE_OWE||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiSecurityType
方法名 or 属性名:WIFI_SEC_TYPE_WAPI_CERT||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiSecurityType
方法名 or 属性名:WIFI_SEC_TYPE_WAPI_PSK||@ohos.wifi.d.ts| +|删除|模块名:ohos.wifi
类名:WifiLinkedInfo
方法名 or 属性名:macType||@ohos.wifi.d.ts| +|删除|模块名: nfctech
类名: NdefRecord||nfctech.d.ts| +|删除|模块名: nfctech
类名: NdefRecord
方法名 or 属性名:tnf||nfctech.d.ts| +|删除|模块名: nfctech
类名: NdefRecord
方法名 or 属性名:rtdType||nfctech.d.ts| +|删除|模块名: nfctech
类名: NdefRecord
方法名 or 属性名:id||nfctech.d.ts| +|删除|模块名: nfctech
类名: NdefRecord
方法名 or 属性名:payload||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_EMPTY||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_WELL_KNOWN||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_MEDIA||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_ABSOLUTE_URI||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_EXT_APP||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_UNKNOWN||nfctech.d.ts| +|删除|模块名: nfctech
类名: TnfType
方法名 or 属性名:TNF_UNCHANGED||nfctech.d.ts| +|删除|模块名: nfctech
类名: RtdType||nfctech.d.ts| +|删除|模块名: nfctech
类名: RtdType
方法名 or 属性名:RTD_TEXT||nfctech.d.ts| +|删除|模块名: nfctech
类名: RtdType
方法名 or 属性名:RTD_URI||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefMessage
方法名 or 属性名:makeUriRecord||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefMessage
方法名 or 属性名:makeTextRecord||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefMessage
方法名 or 属性名:makeMimeRecord||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefMessage
方法名 or 属性名:makeExternalRecord||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefMessage
方法名 or 属性名:messageToString||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_1||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_2||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_3||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType
方法名 or 属性名:NFC_FORUM_TYPE_4||nfctech.d.ts| +|删除|模块名: nfctech
类名: NfcForumType
方法名 or 属性名:MIFARE_CLASSIC||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefTag
方法名 or 属性名:createNdefMessage||nfctech.d.ts| +|删除|模块名:nfctech
类名:NdefTag
方法名 or 属性名:createNdefMessage||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareClassicType||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareClassicType
方法名 or 属性名:TYPE_UNKNOWN||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareClassicType
方法名 or 属性名:TYPE_CLASSIC||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareClassicType
方法名 or 属性名:TYPE_PLUS||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareClassicType
方法名 or 属性名:TYPE_PRO||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareTagSize||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareTagSize
方法名 or 属性名:MC_SIZE_MINI||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareTagSize
方法名 or 属性名:MC_SIZE_1K||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareTagSize
方法名 or 属性名:MC_SIZE_2K||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareTagSize
方法名 or 属性名:MC_SIZE_4K||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareUltralightType||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareUltralightType
方法名 or 属性名:TYPE_UNKOWN||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareUltralightType
方法名 or 属性名:TYPE_ULTRALIGHT||nfctech.d.ts| +|删除|模块名: nfctech
类名: MifareUltralightType
方法名 or 属性名:TYPE_ULTRALIGHT_C||nfctech.d.ts| +|删除|模块名:nfctech
类名:MifareUltralightTag
方法名 or 属性名:writeSinglePages||nfctech.d.ts| +|删除|模块名:nfctech
类名:MifareUltralightTag
方法名 or 属性名:writeSinglePages||nfctech.d.ts| +|废弃版本有变化|类名:MessageParcel
废弃版本:|类名:MessageParcel
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:create
废弃版本:|方法名 or 属性名:create
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:reclaim
废弃版本:|方法名 or 属性名:reclaim
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeRemoteObject
废弃版本:|方法名 or 属性名:writeRemoteObject
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readRemoteObject
废弃版本:|方法名 or 属性名:readRemoteObject
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeInterfaceToken
废弃版本:|方法名 or 属性名:writeInterfaceToken
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readInterfaceToken
废弃版本:|方法名 or 属性名:readInterfaceToken
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getSize
废弃版本:|方法名 or 属性名:getSize
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getCapacity
废弃版本:|方法名 or 属性名:getCapacity
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:setSize
废弃版本:|方法名 or 属性名:setSize
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:setCapacity
废弃版本:|方法名 or 属性名:setCapacity
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getWritableBytes
废弃版本:|方法名 or 属性名:getWritableBytes
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getReadableBytes
废弃版本:|方法名 or 属性名:getReadableBytes
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getReadPosition
废弃版本:|方法名 or 属性名:getReadPosition
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getWritePosition
废弃版本:|方法名 or 属性名:getWritePosition
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:rewindRead
废弃版本:|方法名 or 属性名:rewindRead
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:rewindWrite
废弃版本:|方法名 or 属性名:rewindWrite
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeNoException
废弃版本:|方法名 or 属性名:writeNoException
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readException
废弃版本:|方法名 or 属性名:readException
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeByte
废弃版本:|方法名 or 属性名:writeByte
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeShort
废弃版本:|方法名 or 属性名:writeShort
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeInt
废弃版本:|方法名 or 属性名:writeInt
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeLong
废弃版本:|方法名 or 属性名:writeLong
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeFloat
废弃版本:|方法名 or 属性名:writeFloat
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeDouble
废弃版本:|方法名 or 属性名:writeDouble
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeBoolean
废弃版本:|方法名 or 属性名:writeBoolean
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeChar
废弃版本:|方法名 or 属性名:writeChar
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeString
废弃版本:|方法名 or 属性名:writeString
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeSequenceable
废弃版本:|方法名 or 属性名:writeSequenceable
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeByteArray
废弃版本:|方法名 or 属性名:writeByteArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeShortArray
废弃版本:|方法名 or 属性名:writeShortArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeIntArray
废弃版本:|方法名 or 属性名:writeIntArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeLongArray
废弃版本:|方法名 or 属性名:writeLongArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeFloatArray
废弃版本:|方法名 or 属性名:writeFloatArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeDoubleArray
废弃版本:|方法名 or 属性名:writeDoubleArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeBooleanArray
废弃版本:|方法名 or 属性名:writeBooleanArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeCharArray
废弃版本:|方法名 or 属性名:writeCharArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeStringArray
废弃版本:|方法名 or 属性名:writeStringArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeSequenceableArray
废弃版本:|方法名 or 属性名:writeSequenceableArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeRemoteObjectArray
废弃版本:|方法名 or 属性名:writeRemoteObjectArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readByte
废弃版本:|方法名 or 属性名:readByte
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readShort
废弃版本:|方法名 or 属性名:readShort
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readInt
废弃版本:|方法名 or 属性名:readInt
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readLong
废弃版本:|方法名 or 属性名:readLong
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readFloat
废弃版本:|方法名 or 属性名:readFloat
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readDouble
废弃版本:|方法名 or 属性名:readDouble
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readBoolean
废弃版本:|方法名 or 属性名:readBoolean
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readChar
废弃版本:|方法名 or 属性名:readChar
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readString
废弃版本:|方法名 or 属性名:readString
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readSequenceable
废弃版本:|方法名 or 属性名:readSequenceable
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readByteArray
废弃版本:|方法名 or 属性名:readByteArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readByteArray
废弃版本:|方法名 or 属性名:readByteArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readShortArray
废弃版本:|方法名 or 属性名:readShortArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readShortArray
废弃版本:|方法名 or 属性名:readShortArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readIntArray
废弃版本:|方法名 or 属性名:readIntArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readIntArray
废弃版本:|方法名 or 属性名:readIntArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readLongArray
废弃版本:|方法名 or 属性名:readLongArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readLongArray
废弃版本:|方法名 or 属性名:readLongArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readFloatArray
废弃版本:|方法名 or 属性名:readFloatArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readFloatArray
废弃版本:|方法名 or 属性名:readFloatArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readDoubleArray
废弃版本:|方法名 or 属性名:readDoubleArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readDoubleArray
废弃版本:|方法名 or 属性名:readDoubleArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readBooleanArray
废弃版本:|方法名 or 属性名:readBooleanArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readBooleanArray
废弃版本:|方法名 or 属性名:readBooleanArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readCharArray
废弃版本:|方法名 or 属性名:readCharArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readCharArray
废弃版本:|方法名 or 属性名:readCharArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readStringArray
废弃版本:|方法名 or 属性名:readStringArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readStringArray
废弃版本:|方法名 or 属性名:readStringArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readSequenceableArray
废弃版本:|方法名 or 属性名:readSequenceableArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readRemoteObjectArray
废弃版本:|方法名 or 属性名:readRemoteObjectArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readRemoteObjectArray
废弃版本:|方法名 or 属性名:readRemoteObjectArray
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:closeFileDescriptor
废弃版本:|方法名 or 属性名:closeFileDescriptor
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:dupFileDescriptor
废弃版本:|方法名 or 属性名:dupFileDescriptor
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:containFileDescriptors
废弃版本:|方法名 or 属性名:containFileDescriptors
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeFileDescriptor
废弃版本:|方法名 or 属性名:writeFileDescriptor
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readFileDescriptor
废弃版本:|方法名 or 属性名:readFileDescriptor
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeAshmem
废弃版本:|方法名 or 属性名:writeAshmem
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readAshmem
废弃版本:|方法名 or 属性名:readAshmem
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawDataCapacity
废弃版本:|方法名 or 属性名:getRawDataCapacity
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeRawData
废弃版本:|方法名 or 属性名:writeRawData
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readRawData
废弃版本:|方法名 or 属性名:readRawData
废弃版本:9
代替接口:ohos.rpc.MessageSequence |@ohos.rpc.d.ts| +|废弃版本有变化|类名:Sequenceable
废弃版本:|类名:Sequenceable
废弃版本:9
代替接口:ohos.rpc.Parcelable |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:marshalling
废弃版本:|方法名 or 属性名:marshalling
废弃版本:9
代替接口:ohos.rpc.Parcelable |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:unmarshalling
废弃版本:|方法名 or 属性名:unmarshalling
废弃版本:9
代替接口:ohos.rpc.Parcelable |@ohos.rpc.d.ts| +|废弃版本有变化|类名:SendRequestResult
废弃版本:|类名:SendRequestResult
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:errCode
废弃版本:|方法名 or 属性名:errCode
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:code
废弃版本:|方法名 or 属性名:code
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:data
废弃版本:|方法名 or 属性名:data
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:reply
废弃版本:|方法名 or 属性名:reply
废弃版本:9
代替接口:ohos.rpc.RequestResult |@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:queryLocalInterface
废弃版本:|方法名 or 属性名:queryLocalInterface
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:sendRequest
废弃版本:8|方法名 or 属性名:sendRequest
废弃版本:9|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:sendRequest
废弃版本:|方法名 or 属性名:sendRequest
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:addDeathRecipient
废弃版本:|方法名 or 属性名:addDeathRecipient
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:removeDeathRecipient
废弃版本:|方法名 or 属性名:removeDeathRecipient
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getInterfaceDescriptor
废弃版本:|方法名 or 属性名:getInterfaceDescriptor
废弃版本:9
代替接口:ohos.rpc.IRemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:queryLocalInterface
废弃版本:|方法名 or 属性名:queryLocalInterface
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getInterfaceDescriptor
废弃版本:|方法名 or 属性名:getInterfaceDescriptor
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:sendRequest
废弃版本:|方法名 or 属性名:sendRequest
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:attachLocalInterface
废弃版本:|方法名 or 属性名:attachLocalInterface
废弃版本:9
代替接口:ohos.rpc.RemoteObject|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:queryLocalInterface
废弃版本:|方法名 or 属性名:queryLocalInterface
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:addDeathRecipient
废弃版本:|方法名 or 属性名:addDeathRecipient
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:removeDeathRecipient
废弃版本:|方法名 or 属性名:removeDeathRecipient
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:getInterfaceDescriptor
废弃版本:|方法名 or 属性名:getInterfaceDescriptor
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:sendRequest
废弃版本:|方法名 or 属性名:sendRequest
废弃版本:9
代替接口:ohos.rpc.RemoteProxy|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:flushCommands
废弃版本:|方法名 or 属性名:flushCommands
废弃版本:9
代替接口:ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:setCallingIdentity
废弃版本:|方法名 or 属性名:setCallingIdentity
废弃版本:9
代替接口:ohos.rpc.IPCSkeleton|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:createAshmem
废弃版本:|方法名 or 属性名:createAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:createAshmemFromExisting
废弃版本:|方法名 or 属性名:createAshmemFromExisting
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:mapAshmem
废弃版本:|方法名 or 属性名:mapAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:mapReadAndWriteAshmem
废弃版本:|方法名 or 属性名:mapReadAndWriteAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:mapReadOnlyAshmem
废弃版本:|方法名 or 属性名:mapReadOnlyAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:setProtection
废弃版本:|方法名 or 属性名:setProtection
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:writeToAshmem
废弃版本:|方法名 or 属性名:writeToAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:readFromAshmem
废弃版本:|方法名 or 属性名:readFromAshmem
废弃版本:9
代替接口:ohos.rpc.Ashmem|@ohos.rpc.d.ts| +|废弃版本有变化|方法名 or 属性名:enableWifi
废弃版本:|方法名 or 属性名:enableWifi
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.enableWifi |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:disableWifi
废弃版本:|方法名 or 属性名:disableWifi
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableWifi |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isWifiActive
废弃版本:|方法名 or 属性名:isWifiActive
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isWifiActive |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:scan
废弃版本:|方法名 or 属性名:scan
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.scan |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getScanInfos
废弃版本:|方法名 or 属性名:getScanInfos
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getScanResults |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:addDeviceConfig
废弃版本:|方法名 or 属性名:addDeviceConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.addDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:connectToNetwork
废弃版本:|方法名 or 属性名:connectToNetwork
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.connectToNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:connectToDevice
废弃版本:|方法名 or 属性名:connectToDevice
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.connectToDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:disconnect
废弃版本:|方法名 or 属性名:disconnect
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disconnect |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getSignalLevel
废弃版本:|方法名 or 属性名:getSignalLevel
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getSignalLevel |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getLinkedInfo
废弃版本:|方法名 or 属性名:getLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isConnected
废弃版本:|方法名 or 属性名:isConnected
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isConnected |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getSupportedFeatures
废弃版本:|方法名 or 属性名:getSupportedFeatures
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getSupportedFeatures |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isFeatureSupported
废弃版本:|方法名 or 属性名:isFeatureSupported
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isFeatureSupported |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getDeviceMacAddress
废弃版本:|方法名 or 属性名:getDeviceMacAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getDeviceMacAddress |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getIpInfo
废弃版本:|方法名 or 属性名:getIpInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getIpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getCountryCode
废弃版本:|方法名 or 属性名:getCountryCode
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getCountryCode |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:reassociate
废弃版本:|方法名 or 属性名:reassociate
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.reassociate |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:reconnect
废弃版本:|方法名 or 属性名:reconnect
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.reconnect |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getDeviceConfigs
废弃版本:|方法名 or 属性名:getDeviceConfigs
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getDeviceConfigs |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:updateNetwork
废弃版本:|方法名 or 属性名:updateNetwork
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.updateNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:disableNetwork
废弃版本:|方法名 or 属性名:disableNetwork
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAllNetwork
废弃版本:|方法名 or 属性名:removeAllNetwork
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeAllNetwork |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:removeDevice
废弃版本:|方法名 or 属性名:removeDevice
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:enableHotspot
废弃版本:|方法名 or 属性名:enableHotspot
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.enableHotspot |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:disableHotspot
废弃版本:|方法名 or 属性名:disableHotspot
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.disableHotspot |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isHotspotDualBandSupported
废弃版本:|方法名 or 属性名:isHotspotDualBandSupported
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isHotspotDualBandSupported |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isHotspotActive
废弃版本:|方法名 or 属性名:isHotspotActive
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.isHotspotActive |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:setHotspotConfig
废弃版本:|方法名 or 属性名:setHotspotConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.setHotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getHotspotConfig
废弃版本:|方法名 or 属性名:getHotspotConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getHotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getStations
废弃版本:|方法名 or 属性名:getStations
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getStations |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getP2pLinkedInfo
废弃版本:|方法名 or 属性名:getP2pLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getCurrentGroup
废弃版本:|方法名 or 属性名:getCurrentGroup
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getCurrentGroup |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:getP2pPeerDevices
废弃版本:|方法名 or 属性名:getP2pPeerDevices
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.getP2pPeerDevices |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:createGroup
废弃版本:|方法名 or 属性名:createGroup
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.createGroup |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:removeGroup
废弃版本:|方法名 or 属性名:removeGroup
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.removeGroup |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:p2pConnect
废弃版本:|方法名 or 属性名:p2pConnect
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.p2pConnect |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:p2pCancelConnect
废弃版本:|方法名 or 属性名:p2pCancelConnect
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.p2pDisonnect |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:startDiscoverDevices
废弃版本:|方法名 or 属性名:startDiscoverDevices
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.startDiscoverDevices |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:stopDiscoverDevices
废弃版本:|方法名 or 属性名:stopDiscoverDevices
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.stopDiscoverDevices |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:deletePersistentGroup
废弃版本:|方法名 or 属性名:deletePersistentGroup
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.deletePersistentGroup |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:setDeviceName
废弃版本:|方法名 or 属性名:setDeviceName
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.setDeviceName |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_wifiStateChange
废弃版本:|方法名 or 属性名:on_wifiStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_wifiStateChange
废弃版本:|方法名 or 属性名:off_wifiStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_wifiConnectionChange
废弃版本:|方法名 or 属性名:on_wifiConnectionChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_wifiConnectionChange
废弃版本:|方法名 or 属性名:off_wifiConnectionChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_wifiScanStateChange
废弃版本:|方法名 or 属性名:on_wifiScanStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_wifiScanStateChange
废弃版本:|方法名 or 属性名:off_wifiScanStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_wifiRssiChange
废弃版本:|方法名 or 属性名:on_wifiRssiChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_wifiRssiChange
废弃版本:|方法名 or 属性名:off_wifiRssiChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_streamChange
废弃版本:|方法名 or 属性名:on_streamChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_streamChange
废弃版本:|方法名 or 属性名:off_streamChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_hotspotStateChange
废弃版本:|方法名 or 属性名:on_hotspotStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_hotspotStateChange
废弃版本:|方法名 or 属性名:off_hotspotStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_hotspotStaJoin
废弃版本:|方法名 or 属性名:on_hotspotStaJoin
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_hotspotStaJoin
废弃版本:|方法名 or 属性名:off_hotspotStaJoin
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_hotspotStaLeave
废弃版本:|方法名 or 属性名:on_hotspotStaLeave
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_hotspotStaLeave
废弃版本:|方法名 or 属性名:off_hotspotStaLeave
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pStateChange
废弃版本:|方法名 or 属性名:on_p2pStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pStateChange
废弃版本:|方法名 or 属性名:off_p2pStateChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pConnectionChange
废弃版本:|方法名 or 属性名:on_p2pConnectionChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pConnectionChange
废弃版本:|方法名 or 属性名:off_p2pConnectionChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pDeviceChange
废弃版本:|方法名 or 属性名:on_p2pDeviceChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pDeviceChange
废弃版本:|方法名 or 属性名:off_p2pDeviceChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pPeerDeviceChange
废弃版本:|方法名 or 属性名:on_p2pPeerDeviceChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pPeerDeviceChange
废弃版本:|方法名 or 属性名:off_p2pPeerDeviceChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pPersistentGroupChange
废弃版本:|方法名 or 属性名:on_p2pPersistentGroupChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pPersistentGroupChange
废弃版本:|方法名 or 属性名:off_p2pPersistentGroupChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:on_p2pDiscoveryChange
废弃版本:|方法名 or 属性名:on_p2pDiscoveryChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.on|@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:off_p2pDiscoveryChange
废弃版本:|方法名 or 属性名:off_p2pDiscoveryChange
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.off|@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiDeviceConfig
废弃版本:|类名:WifiDeviceConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ssid
废弃版本:|方法名 or 属性名:ssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:bssid
废弃版本:|方法名 or 属性名:bssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:preSharedKey
废弃版本:|方法名 or 属性名:preSharedKey
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isHiddenSsid
废弃版本:|方法名 or 属性名:isHiddenSsid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:securityType
废弃版本:|方法名 or 属性名:securityType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:creatorUid
废弃版本:|方法名 or 属性名:creatorUid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:disableReason
废弃版本:|方法名 or 属性名:disableReason
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:netId
废弃版本:|方法名 or 属性名:netId
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:randomMacType
废弃版本:|方法名 or 属性名:randomMacType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:randomMacAddr
废弃版本:|方法名 or 属性名:randomMacAddr
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ipType
废弃版本:|方法名 or 属性名:ipType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:staticIp
废弃版本:|方法名 or 属性名:staticIp
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiDeviceConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpConfig
废弃版本:|类名:IpConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ipAddress
废弃版本:|方法名 or 属性名:ipAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:gateway
废弃版本:|方法名 or 属性名:gateway
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:dnsServers
废弃版本:|方法名 or 属性名:dnsServers
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:domains
废弃版本:|方法名 or 属性名:domains
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiScanInfo
废弃版本:|类名:WifiScanInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ssid
废弃版本:|方法名 or 属性名:ssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:bssid
废弃版本:|方法名 or 属性名:bssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:capabilities
废弃版本:|方法名 or 属性名:capabilities
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:securityType
废弃版本:|方法名 or 属性名:securityType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:rssi
废弃版本:|方法名 or 属性名:rssi
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:band
废弃版本:|方法名 or 属性名:band
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:frequency
废弃版本:|方法名 or 属性名:frequency
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:channelWidth
废弃版本:|方法名 or 属性名:channelWidth
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:timestamp
废弃版本:|方法名 or 属性名:timestamp
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiScanInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiSecurityType
废弃版本:|类名:WifiSecurityType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_SEC_TYPE_INVALID
废弃版本:|方法名 or 属性名:WIFI_SEC_TYPE_INVALID
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_SEC_TYPE_OPEN
废弃版本:|方法名 or 属性名:WIFI_SEC_TYPE_OPEN
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_SEC_TYPE_WEP
废弃版本:|方法名 or 属性名:WIFI_SEC_TYPE_WEP
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_SEC_TYPE_PSK
废弃版本:|方法名 or 属性名:WIFI_SEC_TYPE_PSK
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_SEC_TYPE_SAE
废弃版本:|方法名 or 属性名:WIFI_SEC_TYPE_SAE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiSecurityType |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiLinkedInfo
废弃版本:|类名:WifiLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ssid
废弃版本:|方法名 or 属性名:ssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:bssid
废弃版本:|方法名 or 属性名:bssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:networkId
废弃版本:|方法名 or 属性名:networkId
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:rssi
废弃版本:|方法名 or 属性名:rssi
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:band
废弃版本:|方法名 or 属性名:band
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:linkSpeed
废弃版本:|方法名 or 属性名:linkSpeed
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:frequency
废弃版本:|方法名 or 属性名:frequency
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isHidden
废弃版本:|方法名 or 属性名:isHidden
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isRestricted
废弃版本:|方法名 or 属性名:isRestricted
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:chload
废弃版本:|方法名 or 属性名:chload
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:snr
废弃版本:|方法名 or 属性名:snr
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:macAddress
废弃版本:|方法名 or 属性名:macAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ipAddress
废弃版本:|方法名 or 属性名:ipAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:suppState
废弃版本:|方法名 or 属性名:suppState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:connState
废弃版本:|方法名 or 属性名:connState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpInfo
废弃版本:|类名:IpInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ipAddress
废弃版本:|方法名 or 属性名:ipAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:gateway
废弃版本:|方法名 or 属性名:gateway
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:netmask
废弃版本:|方法名 or 属性名:netmask
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:primaryDns
废弃版本:|方法名 or 属性名:primaryDns
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:secondDns
废弃版本:|方法名 or 属性名:secondDns
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:serverIp
废弃版本:|方法名 or 属性名:serverIp
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:leaseDuration
废弃版本:|方法名 or 属性名:leaseDuration
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:HotspotConfig
废弃版本:|类名:HotspotConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ssid
废弃版本:|方法名 or 属性名:ssid
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:securityType
废弃版本:|方法名 or 属性名:securityType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:band
废弃版本:|方法名 or 属性名:band
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:preSharedKey
废弃版本:|方法名 or 属性名:preSharedKey
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:maxConn
废弃版本:|方法名 or 属性名:maxConn
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.HotspotConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:StationInfo
废弃版本:|类名:StationInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:macAddress
废弃版本:|方法名 or 属性名:macAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ipAddress
废弃版本:|方法名 or 属性名:ipAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.StationInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:IpType
废弃版本:|类名:IpType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:STATIC
废弃版本:|方法名 or 属性名:STATIC
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:DHCP
废弃版本:|方法名 or 属性名:DHCP
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.IpType |@ohos.wifi.d.ts| +|废弃版本有变化|类名:SuppState
废弃版本:|类名:SuppState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:DISCONNECTED
废弃版本:|方法名 or 属性名:DISCONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:INTERFACE_DISABLED
废弃版本:|方法名 or 属性名:INTERFACE_DISABLED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:INACTIVE
废弃版本:|方法名 or 属性名:INACTIVE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:SCANNING
废弃版本:|方法名 or 属性名:SCANNING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:AUTHENTICATING
废弃版本:|方法名 or 属性名:AUTHENTICATING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ASSOCIATING
废弃版本:|方法名 or 属性名:ASSOCIATING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ASSOCIATED
废弃版本:|方法名 or 属性名:ASSOCIATED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:FOUR_WAY_HANDSHAKE
废弃版本:|方法名 or 属性名:FOUR_WAY_HANDSHAKE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:GROUP_HANDSHAKE
废弃版本:|方法名 or 属性名:GROUP_HANDSHAKE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:COMPLETED
废弃版本:|方法名 or 属性名:COMPLETED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:UNINITIALIZED
废弃版本:|方法名 or 属性名:UNINITIALIZED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:INVALID
废弃版本:|方法名 or 属性名:INVALID
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.SuppState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:ConnState
废弃版本:|类名:ConnState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:SCANNING
废弃版本:|方法名 or 属性名:SCANNING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:CONNECTING
废弃版本:|方法名 or 属性名:CONNECTING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:AUTHENTICATING
废弃版本:|方法名 or 属性名:AUTHENTICATING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:OBTAINING_IPADDR
废弃版本:|方法名 or 属性名:OBTAINING_IPADDR
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:CONNECTED
废弃版本:|方法名 or 属性名:CONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:DISCONNECTING
废弃版本:|方法名 or 属性名:DISCONNECTING
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:DISCONNECTED
废弃版本:|方法名 or 属性名:DISCONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN
废弃版本:|方法名 or 属性名:UNKNOWN
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.ConnState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pDevice
废弃版本:|类名:WifiP2pDevice
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceName
废弃版本:|方法名 or 属性名:deviceName
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceAddress
废弃版本:|方法名 or 属性名:deviceAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:primaryDeviceType
废弃版本:|方法名 or 属性名:primaryDeviceType
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceStatus
废弃版本:|方法名 or 属性名:deviceStatus
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:groupCapabilitys
废弃版本:|方法名 or 属性名:groupCapabilitys
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pDevice |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2PConfig
废弃版本:|类名:WifiP2PConfig
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceAddress
废弃版本:|方法名 or 属性名:deviceAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:netId
废弃版本:|方法名 or 属性名:netId
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:passphrase
废弃版本:|方法名 or 属性名:passphrase
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:groupName
废弃版本:|方法名 or 属性名:groupName
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:goBand
废弃版本:|方法名 or 属性名:goBand
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2PConfig |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pGroupInfo
废弃版本:|类名:WifiP2pGroupInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isP2pGo
废弃版本:|方法名 or 属性名:isP2pGo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:ownerInfo
废弃版本:|方法名 or 属性名:ownerInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:passphrase
废弃版本:|方法名 or 属性名:passphrase
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:interface
废弃版本:|方法名 or 属性名:interface
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:groupName
废弃版本:|方法名 or 属性名:groupName
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:networkId
废弃版本:|方法名 or 属性名:networkId
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:frequency
废弃版本:|方法名 or 属性名:frequency
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:clientDevices
废弃版本:|方法名 or 属性名:clientDevices
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:goIpAddress
废弃版本:|方法名 or 属性名:goIpAddress
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pGroupInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:P2pConnectState
废弃版本:|类名:P2pConnectState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pConnectState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:DISCONNECTED
废弃版本:|方法名 or 属性名:DISCONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pConnectState |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:CONNECTED
废弃版本:|方法名 or 属性名:CONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pConnectState |@ohos.wifi.d.ts| +|废弃版本有变化|类名:WifiP2pLinkedInfo
废弃版本:|类名:WifiP2pLinkedInfo
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:connectState
废弃版本:|方法名 or 属性名:connectState
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:isGroupOwner
废弃版本:|方法名 or 属性名:isGroupOwner
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:groupOwnerAddr
废弃版本:|方法名 or 属性名:groupOwnerAddr
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.WifiP2pLinkedInfo |@ohos.wifi.d.ts| +|废弃版本有变化|类名:P2pDeviceStatus
废弃版本:|类名:P2pDeviceStatus
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:CONNECTED
废弃版本:|方法名 or 属性名:CONNECTED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:INVITED
废弃版本:|方法名 or 属性名:INVITED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:FAILED
废弃版本:|方法名 or 属性名:FAILED
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:AVAILABLE
废弃版本:|方法名 or 属性名:AVAILABLE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:UNAVAILABLE
废弃版本:|方法名 or 属性名:UNAVAILABLE
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.P2pDeviceStatus |@ohos.wifi.d.ts| +|废弃版本有变化|类名:GroupOwnerBand
废弃版本:|类名:GroupOwnerBand
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:GO_BAND_AUTO
废弃版本:|方法名 or 属性名:GO_BAND_AUTO
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:GO_BAND_2GHZ
废弃版本:|方法名 or 属性名:GO_BAND_2GHZ
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:GO_BAND_5GHZ
废弃版本:|方法名 or 属性名:GO_BAND_5GHZ
废弃版本:9
代替接口:ohos.wifiManager/wifiManager.GroupOwnerBand |@ohos.wifi.d.ts| +|废弃版本有变化|方法名 or 属性名:enableHotspot
废弃版本:|方法名 or 属性名:enableHotspot
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.enableHotspot |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:disableHotspot
废弃版本:|方法名 or 属性名:disableHotspot
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.disableHotspot |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:getSupportedPowerModel
废弃版本:|方法名 or 属性名:getSupportedPowerModel
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getSupportedPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:getPowerModel
废弃版本:|方法名 or 属性名:getPowerModel
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.getPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:setPowerModel
废弃版本:|方法名 or 属性名:setPowerModel
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.setPowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|类名:PowerModel
废弃版本:|类名:PowerModel
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:SLEEPING
废弃版本:|方法名 or 属性名:SLEEPING
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:GENERAL
废弃版本:|方法名 or 属性名:GENERAL
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts| +|废弃版本有变化|方法名 or 属性名:THROUGH_WALL
废弃版本:|方法名 or 属性名:THROUGH_WALL
废弃版本:9
代替接口:ohos.wifiManagerExt/wifiManagerExt.PowerMode |@ohos.wifiext.d.ts| +|删除(权限)|方法名 or 属性名:getNdefMessage
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getNdefMessage
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:getSectorCount
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getSectorCount
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:getBlockCountInSector
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getBlockCountInSector
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:getTagSize
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getTagSize
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:isEmulatedTag
权限:ohos.permission.NFC_TAG|方法名 or 属性名:isEmulatedTag
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:getBlockIndex
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getBlockIndex
权限:N/A|nfctech.d.ts| +|删除(权限)|方法名 or 属性名:getSectorIndex
权限:ohos.permission.NFC_TAG|方法名 or 属性名:getSectorIndex
权限:N/A|nfctech.d.ts| +|新增(错误码)||方法名 or 属性名:isExtendedApduSupported
错误码内容:201,401,3100201|nfctech.d.ts| +|新增(错误码)||方法名 or 属性名:readNdef
错误码内容:201,401,3100201|nfctech.d.ts| +|新增(错误码)||方法名 or 属性名:getBlockCountInSector
错误码内容:401|nfctech.d.ts| +|新增(错误码)||方法名 or 属性名:getBlockIndex
错误码内容:401|nfctech.d.ts| +|新增(错误码)||方法名 or 属性名:getSectorIndex
错误码内容:401|nfctech.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-compiler-and-runtime.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-compiler-and-runtime.md new file mode 100644 index 0000000000000000000000000000000000000000..d44d33a40ee691b3ba5451c36f83207468aa23bf --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-compiler-and-runtime.md @@ -0,0 +1,268 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.convertxml
类名:ConvertXML
方法名 or 属性名:convertToJSObject|@ohos.convertxml.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:isAppUid|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:getUidForName|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:getThreadPriority|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:getSystemConfig|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:getEnvironmentVar|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:exit|@ohos.process.d.ts| +|新增||模块名: ohos.process
类名: ProcessManager
方法名 or 属性名:kill|@ohos.process.d.ts| +|新增||模块名:ohos.uri
类名:URI
方法名 or 属性名:equalsTo|@ohos.uri.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: string, key: string, searchParams: this) => void, thisArg?: Object): void;|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:ructor(init?|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:append|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:delete|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:getAll|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:entries|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:forEach|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:get|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:has|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:set|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:sort|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:keys|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:values|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:[Symbol.iterator]|@ohos.url.d.ts| +|新增||模块名: ohos.url
类名: URLParams
方法名 or 属性名:toString|@ohos.url.d.ts| +|新增||模块名:ohos.url
类名:URL
方法名 or 属性名:parseURL|@ohos.url.d.ts| +|新增||方法名 or 属性名:replaceAllElements
函数:replaceAllElements(callbackFn: (value: T, index?: number, arrlist?: ArrayList) => T,

thisArg?: Object): void;|@ohos.util.ArrayList.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList) => void,

thisArg?: Object): void;|@ohos.util.ArrayList.d.ts| +|新增||模块名:ohos.util
类名:util
方法名 or 属性名:format|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:util
方法名 or 属性名:errnoToString|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:TextDecoder
方法名 or 属性名:create|@ohos.util.d.ts| +|新增||方法名 or 属性名:encodeInto
函数:encodeInto(input?: string): Uint8Array;|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:TextEncoder
方法名 or 属性名:encodeIntoUint8Array|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:RationalNumber|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:RationalNumber
方法名 or 属性名:parseRationalNumber|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:RationalNumber
方法名 or 属性名:compare|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:RationalNumber
方法名 or 属性名:getCommonFactor|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:ructor(capacity?|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:updateCapacity|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:toString|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:length|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getCapacity|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:clear|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getCreateCount|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getMissCount|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getRemovalCount|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getMatchCount|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:getPutCount|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:isEmpty|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:get|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:put|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:values|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:keys|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:remove|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:afterRemoval|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:contains|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:createDefault|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:entries|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: LRUCache
方法名 or 属性名:[Symbol.iterator]|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:ructor(lowerObj|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:toString|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:intersect|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:intersect|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:getUpper|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:getLower|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:expand|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:expand|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:expand|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:contains|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:contains|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: ScopeHelper
方法名 or 属性名:clamp|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:encodeSync|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:encodeToStringSync|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:decodeSync|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:encode|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:encodeToString|@ohos.util.d.ts| +|新增||模块名: ohos.util
类名: Base64Helper
方法名 or 属性名:decode|@ohos.util.d.ts| +|新增||模块名:ohos.util
类名:types|@ohos.util.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, deque?: Deque) => void,

thisArg?: Object): void;|@ohos.util.Deque.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: V, key?: K, map?: HashMap) => void,

thisArg?: Object): void;|@ohos.util.HashMap.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: T, key?: T, set?: HashSet) => void,

thisArg?: Object): void;|@ohos.util.HashSet.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap) => void,

thisArg?: Object): void;|@ohos.util.LightWeightMap.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet) => void,

thisArg?: Object): void;|@ohos.util.LightWeightSet.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, LinkedList?: LinkedList) => void,

thisArg?: Object): void;|@ohos.util.LinkedList.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, List?: List) => void,

thisArg?: Object): void;|@ohos.util.List.d.ts| +|新增||方法名 or 属性名:replaceAllElements
函数:replaceAllElements(callbackFn: (value: T, index?: number, list?: List) => T,

thisArg?: Object): void;|@ohos.util.List.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray) => void,

thisArg?: Object): void;|@ohos.util.PlainArray.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, Queue?: Queue) => void,

thisArg?: Object): void;|@ohos.util.Queue.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, stack?: Stack) => void,

thisArg?: Object): void;|@ohos.util.Stack.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: V, key?: K, map?: TreeMap) => void,

thisArg?: Object): void;|@ohos.util.TreeMap.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value?: T, key?: T, set?: TreeSet) => void,

thisArg?: Object): void;|@ohos.util.TreeSet.d.ts| +|新增||方法名 or 属性名:replaceAllElements
函数:replaceAllElements(callbackFn: (value: T, index?: number, vector?: Vector) => T,

thisArg?: Object): void;|@ohos.util.Vector.d.ts| +|新增||方法名 or 属性名:forEach
函数:forEach(callbackFn: (value: T, index?: number, vector?: Vector) => void,

thisArg?: Object): void;|@ohos.util.Vector.d.ts| +|新增||模块名: ohos.worker
类名: MessageEvents|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: MessageEvents
方法名 or 属性名:data|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventListener
方法名 or 属性名:WorkerEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventTarget|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventTarget
方法名 or 属性名:addEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventTarget
方法名 or 属性名:dispatchEvent|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventTarget
方法名 or 属性名:removeEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: WorkerEventTarget
方法名 or 属性名:removeAllListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: GlobalScope|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: GlobalScope
方法名 or 属性名:name|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: GlobalScope
方法名 or 属性名:onerror|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: GlobalScope
方法名 or 属性名:self|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法名 or 属性名:onmessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法名 or 属性名:onmessageerror|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法名 or 属性名:close|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法名 or 属性名:postMessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorkerGlobalScope
方法名 or 属性名:postMessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:ructor(scriptURL|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:onexit|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:onerror|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:onmessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:onmessageerror|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:postMessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:postMessage|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:on|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:once|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:off|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:terminate|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:addEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:dispatchEvent|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:removeEventListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: ThreadWorker
方法名 or 属性名:removeAllListener|@ohos.worker.d.ts| +|新增||模块名: ohos.worker
类名: worker
方法名 or 属性名:workerPort|@ohos.worker.d.ts| +|删除|模块名:ohos.worker
类名:Worker
方法名 or 属性名:addEventListener||@ohos.worker.d.ts| +|删除|模块名:ohos.worker
类名:Worker
方法名 or 属性名:dispatchEvent||@ohos.worker.d.ts| +|删除|模块名:ohos.worker
类名:Worker
方法名 or 属性名:removeEventListener||@ohos.worker.d.ts| +|删除|模块名:ohos.worker
类名:Worker
方法名 or 属性名:removeAllListener||@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:convert
废弃版本:|方法名 or 属性名:convert
废弃版本:9
代替接口:ohos.convertxml.ConvertXML.convertToJSObject |@ohos.convertxml.d.ts| +|废弃版本有变化|方法名 or 属性名:isAppUid
废弃版本:|方法名 or 属性名:isAppUid
废弃版本:9
代替接口:ohos.process.ProcessManager.isAppUid |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:getUidForName
废弃版本:|方法名 or 属性名:getUidForName
废弃版本:9
代替接口:ohos.process.ProcessManager.getUidForName |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:getThreadPriority
废弃版本:|方法名 or 属性名:getThreadPriority
废弃版本:9
代替接口:ohos.process.ProcessManager.getThreadPriority |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:getSystemConfig
废弃版本:|方法名 or 属性名:getSystemConfig
废弃版本:9
代替接口:ohos.process.ProcessManager.getSystemConfig |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:getEnvironmentVar
废弃版本:|方法名 or 属性名:getEnvironmentVar
废弃版本:9
代替接口:ohos.process.ProcessManager.getEnvironmentVar |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:exit
废弃版本:|方法名 or 属性名:exit
废弃版本:9
代替接口:ohos.process.ProcessManager.exit |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:kill
废弃版本:|方法名 or 属性名:kill
废弃版本:9
代替接口:ohos.process.ProcessManager.kill |@ohos.process.d.ts| +|废弃版本有变化|方法名 or 属性名:equals
废弃版本:|方法名 or 属性名:equals
废弃版本:9
代替接口:ohos.uri.URI.equalsTo |@ohos.uri.d.ts| +|废弃版本有变化|类名:URLSearchParams
废弃版本:|类名:URLSearchParams
废弃版本:9
代替接口:ohos.url.URLParams |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(init?
废弃版本:|方法名 or 属性名:ructor(init?
废弃版本:9
代替接口:ohos.url.URLParams.constructor |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:append
废弃版本:|方法名 or 属性名:append
废弃版本:9
代替接口:ohos.url.URLParams.append |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:delete
废弃版本:|方法名 or 属性名:delete
废弃版本:9
代替接口:ohos.url.URLParams.delete |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:getAll
废弃版本:|方法名 or 属性名:getAll
废弃版本:9
代替接口:ohos.url.URLParams.getAll |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:entries
废弃版本:|方法名 or 属性名:entries
废弃版本:9
代替接口:ohos.url.URLParams.entries |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:get
废弃版本:|方法名 or 属性名:get
废弃版本:9
代替接口:ohos.url.URLParams.get |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:has
废弃版本:|方法名 or 属性名:has
废弃版本:9
代替接口:ohos.url.URLParams.has |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:set
废弃版本:|方法名 or 属性名:set
废弃版本:9
代替接口:ohos.url.URLParams.set |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:sort
废弃版本:|方法名 or 属性名:sort
废弃版本:9
代替接口:ohos.url.URLParams.sort |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:keys
废弃版本:|方法名 or 属性名:keys
废弃版本:9
代替接口:ohos.url.URLParams.keys |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:values
废弃版本:|方法名 or 属性名:values
废弃版本:9
代替接口:ohos.url.URLParams.values |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:[Symbol.iterator]
废弃版本:|方法名 or 属性名:[Symbol.iterator]
废弃版本:9
代替接口:ohos.url.URLParams.|@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:toString
废弃版本:|方法名 or 属性名:toString
废弃版本:9
代替接口:ohos.url.URLParams.toString |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(url
废弃版本:|方法名 or 属性名:ructor(url
废弃版本:9
代替接口:ohos.URL.constructor |@ohos.url.d.ts| +|废弃版本有变化|方法名 or 属性名:printf
废弃版本:|方法名 or 属性名:printf
废弃版本:9
代替接口:ohos.util.format |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getErrorString
废弃版本:|方法名 or 属性名:getErrorString
废弃版本:9
代替接口:ohos.util.errnoToString |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(

encoding?
废弃版本:|方法名 or 属性名:ructor(

encoding?
废弃版本:9
代替接口:ohos.util.constructor |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:decode
废弃版本:|方法名 or 属性名:decode
废弃版本:9
代替接口:ohos.util.decodeWithStream |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encode
废弃版本:|方法名 or 属性名:encode
废弃版本:9
代替接口:ohos.util.encodeInto |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encodeInto
废弃版本:|方法名 or 属性名:encodeInto
废弃版本:9
代替接口:ohos.util.encodeIntoUint8Array |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(numerator
废弃版本:|方法名 or 属性名:ructor(numerator
废弃版本:9
代替接口:ohos.util.constructor |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:compareTo
废弃版本:|方法名 or 属性名:compareTo
废弃版本:9
代替接口:ohos.util.compare |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getCommonDivisor
废弃版本:|方法名 or 属性名:getCommonDivisor
废弃版本:9
代替接口:ohos.util.getCommonFactor |@ohos.util.d.ts| +|废弃版本有变化|类名:LruBuffer
废弃版本:|类名:LruBuffer
废弃版本:9
代替接口:ohos.util.LRUCache |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:updateCapacity
废弃版本:|方法名 or 属性名:updateCapacity
废弃版本:9
代替接口:ohos.util.LRUCache.updateCapacity |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getCapacity
废弃版本:|方法名 or 属性名:getCapacity
废弃版本:9
代替接口:ohos.util.LRUCache.getCapacity |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:clear
废弃版本:|方法名 or 属性名:clear
废弃版本:9
代替接口:ohos.util.LRUCache.clear |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getCreateCount
废弃版本:|方法名 or 属性名:getCreateCount
废弃版本:9
代替接口:ohos.util.LRUCache.getCreateCount |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getMissCount
废弃版本:|方法名 or 属性名:getMissCount
废弃版本:9
代替接口:ohos.util.LRUCache.getMissCount |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getRemovalCount
废弃版本:|方法名 or 属性名:getRemovalCount
废弃版本:9
代替接口:ohos.util.LRUCache.getRemovalCount |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getMatchCount
废弃版本:|方法名 or 属性名:getMatchCount
废弃版本:9
代替接口:ohos.util.LRUCache.getMatchCount |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getPutCount
废弃版本:|方法名 or 属性名:getPutCount
废弃版本:9
代替接口:ohos.util.LRUCache.getPutCount |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:isEmpty
废弃版本:|方法名 or 属性名:isEmpty
废弃版本:9
代替接口:ohos.util.LRUCache.isEmpty |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:get
废弃版本:|方法名 or 属性名:get
废弃版本:9
代替接口:ohos.util.LRUCache.get |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:put
废弃版本:|方法名 or 属性名:put
废弃版本:9
代替接口:ohos.util.LRUCache.put |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:values
废弃版本:|方法名 or 属性名:values
废弃版本:9
代替接口:ohos.util.LRUCache.values |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:keys
废弃版本:|方法名 or 属性名:keys
废弃版本:9
代替接口:ohos.util.LRUCache.keys |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.util.LRUCache.remove |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:afterRemoval
废弃版本:|方法名 or 属性名:afterRemoval
废弃版本:9
代替接口:ohos.util.LRUCache.afterRemoval |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:contains
废弃版本:|方法名 or 属性名:contains
废弃版本:9
代替接口:ohos.util.LRUCache.contains |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:createDefault
废弃版本:|方法名 or 属性名:createDefault
废弃版本:9
代替接口:ohos.util.LRUCache.createDefault |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:entries
废弃版本:|方法名 or 属性名:entries
废弃版本:9
代替接口:ohos.util.LRUCache.entries |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:[Symbol.iterator]
废弃版本:|方法名 or 属性名:[Symbol.iterator]
废弃版本:9
代替接口:ohos.util.LRUCache.|@ohos.util.d.ts| +|废弃版本有变化|类名:Scope
废弃版本:|类名:Scope
废弃版本:9
代替接口:ohos.util.ScopeHelper |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(lowerObj
废弃版本:|方法名 or 属性名:ructor(lowerObj
废弃版本:9
代替接口:ohos.util.ScopeHelper.constructor |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:toString
废弃版本:|方法名 or 属性名:toString
废弃版本:9
代替接口:ohos.util.ScopeHelper.toString |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:intersect
废弃版本:|方法名 or 属性名:intersect
废弃版本:9
代替接口:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:intersect
废弃版本:|方法名 or 属性名:intersect
废弃版本:9
代替接口:ohos.util.ScopeHelper.intersect |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getUpper
废弃版本:|方法名 or 属性名:getUpper
废弃版本:9
代替接口:ohos.util.ScopeHelper.getUpper |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:getLower
废弃版本:|方法名 or 属性名:getLower
废弃版本:9
代替接口:ohos.util.ScopeHelper.getLower |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:expand
废弃版本:|方法名 or 属性名:expand
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:expand
废弃版本:|方法名 or 属性名:expand
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:expand
废弃版本:|方法名 or 属性名:expand
废弃版本:9
代替接口:ohos.util.ScopeHelper.expand |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:contains
废弃版本:|方法名 or 属性名:contains
废弃版本:9
代替接口:ohos.util.ScopeHelper.contains |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:contains
废弃版本:|方法名 or 属性名:contains
废弃版本:9
代替接口:ohos.util.ScopeHelper.contains |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:clamp
废弃版本:|方法名 or 属性名:clamp
废弃版本:9
代替接口:ohos.util.ScopeHelper.clamp |@ohos.util.d.ts| +|废弃版本有变化|类名:Base64
废弃版本:|类名:Base64
废弃版本:9
代替接口:ohos.util.Base64Helper |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encodeSync
废弃版本:|方法名 or 属性名:encodeSync
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeSync |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encodeToStringSync
废弃版本:|方法名 or 属性名:encodeToStringSync
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeToStringSync |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:decodeSync
废弃版本:|方法名 or 属性名:decodeSync
废弃版本:9
代替接口:ohos.util.Base64Helper.decodeSync |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encode
废弃版本:|方法名 or 属性名:encode
废弃版本:9
代替接口:ohos.util.Base64Helper.encode |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:encodeToString
废弃版本:|方法名 or 属性名:encodeToString
废弃版本:9
代替接口:ohos.util.Base64Helper.encodeToString |@ohos.util.d.ts| +|废弃版本有变化|方法名 or 属性名:decode
废弃版本:|方法名 or 属性名:decode
废弃版本:9
代替接口:ohos.util.Base64Helper.decode |@ohos.util.d.ts| +|废弃版本有变化|类名:Vector
废弃版本:|类名:Vector
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:length
废弃版本:|方法名 or 属性名:length
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:add
废弃版本:|方法名 or 属性名:add
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:insert
废弃版本:|方法名 or 属性名:insert
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:has
废弃版本:|方法名 or 属性名:has
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:get
废弃版本:|方法名 or 属性名:get
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getIndexOf
废弃版本:|方法名 or 属性名:getIndexOf
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getFirstElement
废弃版本:|方法名 or 属性名:getFirstElement
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getLastElement
废弃版本:|方法名 or 属性名:getLastElement
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:removeByIndex
废弃版本:|方法名 or 属性名:removeByIndex
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:set
废弃版本:|方法名 or 属性名:set
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getLastIndexOf
废弃版本:|方法名 or 属性名:getLastIndexOf
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getLastIndexFrom
废弃版本:|方法名 or 属性名:getLastIndexFrom
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getIndexFrom
废弃版本:|方法名 or 属性名:getIndexFrom
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:removeByRange
废弃版本:|方法名 or 属性名:removeByRange
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:sort
废弃版本:|方法名 or 属性名:sort
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:subVector
废弃版本:|方法名 or 属性名:subVector
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:clear
废弃版本:|方法名 or 属性名:clear
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:clone
废弃版本:|方法名 or 属性名:clone
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:setLength
废弃版本:|方法名 or 属性名:setLength
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:getCapacity
废弃版本:|方法名 or 属性名:getCapacity
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:convertToArray
废弃版本:|方法名 or 属性名:convertToArray
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:isEmpty
废弃版本:|方法名 or 属性名:isEmpty
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:increaseCapacityTo
废弃版本:|方法名 or 属性名:increaseCapacityTo
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:toString
废弃版本:|方法名 or 属性名:toString
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:trimToCurrentLength
废弃版本:|方法名 or 属性名:trimToCurrentLength
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:copyToArray
废弃版本:|方法名 or 属性名:copyToArray
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|方法名 or 属性名:[Symbol.iterator]
废弃版本:|方法名 or 属性名:[Symbol.iterator]
废弃版本:9
代替接口:ohos.util.ArrayList |@ohos.util.Vector.d.ts| +|废弃版本有变化|类名:EventListener
废弃版本:|类名:EventListener
废弃版本:9
代替接口:ohos.worker.WorkerEventListener |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:EventListener
废弃版本:|方法名 or 属性名:EventListener
废弃版本:9
代替接口:ohos.worker.WorkerEventListener.|@ohos.worker.d.ts| +|废弃版本有变化|类名:EventTarget
废弃版本:|类名:EventTarget
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:addEventListener
废弃版本:|方法名 or 属性名:addEventListener
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.addEventListener |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:dispatchEvent
废弃版本:|方法名 or 属性名:dispatchEvent
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.dispatchEvent |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:removeEventListener
废弃版本:|方法名 or 属性名:removeEventListener
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.removeEventListener |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAllListener
废弃版本:|方法名 or 属性名:removeAllListener
废弃版本:9
代替接口:ohos.worker.WorkerEventTarget.removeAllListener |@ohos.worker.d.ts| +|废弃版本有变化|类名:WorkerGlobalScope
废弃版本:|类名:WorkerGlobalScope
废弃版本:9
代替接口:ohos.worker.GlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.worker.GlobalScope.name |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onerror
废弃版本:|方法名 or 属性名:onerror
废弃版本:9
代替接口:ohos.worker.GlobalScope.onerror |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:self
废弃版本:|方法名 or 属性名:self
废弃版本:9
代替接口:ohos.worker.GlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|类名:DedicatedWorkerGlobalScope
废弃版本:|类名:DedicatedWorkerGlobalScope
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onmessage
废弃版本:|方法名 or 属性名:onmessage
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.onmessage |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onmessageerror
废弃版本:|方法名 or 属性名:onmessageerror
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.onmessageerror |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:close
废弃版本:|方法名 or 属性名:close
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope.close |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:postMessage
废弃版本:|方法名 or 属性名:postMessage
废弃版本:9
代替接口:ohos.worker.ThreadWorkerGlobalScope |@ohos.worker.d.ts| +|废弃版本有变化|类名:Worker
废弃版本:|类名:Worker
废弃版本:9
代替接口:ohos.worker.ThreadWorker |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(scriptURL
废弃版本:|方法名 or 属性名:ructor(scriptURL
废弃版本:9
代替接口:ohos.worker.ThreadWorker.constructor |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onexit
废弃版本:|方法名 or 属性名:onexit
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onexit |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onerror
废弃版本:|方法名 or 属性名:onerror
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onerror |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onmessage
废弃版本:|方法名 or 属性名:onmessage
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onmessage |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:onmessageerror
废弃版本:|方法名 or 属性名:onmessageerror
废弃版本:9
代替接口:ohos.worker.ThreadWorker.onmessageerror |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:postMessage
废弃版本:|方法名 or 属性名:postMessage
废弃版本:9
代替接口:ohos.worker.ThreadWorker.postMessage |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:on
废弃版本:|方法名 or 属性名:on
废弃版本:9
代替接口:ohos.worker.ThreadWorker.on |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:ohos.worker.ThreadWorker.once |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:off
废弃版本:|方法名 or 属性名:off
废弃版本:9
代替接口:ohos.worker.ThreadWorker.off |@ohos.worker.d.ts| +|废弃版本有变化|方法名 or 属性名:terminate
废弃版本:|方法名 or 属性名:terminate
废弃版本:9
代替接口:ohos.worker.ThreadWorker.terminate |@ohos.worker.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-customization.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-customization.md new file mode 100644 index 0000000000000000000000000000000000000000..08f00bf0a06a19c4885f3849c57c00971edd1312 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-customization.md @@ -0,0 +1,76 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo
方法名 or 属性名: name|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: EnterpriseInfo
方法名 or 属性名: description|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: AdminType|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: AdminType
方法名 or 属性名: ADMIN_TYPE_NORMAL|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: AdminType
方法名 or 属性名: ADMIN_TYPE_SUPER|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: ManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: ManagedEvent
方法名 or 属性名: MANAGED_EVENT_BUNDLE_ADDED|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: ManagedEvent
方法名 or 属性名: MANAGED_EVENT_BUNDLE_REMOVED|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: enableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: enableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: enableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: disableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: disableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: disableAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: disableSuperAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: disableSuperAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: isAdminEnabled|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: isAdminEnabled|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: isAdminEnabled|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: getEnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: getEnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: setEnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: setEnterpriseInfo|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: isSuperAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: isSuperAdmin|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: subscribeManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: subscribeManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: unsubscribeManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.adminManager
类名: adminManager
方法名 or 属性名: unsubscribeManagedEvent|@ohos.enterprise.adminManager.d.ts| +|新增||模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager|@ohos.enterprise.dateTimeManager.d.ts| +|新增||模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager
方法名 or 属性名: setDateTime|@ohos.enterprise.dateTimeManager.d.ts| +|新增||模块名: ohos.enterprise.dateTimeManager
类名: dateTimeManager
方法名 or 属性名: setDateTime|@ohos.enterprise.dateTimeManager.d.ts| +|新增||模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增||模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onAdminEnabled|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增||模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onAdminDisabled|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增||模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onBundleAdded|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|新增||模块名: ohos.enterprise.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onBundleRemoved|@ohos.enterprise.EnterpriseAdminExtensionAbility.d.ts| +|删除|模块名: ohos.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility||@ohos.EnterpriseAdminExtensionAbility.d.ts| +|删除|模块名: ohos.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onAdminEnabled||@ohos.EnterpriseAdminExtensionAbility.d.ts| +|删除|模块名: ohos.EnterpriseAdminExtensionAbility
类名: EnterpriseAdminExtensionAbility
方法名 or 属性名: onAdminDisabled||@ohos.EnterpriseAdminExtensionAbility.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: EnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: EnterpriseInfo
方法名 or 属性名: name||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: EnterpriseInfo
方法名 or 属性名: description||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: AdminType||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: AdminType
方法名 or 属性名: ADMIN_TYPE_NORMAL||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: AdminType
方法名 or 属性名: ADMIN_TYPE_SUPER||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: enableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: enableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: enableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: disableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: disableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: disableAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: disableSuperAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: disableSuperAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: isAdminEnabled||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: getEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: getEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: setEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: setEnterpriseInfo||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: isSuperAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: isSuperAdmin||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: getDeviceSettingsManager||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: ohos.enterpriseDeviceManager
类名: enterpriseDeviceManager
方法名 or 属性名: getDeviceSettingsManager||@ohos.enterpriseDeviceManager.d.ts| +|删除|模块名: DeviceSettingsManager
类名: DeviceSettingsManager||DeviceSettingsManager.d.ts| +|删除|模块名: DeviceSettingsManager
类名: DeviceSettingsManager
方法名 or 属性名: setDateTime||DeviceSettingsManager.d.ts| +|删除|模块名: DeviceSettingsManager
类名: DeviceSettingsManager
方法名 or 属性名: setDateTime||DeviceSettingsManager.d.ts| +|新增(错误码)||方法名 or 属性名:getOneCfgFile
错误码内容:401|@ohos.configPolicy.d.ts| +|新增(错误码)||方法名 or 属性名:getCfgFiles
错误码内容:401|@ohos.configPolicy.d.ts| +|新增(错误码)||方法名 or 属性名:getCfgDirList
错误码内容:401|@ohos.configPolicy.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-dfx.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-dfx.md new file mode 100644 index 0000000000000000000000000000000000000000..95d6a0c69f87265c4f84b3e5b25eb6289a516bcf --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-dfx.md @@ -0,0 +1,125 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.faultLogger
类名:FaultLogger
方法名 or 属性名:query|@ohos.faultLogger.d.ts| +|新增||模块名:ohos.faultLogger
类名:FaultLogger
方法名 or 属性名:query|@ohos.faultLogger.d.ts| +|新增||模块名:ohos.hichecker
类名:hichecker
方法名 or 属性名:addCheckRule|@ohos.hichecker.d.ts| +|新增||模块名:ohos.hichecker
类名:hichecker
方法名 or 属性名:removeCheckRule|@ohos.hichecker.d.ts| +|新增||模块名:ohos.hichecker
类名:hichecker
方法名 or 属性名:containsCheckRule|@ohos.hichecker.d.ts| +|新增||模块名:ohos.hidebug
类名:hidebug
方法名 or 属性名:startJsCpuProfiling|@ohos.hidebug.d.ts| +|新增||模块名:ohos.hidebug
类名:hidebug
方法名 or 属性名:stopJsCpuProfiling|@ohos.hidebug.d.ts| +|新增||模块名:ohos.hidebug
类名:hidebug
方法名 or 属性名:dumpJsHeapData|@ohos.hidebug.d.ts| +|新增||方法名 or 属性名:getServiceDump
函数:function getServiceDump(serviceid : number, fd : number, args : Array) : void;|@ohos.hidebug.d.ts| +|新增||方法名 or 属性名:onQuery
函数:onQuery: (infos: SysEventInfo[]) => void;|@ohos.hiSysEvent.d.ts| +|新增||方法名 or 属性名:addWatcher
函数:function addWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts| +|新增||方法名 or 属性名:removeWatcher
函数:function removeWatcher(watcher: Watcher): void;|@ohos.hiSysEvent.d.ts| +|新增||方法名 or 属性名:query
函数:function query(queryArg: QueryArg, rules: QueryRule[], querier: Querier): void;|@ohos.hiSysEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法名 or 属性名: FAULT|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法名 or 属性名: STATISTIC|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法名 or 属性名: SECURITY|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: EventType
方法名 or 属性名: BEHAVIOR|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Event|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法名 or 属性名: USER_LOGIN|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法名 or 属性名: USER_LOGOUT|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Event
方法名 or 属性名: DISTRIBUTED_SERVICE_START|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Param|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法名 or 属性名: USER_ID|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法名 or 属性名: DISTRIBUTED_SERVICE_NAME|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Param
方法名 or 属性名: DISTRIBUTED_SERVICE_INSTANCE_ID|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: configure|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption
方法名 or 属性名: disable|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: ConfigOption
方法名 or 属性名: maxStorage|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法名 or 属性名: domain|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法名 or 属性名: name|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法名 or 属性名: eventType|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventInfo
方法名 or 属性名: params|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: write|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: write|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法名 or 属性名: packageId|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法名 or 属性名: row|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法名 or 属性名: size|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackage
方法名 or 属性名: data|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名: ructor(watcherName|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名: setSize|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名: takeNext|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法名 or 属性名: row|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法名 or 属性名: size|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: TriggerCondition
方法名 or 属性名: timeOut|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter
方法名 or 属性名: domain|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: AppEventFilter
方法名 or 属性名: eventTypes|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法名 or 属性名: name|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法名 or 属性名: triggerCondition|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法名 or 属性名: appEventFilters|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: Watcher
方法名 or 属性名: onTrigger|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: addWatcher|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: removeWatcher|@ohos.hiviewdfx.hiAppEvent.d.ts| +|新增||模块名: ohos.hiviewdfx.hiAppEvent
类名: hiAppEvent
方法名 or 属性名: clearData|@ohos.hiviewdfx.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventInfo||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventInfo
方法名 or 属性名:domain||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventInfo
方法名 or 属性名:name||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventInfo
方法名 or 属性名:eventType||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventInfo
方法名 or 属性名:params||@ohos.hiAppEvent.d.ts| +|删除|模块名:ohos.hiAppEvent
类名:hiAppEvent
方法名 or 属性名:write||@ohos.hiAppEvent.d.ts| +|删除|模块名:ohos.hiAppEvent
类名:hiAppEvent
方法名 or 属性名:write||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackage||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackage
方法名 or 属性名:packageId||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackage
方法名 or 属性名:row||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackage
方法名 or 属性名:size||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackage
方法名 or 属性名:data||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackageHolder||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名:ructor(watcherName||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名:setSize||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventPackageHolder
方法名 or 属性名:takeNext||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: TriggerCondition||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: TriggerCondition
方法名 or 属性名:row||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: TriggerCondition
方法名 or 属性名:size||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: TriggerCondition
方法名 or 属性名:timeOut||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventFilter||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventFilter
方法名 or 属性名:domain||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: AppEventFilter
方法名 or 属性名:eventTypes||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: Watcher||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: Watcher
方法名 or 属性名:name||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: Watcher
方法名 or 属性名:triggerCondition||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: Watcher
方法名 or 属性名:appEventFilters||@ohos.hiAppEvent.d.ts| +|删除|模块名: ohos.hiAppEvent
类名: Watcher
方法名 or 属性名:onTrigger||@ohos.hiAppEvent.d.ts| +|删除|模块名:ohos.hiAppEvent
类名:hiAppEvent
方法名 or 属性名:addWatcher||@ohos.hiAppEvent.d.ts| +|删除|模块名:ohos.hiAppEvent
类名:hiAppEvent
方法名 or 属性名:removeWatcher||@ohos.hiAppEvent.d.ts| +|删除|模块名:ohos.hiAppEvent
类名:hiAppEvent
方法名 or 属性名:clearData||@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:bytrace
废弃版本:|类名:bytrace
废弃版本:8
代替接口:ohos.hiTraceMeter |@ohos.bytrace.d.ts| +|废弃版本有变化|方法名 or 属性名:startTrace
废弃版本:|方法名 or 属性名:startTrace
废弃版本:8
代替接口:ohos.hiTraceMeter.startTrace |@ohos.bytrace.d.ts| +|废弃版本有变化|方法名 or 属性名:finishTrace
废弃版本:|方法名 or 属性名:finishTrace
废弃版本:8
代替接口:ohos.hiTraceMeter.finishTrace |@ohos.bytrace.d.ts| +|废弃版本有变化|方法名 or 属性名:traceByValue
废弃版本:|方法名 or 属性名:traceByValue
废弃版本:8
代替接口:ohos.hiTraceMeter.traceByValue |@ohos.bytrace.d.ts| +|废弃版本有变化|方法名 or 属性名:querySelfFaultLog
废弃版本:|方法名 or 属性名:querySelfFaultLog
废弃版本:9
代替接口:ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts| +|废弃版本有变化|方法名 or 属性名:querySelfFaultLog
废弃版本:|方法名 or 属性名:querySelfFaultLog
废弃版本:9
代替接口:ohos.faultlogger/FaultLogger|@ohos.faultLogger.d.ts| +|废弃版本有变化|类名:hiAppEvent
废弃版本:|类名:hiAppEvent
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:EventType
废弃版本:|类名:EventType
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:FAULT
废弃版本:|方法名 or 属性名:FAULT
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:STATISTIC
废弃版本:|方法名 or 属性名:STATISTIC
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:SECURITY
废弃版本:|方法名 or 属性名:SECURITY
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:BEHAVIOR
废弃版本:|方法名 or 属性名:BEHAVIOR
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:Event
废弃版本:|类名:Event
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:USER_LOGIN
废弃版本:|方法名 or 属性名:USER_LOGIN
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:USER_LOGOUT
废弃版本:|方法名 or 属性名:USER_LOGOUT
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:DISTRIBUTED_SERVICE_START
废弃版本:|方法名 or 属性名:DISTRIBUTED_SERVICE_START
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:Param
废弃版本:|类名:Param
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:USER_ID
废弃版本:|方法名 or 属性名:USER_ID
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:DISTRIBUTED_SERVICE_NAME
废弃版本:|方法名 or 属性名:DISTRIBUTED_SERVICE_NAME
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:DISTRIBUTED_SERVICE_INSTANCE_ID
废弃版本:|方法名 or 属性名:DISTRIBUTED_SERVICE_INSTANCE_ID
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:configure
废弃版本:|方法名 or 属性名:configure
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|类名:ConfigOption
废弃版本:|类名:ConfigOption
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:disable
废弃版本:|方法名 or 属性名:disable
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:maxStorage
废弃版本:|方法名 or 属性名:maxStorage
废弃版本:9
代替接口:ohos.hiviewdfx.hiAppEvent |@ohos.hiAppEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:addRule
废弃版本:|方法名 or 属性名:addRule
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|方法名 or 属性名:removeRule
废弃版本:|方法名 or 属性名:removeRule
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|方法名 or 属性名:contains
废弃版本:|方法名 or 属性名:contains
废弃版本:9
代替接口:ohos.hichecker/hichecker|@ohos.hichecker.d.ts| +|废弃版本有变化|方法名 or 属性名:startProfiling
废弃版本:|方法名 or 属性名:startProfiling
废弃版本:9
代替接口:ohos.hidebug/hidebug.startJsCpuProfiling |@ohos.hidebug.d.ts| +|废弃版本有变化|方法名 or 属性名:stopProfiling
废弃版本:|方法名 or 属性名:stopProfiling
废弃版本:9
代替接口:ohos.hidebug/hidebug.stopJsCpuProfiling |@ohos.hidebug.d.ts| +|废弃版本有变化|方法名 or 属性名:dumpHeapData
废弃版本:|方法名 or 属性名:dumpHeapData
废弃版本:9
代替接口:ohos.hidebug/hidebug.dumpJsHeapData |@ohos.hidebug.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-data.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-data.md new file mode 100644 index 0000000000000000000000000000000000000000..b8e57345a9cd90cb05cd7216438589c61bde15c8 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-data.md @@ -0,0 +1,596 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.data.distributedDataObject
类名:distributedDataObject
方法名 or 属性名:create|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:setSessionId|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:setSessionId|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:setSessionId|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:on_change|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:off_change|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:on_status|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:off_status|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:save|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:save|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:revokeSave|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedDataObject
类名: DistributedObjectV9
方法名 or 属性名:revokeSave|@ohos.data.distributedDataObject.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: distributedKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManagerConfig|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManagerConfig
方法名 or 属性名: bundleName|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManagerConfig
方法名 or 属性名: context|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_KEY_LENGTH|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_VALUE_LENGTH|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_KEY_LENGTH_DEVICE|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_STORE_ID_LENGTH|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_QUERY_LENGTH|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Constants
方法名 or 属性名: MAX_BATCH_SIZE|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: STRING|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: INTEGER|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: FLOAT|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: BYTE_ARRAY|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: BOOLEAN|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ValueType
方法名 or 属性名: DOUBLE|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Value|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Value
方法名 or 属性名: type|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Value
方法名 or 属性名: value|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Entry|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Entry
方法名 or 属性名: key|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Entry
方法名 or 属性名: value|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ChangeNotification|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法名 or 属性名: insertEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法名 or 属性名: updateEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法名 or 属性名: deleteEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: ChangeNotification
方法名 or 属性名: deviceId|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SyncMode|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SyncMode
方法名 or 属性名: PULL_ONLY|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SyncMode
方法名 or 属性名: PUSH_ONLY|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SyncMode
方法名 or 属性名: PUSH_PULL|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SubscribeType|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法名 or 属性名: SUBSCRIBE_TYPE_LOCAL|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法名 or 属性名: SUBSCRIBE_TYPE_REMOTE|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SubscribeType
方法名 or 属性名: SUBSCRIBE_TYPE_ALL|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreType|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreType
方法名 or 属性名: DEVICE_COLLABORATION|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreType
方法名 or 属性名: SINGLE_VERSION|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SecurityLevel|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法名 or 属性名: S1|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法名 or 属性名: S2|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法名 or 属性名: S3|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SecurityLevel
方法名 or 属性名: S4|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: createIfMissing|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: encrypt|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: backup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: autoSync|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: kvStoreType|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: securityLevel|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Options
方法名 or 属性名: schema|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Schema|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Schema
方法名 or 属性名: root|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Schema
方法名 or 属性名: indexes|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Schema
方法名 or 属性名: mode|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Schema
方法名 or 属性名: skip|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode
方法名 or 属性名: ructor(name|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode
方法名 or 属性名: appendChild|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode
方法名 or 属性名: default|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode
方法名 or 属性名: nullable|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: FieldNode
方法名 or 属性名: type|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: getCount|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: getPosition|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: moveToFirst|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: moveToLast|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: moveToNext|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: moveToPrevious|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: move|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: moveToPosition|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: isFirst|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: isLast|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: isBeforeFirst|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: isAfterLast|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVStoreResultSet
方法名 or 属性名: getEntry|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: reset|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: equalTo|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: notEqualTo|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: greaterThan|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: lessThan|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: greaterThanOrEqualTo|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: lessThanOrEqualTo|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: isNull|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: inNumber|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: inString|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: notInNumber|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: notInString|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: like|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: unlike|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: and|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: or|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: orderByAsc|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: orderByDesc|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: limit|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: isNotNull|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: beginGroup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: endGroup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: prefixKey|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: setSuggestIndex|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: deviceId|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: Query
方法名 or 属性名: getSqlLike|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: put|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: put|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: putBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: putBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: putBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: putBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: delete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: delete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: delete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: delete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: deleteBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: deleteBatch|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: removeDeviceData|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: removeDeviceData|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: closeResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: closeResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: backup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: backup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: restore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: restore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: deleteBackup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: deleteBackup|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: startTransaction|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: startTransaction|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: commit|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: commit|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: rollback|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: rollback|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: enableSync|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: enableSync|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: setSyncRange|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: setSyncRange|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: setSyncParam|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: setSyncParam|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: sync|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: sync|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: on_dataChange|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: on_syncComplete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: off_dataChange|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: off_syncComplete|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getSecurityLevel|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: SingleKVStore
方法名 or 属性名: getSecurityLevel|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: get|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getEntries|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSet|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: DeviceKVStore
方法名 or 属性名: getResultSize|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: distributedKVStore
方法名 or 属性名: createKVManager|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: distributedKVStore
方法名 or 属性名: createKVManager|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: getKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: getKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: closeKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: closeKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: deleteKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: deleteKVStore|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: getAllKVStoreId|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: getAllKVStoreId|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: on_distributedDataServiceDie|@ohos.data.distributedKVStore.d.ts| +|新增||模块名: ohos.data.distributedKVStore
类名: KVManager
方法名 or 属性名: off_distributedDataServiceDie|@ohos.data.distributedKVStore.d.ts| +|新增||模块名:ohos.data.rdb
类名:rdb
方法名 or 属性名:getRdbStoreV9|@ohos.data.rdb.d.ts| +|新增||模块名:ohos.data.rdb
类名:rdb
方法名 or 属性名:getRdbStoreV9|@ohos.data.rdb.d.ts| +|新增||模块名:ohos.data.rdb
类名:rdb
方法名 or 属性名:deleteRdbStoreV9|@ohos.data.rdb.d.ts| +|新增||模块名:ohos.data.rdb
类名:rdb
方法名 or 属性名:deleteRdbStoreV9|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: SecurityLevel|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: SecurityLevel
方法名 or 属性名:S1|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: SecurityLevel
方法名 or 属性名:S2|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: SecurityLevel
方法名 or 属性名:S3|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: SecurityLevel
方法名 or 属性名:S4|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:insert|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:insert|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:batchInsert|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:batchInsert|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:update|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:update|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:update|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:update|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:delete|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:delete|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:delete|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:delete|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:query|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:query|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:query|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:query|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:remoteQuery|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:remoteQuery|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:querySql|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:querySql|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:executeSql|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:executeSql|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:beginTransaction|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:commit|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:rollBack|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:backup|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:backup|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:restore|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:restore|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:setDistributedTables|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:setDistributedTables|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:obtainDistributedTableName|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:obtainDistributedTableName|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:sync|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:sync|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:on_dataChange|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbStoreV9
方法名 or 属性名:off_dataChange|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: StoreConfigV9|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: StoreConfigV9
方法名 or 属性名:name|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: StoreConfigV9
方法名 or 属性名:securityLevel|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: StoreConfigV9
方法名 or 属性名:encrypt|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:ructor(name|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:inDevices|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:inAllDevices|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:equalTo|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:notEqualTo|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:beginWrap|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:endWrap|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:or|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:and|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:contains|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:beginsWith|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:endsWith|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:isNull|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:isNotNull|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:like|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:glob|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:between|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:notBetween|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:greaterThan|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:lessThan|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:greaterThanOrEqualTo|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:lessThanOrEqualTo|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:orderByAsc|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:orderByDesc|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:distinct|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:limitAs|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:offsetAs|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:groupBy|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:indexedBy|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:in|@ohos.data.rdb.d.ts| +|新增||模块名: ohos.data.rdb
类名: RdbPredicatesV9
方法名 or 属性名:notIn|@ohos.data.rdb.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:columnNames|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:columnCount|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:rowCount|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:rowIndex|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isAtFirstRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isAtLastRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isEnded|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isStarted|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isClosed|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getColumnIndex|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getColumnName|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goTo|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goToRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goToFirstRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goToLastRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goToNextRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:goToPreviousRow|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getBlob|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getString|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getLong|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:getDouble|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:isColumnNull|resultSet.d.ts| +|新增||模块名: resultSet
类名: ResultSetV9
方法名 or 属性名:close|resultSet.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVManagerConfig
方法名 or 属性名:context||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:backup||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:backup||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:restore||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:restore||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:deleteBackup||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedData
类名:KVStore
方法名 or 属性名:deleteBackup||@ohos.data.distributedData.d.ts| +|删除|模块名:ohos.data.distributedDataObject
类名:DistributedObject
方法名 or 属性名:save||@ohos.data.distributedDataObject.d.ts| +|删除|模块名:ohos.data.distributedDataObject
类名:DistributedObject
方法名 or 属性名:save||@ohos.data.distributedDataObject.d.ts| +|删除|模块名:ohos.data.distributedDataObject
类名:DistributedObject
方法名 or 属性名:revokeSave||@ohos.data.distributedDataObject.d.ts| +|删除|模块名:ohos.data.distributedDataObject
类名:DistributedObject
方法名 or 属性名:revokeSave||@ohos.data.distributedDataObject.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:remoteQuery||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:remoteQuery||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:backup||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:backup||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:restore||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:RdbStore
方法名 or 属性名:restore||@ohos.data.rdb.d.ts| +|删除|模块名:ohos.data.rdb
类名:StoreConfig
方法名 or 属性名:encrypt||@ohos.data.rdb.d.ts| +|model有变化|类名:dataShare
model:|类名:dataShare
model:@StageModelOnly|@ohos.data.dataShare.d.ts| +|废弃版本有变化|类名:distributedData
废弃版本:|类名:distributedData
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManagerConfig
废弃版本:|类名:KVManagerConfig
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManagerConfig |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:userInfo
废弃版本:|方法名 or 属性名:userInfo
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManagerConfig |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManagerConfig|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserInfo
废弃版本:|类名:UserInfo
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:userId
废弃版本:|方法名 or 属性名:userId
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:userType
废弃版本:|方法名 or 属性名:userType
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:UserType
废弃版本:|类名:UserType
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:SAME_USER_ID
废弃版本:|方法名 or 属性名:SAME_USER_ID
废弃版本:9
代替接口:ohos.data.distributedKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Constants
废弃版本:|类名:Constants
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_KEY_LENGTH
废弃版本:|方法名 or 属性名:MAX_KEY_LENGTH
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_VALUE_LENGTH
废弃版本:|方法名 or 属性名:MAX_VALUE_LENGTH
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_KEY_LENGTH_DEVICE
废弃版本:|方法名 or 属性名:MAX_KEY_LENGTH_DEVICE
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_STORE_ID_LENGTH
废弃版本:|方法名 or 属性名:MAX_STORE_ID_LENGTH
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_QUERY_LENGTH
废弃版本:|方法名 or 属性名:MAX_QUERY_LENGTH
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MAX_BATCH_SIZE
废弃版本:|方法名 or 属性名:MAX_BATCH_SIZE
废弃版本:9
代替接口:ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ValueType
废弃版本:|类名:ValueType
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:STRING
废弃版本:|方法名 or 属性名:STRING
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:INTEGER
废弃版本:|方法名 or 属性名:INTEGER
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:FLOAT
废弃版本:|方法名 or 属性名:FLOAT
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:BYTE_ARRAY
废弃版本:|方法名 or 属性名:BYTE_ARRAY
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:BOOLEAN
废弃版本:|方法名 or 属性名:BOOLEAN
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:DOUBLE
废弃版本:|方法名 or 属性名:DOUBLE
废弃版本:9
代替接口:ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Value
废弃版本:|类名:Value
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:|方法名 or 属性名:value
废弃版本:9
代替接口:ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Entry
废弃版本:|类名:Entry
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:key
废弃版本:|方法名 or 属性名:key
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:|方法名 or 属性名:value
废弃版本:9
代替接口:ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:ChangeNotification
废弃版本:|类名:ChangeNotification
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:insertEntries
废弃版本:|方法名 or 属性名:insertEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:updateEntries
废弃版本:|方法名 or 属性名:updateEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteEntries
废弃版本:|方法名 or 属性名:deleteEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceId
废弃版本:|方法名 or 属性名:deviceId
废弃版本:9
代替接口:ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SyncMode
废弃版本:|类名:SyncMode
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:PULL_ONLY
废弃版本:|方法名 or 属性名:PULL_ONLY
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:PUSH_ONLY
废弃版本:|方法名 or 属性名:PUSH_ONLY
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:PUSH_PULL
废弃版本:|方法名 or 属性名:PUSH_PULL
废弃版本:9
代替接口:ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SubscribeType
废弃版本:|类名:SubscribeType
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:SUBSCRIBE_TYPE_LOCAL
废弃版本:|方法名 or 属性名:SUBSCRIBE_TYPE_LOCAL
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:SUBSCRIBE_TYPE_REMOTE
废弃版本:|方法名 or 属性名:SUBSCRIBE_TYPE_REMOTE
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:SUBSCRIBE_TYPE_ALL
废弃版本:|方法名 or 属性名:SUBSCRIBE_TYPE_ALL
废弃版本:9
代替接口:ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStoreType
废弃版本:|类名:KVStoreType
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:DEVICE_COLLABORATION
废弃版本:|方法名 or 属性名:DEVICE_COLLABORATION
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:SINGLE_VERSION
废弃版本:|方法名 or 属性名:SINGLE_VERSION
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:MULTI_VERSION
废弃版本:|方法名 or 属性名:MULTI_VERSION
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreType |@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SecurityLevel
废弃版本:|类名:SecurityLevel
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:NO_LEVEL
废弃版本:|方法名 or 属性名:NO_LEVEL
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:S0
废弃版本:|方法名 or 属性名:S0
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:S1
废弃版本:|方法名 or 属性名:S1
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:S2
废弃版本:|方法名 or 属性名:S2
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:S3
废弃版本:|方法名 or 属性名:S3
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:S4
废弃版本:|方法名 or 属性名:S4
废弃版本:9
代替接口:ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Options
废弃版本:|类名:Options
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:createIfMissing
废弃版本:|方法名 or 属性名:createIfMissing
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:encrypt
废弃版本:|方法名 or 属性名:encrypt
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:backup
废弃版本:|方法名 or 属性名:backup
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:autoSync
废弃版本:|方法名 or 属性名:autoSync
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:kvStoreType
废弃版本:|方法名 or 属性名:kvStoreType
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:securityLevel
废弃版本:|方法名 or 属性名:securityLevel
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:schema
废弃版本:|方法名 or 属性名:schema
废弃版本:9
代替接口:ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Schema
废弃版本:|类名:Schema
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:root
废弃版本:|方法名 or 属性名:root
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:indexes
废弃版本:|方法名 or 属性名:indexes
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:mode
废弃版本:|方法名 or 属性名:mode
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:skip
废弃版本:|方法名 or 属性名:skip
废弃版本:9
代替接口:ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:FieldNode
废弃版本:|类名:FieldNode
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(name
废弃版本:|方法名 or 属性名:ructor(name
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:appendChild
废弃版本:|方法名 or 属性名:appendChild
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:default
废弃版本:|方法名 or 属性名:default
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:nullable
废弃版本:|方法名 or 属性名:nullable
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KvStoreResultSet
废弃版本:|类名:KvStoreResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getCount
废弃版本:|方法名 or 属性名:getCount
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getPosition
废弃版本:|方法名 or 属性名:getPosition
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:moveToFirst
废弃版本:|方法名 or 属性名:moveToFirst
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:moveToLast
废弃版本:|方法名 or 属性名:moveToLast
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:moveToNext
废弃版本:|方法名 or 属性名:moveToNext
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:moveToPrevious
废弃版本:|方法名 or 属性名:moveToPrevious
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:move
废弃版本:|方法名 or 属性名:move
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:moveToPosition
废弃版本:|方法名 or 属性名:moveToPosition
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isFirst
废弃版本:|方法名 or 属性名:isFirst
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isLast
废弃版本:|方法名 or 属性名:isLast
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isBeforeFirst
废弃版本:|方法名 or 属性名:isBeforeFirst
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isAfterLast
废弃版本:|方法名 or 属性名:isAfterLast
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntry
废弃版本:|方法名 or 属性名:getEntry
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:Query
废弃版本:|类名:Query
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:reset
废弃版本:|方法名 or 属性名:reset
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isNull
废弃版本:|方法名 or 属性名:isNull
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:inNumber
废弃版本:|方法名 or 属性名:inNumber
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:inString
废弃版本:|方法名 or 属性名:inString
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:notInNumber
废弃版本:|方法名 or 属性名:notInNumber
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:notInString
废弃版本:|方法名 or 属性名:notInString
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:like
废弃版本:|方法名 or 属性名:like
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:unlike
废弃版本:|方法名 or 属性名:unlike
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:and
废弃版本:|方法名 or 属性名:and
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:or
废弃版本:|方法名 or 属性名:or
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:orderByAsc
废弃版本:|方法名 or 属性名:orderByAsc
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:orderByDesc
废弃版本:|方法名 or 属性名:orderByDesc
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:limit
废弃版本:|方法名 or 属性名:limit
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotNull
废弃版本:|方法名 or 属性名:isNotNull
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:beginGroup
废弃版本:|方法名 or 属性名:beginGroup
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:endGroup
废弃版本:|方法名 or 属性名:endGroup
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:prefixKey
废弃版本:|方法名 or 属性名:prefixKey
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:setSuggestIndex
废弃版本:|方法名 or 属性名:setSuggestIndex
废弃版本:9
代替接口:ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVStore
废弃版本:|类名:KVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:put
废弃版本:|方法名 or 属性名:put
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:delete
废弃版本:|方法名 or 属性名:delete
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_dataChange
废弃版本:|方法名 or 属性名:on_dataChange
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_syncComplete
废弃版本:|方法名 or 属性名:on_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:off_syncComplete
废弃版本:|方法名 or 属性名:off_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:putBatch
废弃版本:|方法名 or 属性名:putBatch
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteBatch
废弃版本:|方法名 or 属性名:deleteBatch
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:startTransaction
废弃版本:|方法名 or 属性名:startTransaction
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:commit
废弃版本:|方法名 or 属性名:commit
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:rollback
废弃版本:|方法名 or 属性名:rollback
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:enableSync
废弃版本:|方法名 or 属性名:enableSync
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:setSyncRange
废弃版本:|方法名 or 属性名:setSyncRange
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:SingleKVStore
废弃版本:|类名:SingleKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:get
废弃版本:|方法名 or 属性名:get
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntries
废弃版本:|方法名 or 属性名:getEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntries
废弃版本:|方法名 or 属性名:getEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSet
废弃版本:|方法名 or 属性名:getResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSet
废弃版本:|方法名 or 属性名:getResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:closeResultSet
废弃版本:|方法名 or 属性名:closeResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSize
废弃版本:|方法名 or 属性名:getResultSize
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:removeDeviceData
废弃版本:|方法名 or 属性名:removeDeviceData
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_dataChange
废弃版本:|方法名 or 属性名:on_dataChange
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_syncComplete
废弃版本:|方法名 or 属性名:on_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:off_syncComplete
废弃版本:|方法名 or 属性名:off_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:setSyncParam
废弃版本:|方法名 or 属性名:setSyncParam
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getSecurityLevel
废弃版本:|方法名 or 属性名:getSecurityLevel
废弃版本:9
代替接口:ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:DeviceKVStore
废弃版本:|类名:DeviceKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntries
废弃版本:|方法名 or 属性名:getEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntries
废弃版本:|方法名 or 属性名:getEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getEntries
废弃版本:|方法名 or 属性名:getEntries
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSet
废弃版本:|方法名 or 属性名:getResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSet
废弃版本:|方法名 or 属性名:getResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSet
废弃版本:|方法名 or 属性名:getResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:closeResultSet
废弃版本:|方法名 or 属性名:closeResultSet
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSize
废弃版本:|方法名 or 属性名:getResultSize
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getResultSize
废弃版本:|方法名 or 属性名:getResultSize
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:removeDeviceData
废弃版本:|方法名 or 属性名:removeDeviceData
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:sync
废弃版本:|方法名 or 属性名:sync
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_dataChange
废弃版本:|方法名 or 属性名:on_dataChange
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_syncComplete
废弃版本:|方法名 or 属性名:on_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:off_syncComplete
废弃版本:|方法名 or 属性名:off_syncComplete
废弃版本:9
代替接口:ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:createKVManager
废弃版本:|方法名 or 属性名:createKVManager
废弃版本:9
代替接口:ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts| +|废弃版本有变化|类名:KVManager
废弃版本:|类名:KVManager
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager |@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getKVStore
废弃版本:|方法名 or 属性名:getKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:closeKVStore
废弃版本:|方法名 or 属性名:closeKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteKVStore
废弃版本:|方法名 or 属性名:deleteKVStore
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllKVStoreId
废弃版本:|方法名 or 属性名:getAllKVStoreId
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:on_distributedDataServiceDie
废弃版本:|方法名 or 属性名:on_distributedDataServiceDie
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:off_distributedDataServiceDie
废弃版本:|方法名 or 属性名:off_distributedDataServiceDie
废弃版本:9
代替接口:ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts| +|废弃版本有变化|方法名 or 属性名:createDistributedObject
废弃版本:|方法名 or 属性名:createDistributedObject
废弃版本:9
代替接口:ohos.distributedDataObject.create |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|类名:DistributedObject
废弃版本:|类名:DistributedObject
废弃版本:9
代替接口:ohos.distributedDataObject.DistributedObjectV9 |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|方法名 or 属性名:setSessionId
废弃版本:|方法名 or 属性名:setSessionId
废弃版本:9
代替接口:ohos.distributedDataObject.DistributedObjectV9.setSessionId |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|方法名 or 属性名:on_change
废弃版本:|方法名 or 属性名:on_change
废弃版本:9
代替接口:ohos.distributedDataObject.DistributedObjectV9.on |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|方法名 or 属性名:off_change
废弃版本:|方法名 or 属性名:off_change
废弃版本:9
代替接口:ohos.distributedDataObject.DistributedObjectV9.off |@ohos.data.distributedDataObject.d.ts| +|废弃版本有变化|方法名 or 属性名:getPreferences
废弃版本:undefined|方法名 or 属性名:getPreferences
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:deletePreferences
废弃版本:undefined|方法名 or 属性名:deletePreferences
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:removePreferencesFromCache
废弃版本:undefined|方法名 or 属性名:removePreferencesFromCache
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:get
废弃版本:undefined|方法名 or 属性名:get
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:getAll
废弃版本:undefined|方法名 or 属性名:getAll
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:has
废弃版本:undefined|方法名 or 属性名:has
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:put
废弃版本:undefined|方法名 or 属性名:put
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:delete
废弃版本:undefined|方法名 or 属性名:delete
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:clear
废弃版本:undefined|方法名 or 属性名:clear
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:flush
废弃版本:undefined|方法名 or 属性名:flush
废弃版本:|@ohos.data.preferences.d.ts| +|废弃版本有变化|方法名 or 属性名:getRdbStore
废弃版本:|方法名 or 属性名:getRdbStore
废弃版本:9
代替接口:ohos.data.rdb.getRdbStoreV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:getRdbStore
废弃版本:undefined|方法名 or 属性名:getRdbStore
废弃版本:9
代替接口:ohos.data.rdb.getRdbStoreV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteRdbStore
废弃版本:|方法名 or 属性名:deleteRdbStore
废弃版本:9
代替接口:ohos.data.rdb.deleteRdbStoreV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteRdbStore
废弃版本:undefined|方法名 or 属性名:deleteRdbStore
废弃版本:9
代替接口:ohos.data.rdb.deleteRdbStoreV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbStore
废弃版本:|类名:RdbStore
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:insert
废弃版本:|方法名 or 属性名:insert
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.insert |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:insert
废弃版本:undefined|方法名 or 属性名:insert
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.insert |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:batchInsert
废弃版本:|方法名 or 属性名:batchInsert
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.batchInsert |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:batchInsert
废弃版本:undefined|方法名 or 属性名:batchInsert
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.batchInsert |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:update
废弃版本:|方法名 or 属性名:update
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.update |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:update
废弃版本:undefined|方法名 or 属性名:update
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.update |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:delete
废弃版本:|方法名 or 属性名:delete
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.delete |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:delete
废弃版本:undefined|方法名 or 属性名:delete
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.delete |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:query
废弃版本:|方法名 or 属性名:query
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.query |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:querySql
废弃版本:|方法名 or 属性名:querySql
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.querySql |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:executeSql
废弃版本:|方法名 or 属性名:executeSql
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.executeSql |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:setDistributedTables
废弃版本:|方法名 or 属性名:setDistributedTables
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.setDistributedTables |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:setDistributedTables
废弃版本:undefined|方法名 or 属性名:setDistributedTables
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.setDistributedTables |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:obtainDistributedTableName
废弃版本:|方法名 or 属性名:obtainDistributedTableName
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.obtainDistributedTableName |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:obtainDistributedTableName
废弃版本:undefined|方法名 or 属性名:obtainDistributedTableName
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.obtainDistributedTableName |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:on_dataChange
废弃版本:|方法名 or 属性名:on_dataChange
废弃版本:9
代替接口:ohos.data.rdb.RdbStoreV9.on |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:StoreConfig
废弃版本:|类名:StoreConfig
废弃版本:9
代替接口:ohos.data.rdb.StoreConfigV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.data.rdb.StoreConfigV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:RdbPredicates
废弃版本:|类名:RdbPredicates
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9 |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:ructor(name
废弃版本:|方法名 or 属性名:ructor(name
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.constructor |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:inDevices
废弃版本:|方法名 or 属性名:inDevices
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.inDevices |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:inAllDevices
废弃版本:|方法名 or 属性名:inAllDevices
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.inAllDevices |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:equalTo
废弃版本:|方法名 or 属性名:equalTo
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.equalTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:notEqualTo
废弃版本:|方法名 or 属性名:notEqualTo
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.notEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:beginWrap
废弃版本:|方法名 or 属性名:beginWrap
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.beginWrap |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:endWrap
废弃版本:|方法名 or 属性名:endWrap
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.endWrap |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:or
废弃版本:|方法名 or 属性名:or
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.or |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:and
废弃版本:|方法名 or 属性名:and
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.and |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:contains
废弃版本:|方法名 or 属性名:contains
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.contains |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:beginsWith
废弃版本:|方法名 or 属性名:beginsWith
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.beginsWith |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:endsWith
废弃版本:|方法名 or 属性名:endsWith
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.endsWith |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:isNull
废弃版本:|方法名 or 属性名:isNull
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.isNull |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotNull
废弃版本:|方法名 or 属性名:isNotNull
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.isNotNull |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:like
废弃版本:|方法名 or 属性名:like
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.like |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:glob
废弃版本:|方法名 or 属性名:glob
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.glob |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:between
废弃版本:|方法名 or 属性名:between
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.between |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:notBetween
废弃版本:|方法名 or 属性名:notBetween
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.notBetween |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:greaterThan
废弃版本:|方法名 or 属性名:greaterThan
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.greaterThan |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:lessThan
废弃版本:|方法名 or 属性名:lessThan
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.lessThan |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:greaterThanOrEqualTo
废弃版本:|方法名 or 属性名:greaterThanOrEqualTo
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.greaterThanOrEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:lessThanOrEqualTo
废弃版本:|方法名 or 属性名:lessThanOrEqualTo
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.lessThanOrEqualTo |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:orderByAsc
废弃版本:|方法名 or 属性名:orderByAsc
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.orderByAsc |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:orderByDesc
废弃版本:|方法名 or 属性名:orderByDesc
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.orderByDesc |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:distinct
废弃版本:|方法名 or 属性名:distinct
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.distinct |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:limitAs
废弃版本:|方法名 or 属性名:limitAs
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.limitAs |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:offsetAs
废弃版本:|方法名 or 属性名:offsetAs
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.offsetAs |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:groupBy
废弃版本:|方法名 or 属性名:groupBy
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.groupBy |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:indexedBy
废弃版本:|方法名 or 属性名:indexedBy
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.indexedBy |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:in
废弃版本:|方法名 or 属性名:in
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.in |@ohos.data.rdb.d.ts| +|废弃版本有变化|方法名 or 属性名:notIn
废弃版本:|方法名 or 属性名:notIn
废弃版本:9
代替接口:ohos.data.rdb.RdbPredicatesV9.notIn |@ohos.data.rdb.d.ts| +|废弃版本有变化|类名:ResultSet
废弃版本:|类名:ResultSet
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9 |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:columnNames
废弃版本:|方法名 or 属性名:columnNames
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.columnNames |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:columnCount
废弃版本:|方法名 or 属性名:columnCount
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.columnCount |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:rowCount
废弃版本:|方法名 or 属性名:rowCount
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.rowCount |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:rowIndex
废弃版本:|方法名 or 属性名:rowIndex
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.rowIndex |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isAtFirstRow
废弃版本:|方法名 or 属性名:isAtFirstRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isAtFirstRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isAtLastRow
废弃版本:|方法名 or 属性名:isAtLastRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isAtLastRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isEnded
废弃版本:|方法名 or 属性名:isEnded
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isEnded |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isStarted
废弃版本:|方法名 or 属性名:isStarted
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isStarted |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isClosed
废弃版本:|方法名 or 属性名:isClosed
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isClosed |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getColumnIndex
废弃版本:|方法名 or 属性名:getColumnIndex
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getColumnIndex |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getColumnName
废弃版本:|方法名 or 属性名:getColumnName
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getColumnName |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goTo
废弃版本:|方法名 or 属性名:goTo
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goTo |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goToRow
废弃版本:|方法名 or 属性名:goToRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goToRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goToFirstRow
废弃版本:|方法名 or 属性名:goToFirstRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goToFirstRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goToLastRow
废弃版本:|方法名 or 属性名:goToLastRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goToLastRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goToNextRow
废弃版本:|方法名 or 属性名:goToNextRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goToNextRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:goToPreviousRow
废弃版本:|方法名 or 属性名:goToPreviousRow
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.goToPreviousRow |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getBlob
废弃版本:|方法名 or 属性名:getBlob
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getBlob |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getString
废弃版本:|方法名 or 属性名:getString
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getString |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getLong
废弃版本:|方法名 or 属性名:getLong
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getLong |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:getDouble
废弃版本:|方法名 or 属性名:getDouble
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.getDouble |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:isColumnNull
废弃版本:|方法名 or 属性名:isColumnNull
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.isColumnNull |resultSet.d.ts| +|废弃版本有变化|方法名 or 属性名:close
废弃版本:|方法名 or 属性名:close
废弃版本:9
代替接口:ohos.data.rdb.ResultSetV9.close |resultSet.d.ts| +|起始版本有变化|类名:dataShare
起始版本:|类名:dataShare
起始版本:9|@ohos.data.dataShare.d.ts| +|删除(权限)|方法名 or 属性名:on_dataChange
权限:ohos.permission.DISTRIBUTED_DATASYNC|方法名 or 属性名:on_dataChange
权限:N/A|@ohos.data.rdb.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-hardware.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-hardware.md new file mode 100644 index 0000000000000000000000000000000000000000..a51c9cf666c95920991c99d183a8d51046b0ecf2 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-distributed-hardware.md @@ -0,0 +1,5 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.distributedHardware.deviceManager
类名: DeviceManager
方法名 or 属性名: setUserOperation|@ohos.distributedHardware.deviceManager.d.ts| +|新增||模块名: ohos.distributedHardware.deviceManager
类名: DeviceManager
方法名 or 属性名: on_uiStateChange|@ohos.distributedHardware.deviceManager.d.ts| +|新增||模块名: ohos.distributedHardware.deviceManager
类名: DeviceManager
方法名 or 属性名: off_uiStateChange|@ohos.distributedHardware.deviceManager.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-event-and-notification.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-event-and-notification.md new file mode 100644 index 0000000000000000000000000000000000000000..2210bdc422323d2ee21d71ae9de1e44fb6f8afd9 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-event-and-notification.md @@ -0,0 +1,711 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.commonEventManager
类名: commonEventManager|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: publish|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: publish|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: publishAsUser|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: publishAsUser|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: createSubscriber|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: createSubscriber|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: subscribe|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: commonEventManager
方法名 or 属性名: unsubscribe|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BOOT_COMPLETED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_LOCKED_BOOT_COMPLETED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SHUTDOWN|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BATTERY_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BATTERY_LOW|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BATTERY_OKAY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_POWER_CONNECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_POWER_DISCONNECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SCREEN_OFF|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SCREEN_ON|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_THERMAL_LEVEL_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_PRESENT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_TIME_TICK|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_TIME_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_TIMEZONE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_CLOSE_SYSTEM_DIALOGS|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_ADDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_REPLACED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_MY_PACKAGE_REPLACED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BUNDLE_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_FULLY_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_RESTARTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_DATA_CLEARED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_CACHE_CLEARED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGES_SUSPENDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGES_UNSUSPENDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_MY_PACKAGE_SUSPENDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_MY_PACKAGE_UNSUSPENDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_UID_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_FIRST_LAUNCH|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_PACKAGE_VERIFIED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_CONFIGURATION_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_LOCALE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_MANAGE_PACKAGE_STORAGE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DRIVE_MODE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_HOME_MODE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_OFFICE_MODE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_STARTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_BACKGROUND|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_FOREGROUND|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_SWITCHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_STARTING|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_UNLOCKED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_STOPPING|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_STOPPED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGIN|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOUT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISTRIBUTED_ACCOUNT_TOKEN_INVALID|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISTRIBUTED_ACCOUNT_LOGOFF|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_POWER_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_SCAN_FINISHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_RSSI_VALUE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_CONN_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_HOTSPOT_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_AP_STA_JOIN|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_AP_STA_LEAVE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_CONN_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISCHARGING|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_CHARGING|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_POWER_SAVE_MODE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_ADDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USER_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_ABILITY_ADDED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_ABILITY_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_ABILITY_UPDATED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_LOCATION_MODE_STATE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_SLEEP|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_PAUSE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_STANDBY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_LASTMODE_SAVE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_VOLTAGE_ABNORMAL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_HIGH_TEMPERATURE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_EXTREME_TEMPERATURE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_VOLTAGE_RECOVERY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_TEMPERATURE_RECOVERY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_IVI_ACTIVE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_STATE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_PORT_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_DEVICE_ATTACHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_DEVICE_DETACHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_ACCESSORY_ATTACHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_USB_ACCESSORY_DETACHED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_UNMOUNTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_MOUNTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_BAD_REMOVAL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_UNMOUNTABLE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_DISK_EJECT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VOLUME_REMOVED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VOLUME_UNMOUNTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VOLUME_MOUNTED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VOLUME_BAD_REMOVAL|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VOLUME_EJECT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_ACCOUNT_DELETED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_FOUNDATION_READY|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_AIRPLANE_MODE_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SPLIT_SCREEN|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SLOT_CHANGE|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_SPN_INFO_CHANGED|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.commonEventManager
类名: Support
方法名 or 属性名: COMMON_EVENT_QUICK_FIX_APPLY_RESULT|@ohos.commonEventManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publish|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publish|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publish|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publish|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publishAsBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: publishAsBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancel|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancel|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancel|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelAsBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelAsBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelAll|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelAll|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: addSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeAllSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeAllSlots|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setNotificationEnable|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setNotificationEnable|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: displayBadge|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: displayBadge|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isBadgeDisplayed|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isBadgeDisplayed|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setSlotByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setSlotByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlotsByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlotsByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlotNumByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSlotNumByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getAllActiveNotifications|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getAllActiveNotifications|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getActiveNotificationCount|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getActiveNotificationCount|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getActiveNotifications|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getActiveNotifications|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelGroup|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: cancelGroup|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeGroupByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: removeGroupByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: supportDoNotDisturbMode|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: supportDoNotDisturbMode|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isSupportTemplate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isSupportTemplate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: requestEnableNotification|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: requestEnableNotification|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDistributedEnable|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDistributedEnable|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isDistributedEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isDistributedEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDistributedEnableByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setDistributedEnableByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isDistributedEnabledByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isDistributedEnabledByBundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDeviceRemindType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getDeviceRemindType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setNotificationEnableSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setNotificationEnableSlot|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationSlotEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: isNotificationSlotEnabled|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: setSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: notificationManager
方法名 or 属性名: getSyncNotificationEnabledWithoutApp|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType
方法名 or 属性名: UNKNOWN_TYPE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType
方法名 or 属性名: SOCIAL_COMMUNICATION|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType
方法名 or 属性名: SERVICE_INFORMATION|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType
方法名 or 属性名: CONTENT_INFORMATION|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotType
方法名 or 属性名: OTHER_TYPES|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType
方法名 or 属性名: NOTIFICATION_CONTENT_BASIC_TEXT|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType
方法名 or 属性名: NOTIFICATION_CONTENT_LONG_TEXT|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType
方法名 or 属性名: NOTIFICATION_CONTENT_PICTURE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType
方法名 or 属性名: NOTIFICATION_CONTENT_CONVERSATION|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: ContentType
方法名 or 属性名: NOTIFICATION_CONTENT_MULTILINE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel
方法名 or 属性名: LEVEL_NONE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel
方法名 or 属性名: LEVEL_MIN|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel
方法名 or 属性名: LEVEL_LOW|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel
方法名 or 属性名: LEVEL_DEFAULT|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SlotLevel
方法名 or 属性名: LEVEL_HIGH|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: BundleOption|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: BundleOption
方法名 or 属性名: bundle|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: BundleOption
方法名 or 属性名: uid|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbType
方法名 or 属性名: TYPE_NONE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbType
方法名 or 属性名: TYPE_ONCE|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbType
方法名 or 属性名: TYPE_DAILY|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbType
方法名 or 属性名: TYPE_CLEARLY|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbDate|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法名 or 属性名: type|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法名 or 属性名: begin|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DoNotDisturbDate
方法名 or 属性名: end|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DeviceRemindType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DeviceRemindType
方法名 or 属性名: IDLE_DONOT_REMIND|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DeviceRemindType
方法名 or 属性名: IDLE_REMIND|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DeviceRemindType
方法名 or 属性名: ACTIVE_DONOT_REMIND|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: DeviceRemindType
方法名 or 属性名: ACTIVE_REMIND|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SourceType|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SourceType
方法名 or 属性名: TYPE_NORMAL|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SourceType
方法名 or 属性名: TYPE_CONTINUOUS|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationManager
类名: SourceType
方法名 or 属性名: TYPE_TIMER|@ohos.notificationManager.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: BundleOption|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: BundleOption
方法名 or 属性名: bundle|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: BundleOption
方法名 or 属性名: uid|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: NotificationKey|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: NotificationKey
方法名 or 属性名: id|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: NotificationKey
方法名 or 属性名: label|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: RemoveReason|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: RemoveReason
方法名 or 属性名: CLICK_REASON_REMOVE|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: RemoveReason
方法名 or 属性名: CANCEL_REASON_REMOVE|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: subscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: subscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: subscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: unsubscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: unsubscribe|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: remove|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: remove|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: remove|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: remove|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: removeAll|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: removeAll|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: removeAll|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: removeAll|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.notificationSubscribe
类名: notificationSubscribe
方法名 or 属性名: removeAll|@ohos.notificationSubscribe.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: publishReminder|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: publishReminder|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: cancelReminder|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: cancelReminder|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: getValidReminders|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: getValidReminders|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: cancelAllReminders|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: cancelAllReminders|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: addNotificationSlot|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: addNotificationSlot|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: removeNotificationSlot|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: reminderAgentManager
方法名 or 属性名: removeNotificationSlot|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButtonType|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButtonType
方法名 or 属性名: ACTION_BUTTON_TYPE_CLOSE|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButtonType
方法名 or 属性名: ACTION_BUTTON_TYPE_SNOOZE|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderType|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderType
方法名 or 属性名: REMINDER_TYPE_TIMER|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderType
方法名 or 属性名: REMINDER_TYPE_CALENDAR|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderType
方法名 or 属性名: REMINDER_TYPE_ALARM|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButton|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButton
方法名 or 属性名: title|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ActionButton
方法名 or 属性名: type|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: WantAgent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: WantAgent
方法名 or 属性名: pkgName|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: WantAgent
方法名 or 属性名: abilityName|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent
方法名 or 属性名: pkgName|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: MaxScreenWantAgent
方法名 or 属性名: abilityName|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: reminderType|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: actionButton|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: wantAgent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: maxScreenWantAgent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: ringDuration|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: snoozeTimes|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: timeInterval|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: title|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: content|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: expiredContent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: snoozeContent|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: notificationId|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequest
方法名 or 属性名: slotType|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法名 or 属性名: dateTime|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法名 or 属性名: repeatMonths|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestCalendar
方法名 or 属性名: repeatDays|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法名 or 属性名: hour|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法名 or 属性名: minute|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestAlarm
方法名 or 属性名: daysOfWeek|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestTimer|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: ReminderRequestTimer
方法名 or 属性名: triggerTimeInSeconds|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: year|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: month|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: day|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: hour|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: minute|@ohos.reminderAgentManager.d.ts| +|新增||模块名: ohos.reminderAgentManager
类名: LocalDateTime
方法名 or 属性名: second|@ohos.reminderAgentManager.d.ts| +|废弃版本有变化|类名:commonEvent
废弃版本:|类名:commonEvent
废弃版本:9
代替接口:ohos.commonEventManager |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:publish
废弃版本:|方法名 or 属性名:publish
废弃版本:9
代替接口:ohos.commonEventManager.publish |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:publish
废弃版本:|方法名 or 属性名:publish
废弃版本:9
代替接口:ohos.commonEventManager.publish |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:publishAsUser
废弃版本:|方法名 or 属性名:publishAsUser
废弃版本:9
代替接口:ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:publishAsUser
废弃版本:|方法名 or 属性名:publishAsUser
废弃版本:9
代替接口:ohos.commonEventManager.publishAsUser |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:createSubscriber
废弃版本:|方法名 or 属性名:createSubscriber
废弃版本:9
代替接口:ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:createSubscriber
废弃版本:|方法名 or 属性名:createSubscriber
废弃版本:9
代替接口:ohos.commonEventManager.createSubscriber |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:subscribe
废弃版本:|方法名 or 属性名:subscribe
废弃版本:9
代替接口:ohos.commonEventManager.subscribe |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:unsubscribe
废弃版本:|方法名 or 属性名:unsubscribe
废弃版本:9
代替接口:ohos.commonEventManager.unsubscribe |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:Support
废弃版本:|类名:Support
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BOOT_COMPLETED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BOOT_COMPLETED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_LOCKED_BOOT_COMPLETED
废弃版本:|方法名 or 属性名:COMMON_EVENT_LOCKED_BOOT_COMPLETED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SHUTDOWN
废弃版本:|方法名 or 属性名:COMMON_EVENT_SHUTDOWN
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BATTERY_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BATTERY_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BATTERY_LOW
废弃版本:|方法名 or 属性名:COMMON_EVENT_BATTERY_LOW
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BATTERY_OKAY
废弃版本:|方法名 or 属性名:COMMON_EVENT_BATTERY_OKAY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_POWER_CONNECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_POWER_CONNECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_POWER_DISCONNECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_POWER_DISCONNECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SCREEN_OFF
废弃版本:|方法名 or 属性名:COMMON_EVENT_SCREEN_OFF
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SCREEN_ON
废弃版本:|方法名 or 属性名:COMMON_EVENT_SCREEN_ON
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_THERMAL_LEVEL_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_THERMAL_LEVEL_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_PRESENT
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_PRESENT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_TIME_TICK
废弃版本:|方法名 or 属性名:COMMON_EVENT_TIME_TICK
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_TIME_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_TIME_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_DATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_TIMEZONE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_TIMEZONE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_CLOSE_SYSTEM_DIALOGS
废弃版本:|方法名 or 属性名:COMMON_EVENT_CLOSE_SYSTEM_DIALOGS
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_ADDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_ADDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_REPLACED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_REPLACED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_REPLACED
废弃版本:|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_REPLACED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BUNDLE_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BUNDLE_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_FULLY_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_FULLY_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_RESTARTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_RESTARTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_DATA_CLEARED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_DATA_CLEARED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_CACHE_CLEARED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_CACHE_CLEARED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGES_SUSPENDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGES_SUSPENDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGES_UNSUSPENDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGES_UNSUSPENDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_SUSPENDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_SUSPENDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_UNSUSPENDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_MY_PACKAGE_UNSUSPENDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_UID_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_UID_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_FIRST_LAUNCH
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_FIRST_LAUNCH
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_PACKAGE_VERIFIED
废弃版本:|方法名 or 属性名:COMMON_EVENT_PACKAGE_VERIFIED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_CONFIGURATION_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_CONFIGURATION_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_LOCALE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_LOCALE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_MANAGE_PACKAGE_STORAGE
废弃版本:|方法名 or 属性名:COMMON_EVENT_MANAGE_PACKAGE_STORAGE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DRIVE_MODE
废弃版本:|方法名 or 属性名:COMMON_EVENT_DRIVE_MODE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_HOME_MODE
废弃版本:|方法名 or 属性名:COMMON_EVENT_HOME_MODE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_OFFICE_MODE
废弃版本:|方法名 or 属性名:COMMON_EVENT_OFFICE_MODE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_STARTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_STARTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_BACKGROUND
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_BACKGROUND
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_FOREGROUND
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_FOREGROUND
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_SWITCHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_SWITCHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_STARTING
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_STARTING
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_UNLOCKED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_UNLOCKED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_STOPPING
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_STOPPING
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_STOPPED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_STOPPED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_HWID_LOGIN
废弃版本:|方法名 or 属性名:COMMON_EVENT_HWID_LOGIN
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_HWID_LOGOUT
废弃版本:|方法名 or 属性名:COMMON_EVENT_HWID_LOGOUT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_HWID_TOKEN_INVALID
废弃版本:|方法名 or 属性名:COMMON_EVENT_HWID_TOKEN_INVALID
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_HWID_LOGOFF
废弃版本:|方法名 or 属性名:COMMON_EVENT_HWID_LOGOFF
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_POWER_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_POWER_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_SCAN_FINISHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_SCAN_FINISHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_RSSI_VALUE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_RSSI_VALUE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_CONN_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_CONN_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_HOTSPOT_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_HOTSPOT_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_AP_STA_JOIN
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_AP_STA_JOIN
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_AP_STA_LEAVE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_AP_STA_LEAVE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_CONN_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_CONN_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISCHARGING
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISCHARGING
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_CHARGING
废弃版本:|方法名 or 属性名:COMMON_EVENT_CHARGING
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_POWER_SAVE_MODE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_POWER_SAVE_MODE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_ADDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_ADDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USER_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USER_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_ABILITY_ADDED
废弃版本:|方法名 or 属性名:COMMON_EVENT_ABILITY_ADDED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_ABILITY_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_ABILITY_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_ABILITY_UPDATED
废弃版本:|方法名 or 属性名:COMMON_EVENT_ABILITY_UPDATED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_LOCATION_MODE_STATE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_LOCATION_MODE_STATE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_SLEEP
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_SLEEP
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_PAUSE
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_PAUSE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_STANDBY
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_STANDBY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_LASTMODE_SAVE
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_LASTMODE_SAVE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_VOLTAGE_ABNORMAL
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_VOLTAGE_ABNORMAL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_HIGH_TEMPERATURE
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_HIGH_TEMPERATURE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_EXTREME_TEMPERATURE
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_EXTREME_TEMPERATURE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_VOLTAGE_RECOVERY
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_VOLTAGE_RECOVERY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_TEMPERATURE_RECOVERY
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_TEMPERATURE_RECOVERY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_IVI_ACTIVE
废弃版本:|方法名 or 属性名:COMMON_EVENT_IVI_ACTIVE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_STATE
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_STATE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_PORT_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_PORT_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_DEVICE_ATTACHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_DEVICE_ATTACHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_DEVICE_DETACHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_DEVICE_DETACHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_ACCESSORY_ATTACHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_ACCESSORY_ATTACHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_USB_ACCESSORY_DETACHED
废弃版本:|方法名 or 属性名:COMMON_EVENT_USB_ACCESSORY_DETACHED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_UNMOUNTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_UNMOUNTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_MOUNTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_MOUNTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_BAD_REMOVAL
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_BAD_REMOVAL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_UNMOUNTABLE
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_UNMOUNTABLE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_DISK_EJECT
废弃版本:|方法名 or 属性名:COMMON_EVENT_DISK_EJECT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VOLUME_REMOVED
废弃版本:|方法名 or 属性名:COMMON_EVENT_VOLUME_REMOVED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VOLUME_UNMOUNTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_VOLUME_UNMOUNTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VOLUME_MOUNTED
废弃版本:|方法名 or 属性名:COMMON_EVENT_VOLUME_MOUNTED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VOLUME_BAD_REMOVAL
废弃版本:|方法名 or 属性名:COMMON_EVENT_VOLUME_BAD_REMOVAL
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VOLUME_EJECT
废弃版本:|方法名 or 属性名:COMMON_EVENT_VOLUME_EJECT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED
废弃版本:|方法名 or 属性名:COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_ACCOUNT_DELETED
废弃版本:|方法名 or 属性名:COMMON_EVENT_ACCOUNT_DELETED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_FOUNDATION_READY
废弃版本:|方法名 or 属性名:COMMON_EVENT_FOUNDATION_READY
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_AIRPLANE_MODE_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_AIRPLANE_MODE_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SPLIT_SCREEN
废弃版本:|方法名 or 属性名:COMMON_EVENT_SPLIT_SCREEN
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SLOT_CHANGE
废弃版本:|方法名 or 属性名:COMMON_EVENT_SLOT_CHANGE
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_SPN_INFO_CHANGED
废弃版本:|方法名 or 属性名:COMMON_EVENT_SPN_INFO_CHANGED
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT_QUICK_FIX_APPLY_RESULT
废弃版本:|方法名 or 属性名:COMMON_EVENT_QUICK_FIX_APPLY_RESULT
废弃版本:9
代替接口:ohos.commonEventManager.Support |@ohos.commonEvent.d.ts| +|废弃版本有变化|类名:notification
废弃版本:|类名:notification
废弃版本:9
代替接口:ohos.notificationManager and ohos.notificationSubscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:publish
废弃版本:|方法名 or 属性名:publish
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:publish
废弃版本:|方法名 or 属性名:publish
废弃版本:9
代替接口:ohos.notificationManager.publish |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:publishAsBundle
废弃版本:|方法名 or 属性名:publishAsBundle
废弃版本:9
代替接口:ohos.notificationManager.publishAsBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:cancel
废弃版本:|方法名 or 属性名:cancel
废弃版本:9
代替接口:ohos.notificationManager.cancel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:cancel
废弃版本:|方法名 or 属性名:cancel
废弃版本:9
代替接口:ohos.notificationManager.cancel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelAsBundle
废弃版本:|方法名 or 属性名:cancelAsBundle
废弃版本:9
代替接口:ohos.notificationManager.cancelAsBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelAll
废弃版本:|方法名 or 属性名:cancelAll
废弃版本:9
代替接口:ohos.notificationManager.cancelAll |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:addSlot
废弃版本:|方法名 or 属性名:addSlot
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:addSlot
废弃版本:|方法名 or 属性名:addSlot
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:addSlot
废弃版本:|方法名 or 属性名:addSlot
废弃版本:9
代替接口:ohos.notificationManager.addSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:addSlots
废弃版本:|方法名 or 属性名:addSlots
废弃版本:9
代替接口:ohos.notificationManager.addSlots |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:addSlots
废弃版本:|方法名 or 属性名:addSlots
废弃版本:9
代替接口:ohos.notificationManager.addSlots |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlot
废弃版本:|方法名 or 属性名:getSlot
废弃版本:9
代替接口:ohos.notificationManager.getSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlots
废弃版本:|方法名 or 属性名:getSlots
废弃版本:9
代替接口:ohos.notificationManager.getSlots |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeSlot
废弃版本:|方法名 or 属性名:removeSlot
废弃版本:9
代替接口:ohos.notificationManager.removeSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAllSlots
废弃版本:|方法名 or 属性名:removeAllSlots
废弃版本:9
代替接口:ohos.notificationManager.removeAllSlots |@ohos.notification.d.ts| +|废弃版本有变化|类名:SlotType
废弃版本:|类名:SlotType
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:UNKNOWN_TYPE
废弃版本:|方法名 or 属性名:UNKNOWN_TYPE
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:SOCIAL_COMMUNICATION
废弃版本:|方法名 or 属性名:SOCIAL_COMMUNICATION
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:SERVICE_INFORMATION
废弃版本:|方法名 or 属性名:SERVICE_INFORMATION
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:CONTENT_INFORMATION
废弃版本:|方法名 or 属性名:CONTENT_INFORMATION
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:OTHER_TYPES
废弃版本:|方法名 or 属性名:OTHER_TYPES
废弃版本:9
代替接口:ohos.notificationManager.SlotType |@ohos.notification.d.ts| +|废弃版本有变化|类名:ContentType
废弃版本:|类名:ContentType
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:NOTIFICATION_CONTENT_BASIC_TEXT
废弃版本:|方法名 or 属性名:NOTIFICATION_CONTENT_BASIC_TEXT
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:NOTIFICATION_CONTENT_LONG_TEXT
废弃版本:|方法名 or 属性名:NOTIFICATION_CONTENT_LONG_TEXT
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:NOTIFICATION_CONTENT_PICTURE
废弃版本:|方法名 or 属性名:NOTIFICATION_CONTENT_PICTURE
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:NOTIFICATION_CONTENT_CONVERSATION
废弃版本:|方法名 or 属性名:NOTIFICATION_CONTENT_CONVERSATION
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:NOTIFICATION_CONTENT_MULTILINE
废弃版本:|方法名 or 属性名:NOTIFICATION_CONTENT_MULTILINE
废弃版本:9
代替接口:ohos.notificationManager.ContentType |@ohos.notification.d.ts| +|废弃版本有变化|类名:SlotLevel
废弃版本:|类名:SlotLevel
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:LEVEL_NONE
废弃版本:|方法名 or 属性名:LEVEL_NONE
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:LEVEL_MIN
废弃版本:|方法名 or 属性名:LEVEL_MIN
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:LEVEL_LOW
废弃版本:|方法名 or 属性名:LEVEL_LOW
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:LEVEL_DEFAULT
废弃版本:|方法名 or 属性名:LEVEL_DEFAULT
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:LEVEL_HIGH
废弃版本:|方法名 or 属性名:LEVEL_HIGH
废弃版本:9
代替接口:ohos.notificationManager.SlotLevel |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:subscribe
废弃版本:|方法名 or 属性名:subscribe
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:subscribe
废弃版本:|方法名 or 属性名:subscribe
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:subscribe
废弃版本:|方法名 or 属性名:subscribe
废弃版本:9
代替接口:ohos.notificationSubscribe.subscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:unsubscribe
废弃版本:|方法名 or 属性名:unsubscribe
废弃版本:9
代替接口:ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:unsubscribe
废弃版本:|方法名 or 属性名:unsubscribe
废弃版本:9
代替接口:ohos.notificationSubscribe.unsubscribe |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:enableNotification
废弃版本:|方法名 or 属性名:enableNotification
废弃版本:9
代替接口:ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:enableNotification
废弃版本:|方法名 or 属性名:enableNotification
废弃版本:9
代替接口:ohos.notificationManager.setNotificationEnable |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationEnabled
废弃版本:|方法名 or 属性名:isNotificationEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationEnabled
废弃版本:|方法名 or 属性名:isNotificationEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationEnabled
废弃版本:|方法名 or 属性名:isNotificationEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationEnabled
废弃版本:|方法名 or 属性名:isNotificationEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationEnabled
废弃版本:|方法名 or 属性名:isNotificationEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:displayBadge
废弃版本:|方法名 or 属性名:displayBadge
废弃版本:9
代替接口:ohos.notificationManager.displayBadge |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:displayBadge
废弃版本:|方法名 or 属性名:displayBadge
废弃版本:9
代替接口:ohos.notificationManager.displayBadge |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isBadgeDisplayed
废弃版本:|方法名 or 属性名:isBadgeDisplayed
废弃版本:9
代替接口:ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isBadgeDisplayed
废弃版本:|方法名 or 属性名:isBadgeDisplayed
废弃版本:9
代替接口:ohos.notificationManager.isBadgeDisplayed |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:setSlotByBundle
废弃版本:|方法名 or 属性名:setSlotByBundle
废弃版本:9
代替接口:ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:setSlotByBundle
废弃版本:|方法名 or 属性名:setSlotByBundle
废弃版本:9
代替接口:ohos.notificationManager.setSlotByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlotsByBundle
废弃版本:|方法名 or 属性名:getSlotsByBundle
废弃版本:9
代替接口:ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlotsByBundle
废弃版本:|方法名 or 属性名:getSlotsByBundle
废弃版本:9
代替接口:ohos.notificationManager.getSlotsByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlotNumByBundle
废弃版本:|方法名 or 属性名:getSlotNumByBundle
废弃版本:9
代替接口:ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSlotNumByBundle
废弃版本:|方法名 or 属性名:getSlotNumByBundle
废弃版本:9
代替接口:ohos.notificationManager.getSlotNumByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.notificationSubscribe.remove |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.notificationSubscribe.remove |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.notificationSubscribe.remove |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.notificationSubscribe.remove |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAll
废弃版本:|方法名 or 属性名:removeAll
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAll
废弃版本:|方法名 or 属性名:removeAll
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAll
废弃版本:|方法名 or 属性名:removeAll
废弃版本:9
代替接口:ohos.notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeAll
废弃版本:|方法名 or 属性名:removeAll
废弃版本:9
代替接口:notificationSubscribe.removeAll |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllActiveNotifications
废弃版本:|方法名 or 属性名:getAllActiveNotifications
废弃版本:9
代替接口:ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllActiveNotifications
废弃版本:|方法名 or 属性名:getAllActiveNotifications
废弃版本:9
代替接口:ohos.notificationManager.getAllActiveNotifications |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getActiveNotificationCount
废弃版本:|方法名 or 属性名:getActiveNotificationCount
废弃版本:9
代替接口:ohos.notificationManager.getActiveNotificationCount |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getActiveNotifications
废弃版本:|方法名 or 属性名:getActiveNotifications
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelGroup
废弃版本:|方法名 or 属性名:cancelGroup
废弃版本:9
代替接口:ohos.notificationManager.cancelGroup |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:removeGroupByBundle
废弃版本:|方法名 or 属性名:removeGroupByBundle
废弃版本:9
代替接口:ohos.notificationManager.removeGroupByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:setDoNotDisturbDate
废弃版本:|方法名 or 属性名:setDoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:setDoNotDisturbDate
废弃版本:|方法名 or 属性名:setDoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.setDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getDoNotDisturbDate
废弃版本:|方法名 or 属性名:getDoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getDoNotDisturbDate
废弃版本:|方法名 or 属性名:getDoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.getDoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:supportDoNotDisturbMode
废弃版本:|方法名 or 属性名:supportDoNotDisturbMode
废弃版本:9
代替接口:ohos.notificationManager.supportDoNotDisturbMode |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isSupportTemplate
废弃版本:|方法名 or 属性名:isSupportTemplate
废弃版本:9
代替接口:ohos.notificationManager.isSupportTemplate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:requestEnableNotification
废弃版本:|方法名 or 属性名:requestEnableNotification
废弃版本:9
代替接口:ohos.notificationManager.requestEnableNotification |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:enableDistributed
废弃版本:|方法名 or 属性名:enableDistributed
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnable |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isDistributedEnabled
废弃版本:|方法名 or 属性名:isDistributedEnabled
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:enableDistributedByBundle
废弃版本:|方法名 or 属性名:enableDistributedByBundle
废弃版本:9
代替接口:ohos.notificationManager.setDistributedEnableByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isDistributedEnabledByBundle
废弃版本:|方法名 or 属性名:isDistributedEnabledByBundle
废弃版本:9
代替接口:ohos.notificationManager.isDistributedEnabledByBundle |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getDeviceRemindType
废弃版本:|方法名 or 属性名:getDeviceRemindType
废弃版本:9
代替接口:ohos.notificationManager.getDeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:enableNotificationSlot
废弃版本:|方法名 or 属性名:enableNotificationSlot
废弃版本:9
代替接口:ohos.notificationManager.setNotificationEnableSlot |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:isNotificationSlotEnabled
废弃版本:|方法名 or 属性名:isNotificationSlotEnabled
废弃版本:9
代替接口:ohos.notificationManager.isNotificationSlotEnabled |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:setSyncNotificationEnabledWithoutApp
废弃版本:|方法名 or 属性名:setSyncNotificationEnabledWithoutApp
废弃版本:9
代替接口:ohos.notificationManager.setSyncNotificationEnabledWithoutApp |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:getSyncNotificationEnabledWithoutApp
废弃版本:|方法名 or 属性名:getSyncNotificationEnabledWithoutApp
废弃版本:9
代替接口:ohos.notificationManager.getSyncNotificationEnabledWithoutApp |@ohos.notification.d.ts| +|废弃版本有变化|类名:BundleOption
废弃版本:|类名:BundleOption
废弃版本:9
代替接口:ohos.notificationManager.BundleOption |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:bundle
废弃版本:|方法名 or 属性名:bundle
废弃版本:9
代替接口:ohos.notificationManager.BundleOption |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:uid
废弃版本:|方法名 or 属性名:uid
废弃版本:9
代替接口:ohos.notificationManager.BundleOption |@ohos.notification.d.ts| +|废弃版本有变化|类名:NotificationKey
废弃版本:|类名:NotificationKey
废弃版本:9
代替接口:ohos.notificationManager.NotificationKey |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.notificationManager.NotificationKey |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:label
废弃版本:|方法名 or 属性名:label
废弃版本:9
代替接口:ohos.notificationManager.NotificationKey |@ohos.notification.d.ts| +|废弃版本有变化|类名:DoNotDisturbType
废弃版本:|类名:DoNotDisturbType
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_NONE
废弃版本:|方法名 or 属性名:TYPE_NONE
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_ONCE
废弃版本:|方法名 or 属性名:TYPE_ONCE
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_DAILY
废弃版本:|方法名 or 属性名:TYPE_DAILY
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_CLEARLY
废弃版本:|方法名 or 属性名:TYPE_CLEARLY
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbType |@ohos.notification.d.ts| +|废弃版本有变化|类名:DoNotDisturbDate
废弃版本:|类名:DoNotDisturbDate
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:begin
废弃版本:|方法名 or 属性名:begin
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:end
废弃版本:|方法名 or 属性名:end
废弃版本:9
代替接口:ohos.notificationManager.DoNotDisturbDate |@ohos.notification.d.ts| +|废弃版本有变化|类名:DeviceRemindType
废弃版本:|类名:DeviceRemindType
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:IDLE_DONOT_REMIND
废弃版本:|方法名 or 属性名:IDLE_DONOT_REMIND
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:IDLE_REMIND
废弃版本:|方法名 or 属性名:IDLE_REMIND
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTIVE_DONOT_REMIND
废弃版本:|方法名 or 属性名:ACTIVE_DONOT_REMIND
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTIVE_REMIND
废弃版本:|方法名 or 属性名:ACTIVE_REMIND
废弃版本:9
代替接口:ohos.notificationManager.DeviceRemindType |@ohos.notification.d.ts| +|废弃版本有变化|类名:SourceType
废弃版本:|类名:SourceType
废弃版本:9
代替接口:ohos.notificationManager.SourceType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_NORMAL
废弃版本:|方法名 or 属性名:TYPE_NORMAL
废弃版本:9
代替接口:ohos.notificationManager.SourceType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_CONTINUOUS
废弃版本:|方法名 or 属性名:TYPE_CONTINUOUS
废弃版本:9
代替接口:ohos.notificationManager.SourceType |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_TIMER
废弃版本:|方法名 or 属性名:TYPE_TIMER
废弃版本:9
代替接口:ohos.notificationManager.SourceType |@ohos.notification.d.ts| +|废弃版本有变化|类名:RemoveReason
废弃版本:|类名:RemoveReason
废弃版本:9
代替接口:ohos.notificationManager.RemoveReason |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:CLICK_REASON_REMOVE
废弃版本:|方法名 or 属性名:CLICK_REASON_REMOVE
废弃版本:9
代替接口:ohos.notificationManager.RemoveReason |@ohos.notification.d.ts| +|废弃版本有变化|方法名 or 属性名:CANCEL_REASON_REMOVE
废弃版本:|方法名 or 属性名:CANCEL_REASON_REMOVE
废弃版本:9
代替接口:ohos.notificationManager.RemoveReason |@ohos.notification.d.ts| +|废弃版本有变化|类名:reminderAgent
废弃版本:|类名:reminderAgent
废弃版本:9
代替接口:reminderAgentManager |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:publishReminder
废弃版本:|方法名 or 属性名:publishReminder
废弃版本:9
代替接口:reminderAgentManager.publishReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelReminder
废弃版本:|方法名 or 属性名:cancelReminder
废弃版本:9
代替接口:reminderAgentManager.cancelReminder |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:getValidReminders
废弃版本:|方法名 or 属性名:getValidReminders
废弃版本:9
代替接口:reminderAgentManager.getValidReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelAllReminders
废弃版本:|方法名 or 属性名:cancelAllReminders
废弃版本:9
代替接口:reminderAgentManager.cancelAllReminders |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:addNotificationSlot
废弃版本:|方法名 or 属性名:addNotificationSlot
废弃版本:9
代替接口:reminderAgentManager.addNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:removeNotificationSlot
废弃版本:|方法名 or 属性名:removeNotificationSlot
废弃版本:9
代替接口:reminderAgentManager.removeNotificationSlot |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButtonType
废弃版本:|类名:ActionButtonType
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_BUTTON_TYPE_CLOSE
废弃版本:|方法名 or 属性名:ACTION_BUTTON_TYPE_CLOSE
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:ACTION_BUTTON_TYPE_SNOOZE
废弃版本:|方法名 or 属性名:ACTION_BUTTON_TYPE_SNOOZE
废弃版本:9
代替接口:reminderAgentManager.ActionButtonType.ACTION_BUTTON_TYPE_SNOOZE |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderType
废弃版本:|类名:ReminderType
废弃版本:9
代替接口:reminderAgentManager.ReminderType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REMINDER_TYPE_TIMER
废弃版本:|方法名 or 属性名:REMINDER_TYPE_TIMER
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_TIMER |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REMINDER_TYPE_CALENDAR
废弃版本:|方法名 or 属性名:REMINDER_TYPE_CALENDAR
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_CALENDAR |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:REMINDER_TYPE_ALARM
废弃版本:|方法名 or 属性名:REMINDER_TYPE_ALARM
废弃版本:9
代替接口:reminderAgentManager.ReminderType.REMINDER_TYPE_ALARM |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ActionButton
废弃版本:|类名:ActionButton
废弃版本:9
代替接口:reminderAgentManager.ActionButton |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:title
废弃版本:|方法名 or 属性名:title
废弃版本:9
代替接口:reminderAgentManager.ActionButton.title |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:reminderAgentManager.ActionButton.type |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:WantAgent
废弃版本:|类名:WantAgent
废弃版本:9
代替接口:reminderAgentManager.WantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:pkgName
废弃版本:|方法名 or 属性名:pkgName
废弃版本:9
代替接口:reminderAgentManager.WantAgent.pkgName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:reminderAgentManager.WantAgent.abilityName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:MaxScreenWantAgent
废弃版本:|类名:MaxScreenWantAgent
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:pkgName
废弃版本:|方法名 or 属性名:pkgName
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent.pkgName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:reminderAgentManager.MaxScreenWantAgent.abilityName |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequest
废弃版本:|类名:ReminderRequest
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:reminderType
废弃版本:|方法名 or 属性名:reminderType
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.reminderType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:actionButton
废弃版本:|方法名 or 属性名:actionButton
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.actionButton |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:wantAgent
废弃版本:|方法名 or 属性名:wantAgent
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.wantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:maxScreenWantAgent
废弃版本:|方法名 or 属性名:maxScreenWantAgent
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.maxScreenWantAgent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:ringDuration
废弃版本:|方法名 or 属性名:ringDuration
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.ringDuration |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:snoozeTimes
废弃版本:|方法名 or 属性名:snoozeTimes
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.snoozeTimes |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:timeInterval
废弃版本:|方法名 or 属性名:timeInterval
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.timeInterval |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:title
废弃版本:|方法名 or 属性名:title
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.title |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:content
废弃版本:|方法名 or 属性名:content
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.content |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:expiredContent
废弃版本:|方法名 or 属性名:expiredContent
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.expiredContent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:snoozeContent
废弃版本:|方法名 or 属性名:snoozeContent
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.snoozeContent |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:notificationId
废弃版本:|方法名 or 属性名:notificationId
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.notificationId |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:slotType
废弃版本:|方法名 or 属性名:slotType
废弃版本:9
代替接口:reminderAgentManager.ReminderRequest.slotType |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestCalendar
废弃版本:|类名:ReminderRequestCalendar
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:dateTime
废弃版本:|方法名 or 属性名:dateTime
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.dateTime |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:repeatMonths
废弃版本:|方法名 or 属性名:repeatMonths
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.repeatMonths |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:repeatDays
废弃版本:|方法名 or 属性名:repeatDays
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestCalendar.repeatDays |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestAlarm
废弃版本:|类名:ReminderRequestAlarm
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:hour
废弃版本:|方法名 or 属性名:hour
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.hour |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:minute
废弃版本:|方法名 or 属性名:minute
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.minute |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:daysOfWeek
废弃版本:|方法名 or 属性名:daysOfWeek
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestAlarm.daysOfWeek |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:ReminderRequestTimer
废弃版本:|类名:ReminderRequestTimer
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:triggerTimeInSeconds
废弃版本:|方法名 or 属性名:triggerTimeInSeconds
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer |@ohos.reminderAgent.d.ts| +|废弃版本有变化|类名:LocalDateTime
废弃版本:|类名:LocalDateTime
废弃版本:9
代替接口:reminderAgentManager |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:year
废弃版本:|方法名 or 属性名:year
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.year |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:month
废弃版本:|方法名 or 属性名:month
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.month |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:day
废弃版本:|方法名 or 属性名:day
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.day |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:hour
废弃版本:|方法名 or 属性名:hour
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.hour |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:minute
废弃版本:|方法名 or 属性名:minute
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.minute |@ohos.reminderAgent.d.ts| +|废弃版本有变化|方法名 or 属性名:second
废弃版本:|方法名 or 属性名:second
废弃版本:9
代替接口:reminderAgentManager.ReminderRequestTimer.second |@ohos.reminderAgent.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-file-management.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-file-management.md new file mode 100644 index 0000000000000000000000000000000000000000..496a591f63abbe899d625887d58c89b3b3357e72 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-file-management.md @@ -0,0 +1,381 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.file.fs
类名: fileIo|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: READ_ONLY|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: WRITE_ONLY|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: READ_WRITE|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: CREATE|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: TRUNC|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: APPEND|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: NONBLOCK|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: DIR|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: NOFOLLOW|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: OpenMode
方法名 or 属性名: SYNC|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: open|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: open|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: open|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: openSync|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: read|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: read|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: read|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: readSync|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: stat|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: stat|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: statSync|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: truncate|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: truncate|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: truncate|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: truncateSync|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: write|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: write|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: write|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: fileIo
方法名 or 属性名: writeSync|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: File|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: File
方法名 or 属性名: fd|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: ino|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: mode|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: uid|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: gid|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: size|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: atime|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: mtime|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: ctime|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isBlockDevice|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isCharacterDevice|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isDirectory|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isFIFO|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isFile|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isSocket|@ohos.file.fs.d.ts| +|新增||模块名: ohos.file.fs
类名: Stat
方法名 or 属性名: isSymbolicLink|@ohos.file.fs.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: userFileManager|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: userFileManager
方法名 or 属性名: getUserFileMgr|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileType|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileType
方法名 or 属性名: IMAGE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileType
方法名 or 属性名: VIDEO|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileType
方法名 or 属性名: AUDIO|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: uri|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: fileType|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: displayName|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: get|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: set|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: commitModify|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: commitModify|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: open|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: open|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: close|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: close|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: getThumbnail|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: getThumbnail|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: getThumbnail|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: favorite|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FileAsset
方法名 or 属性名: favorite|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: TITLE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: ARTIST|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: AUDIOALBUM|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: DURATION|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AudioKey
方法名 or 属性名: FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: DISPLAY_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: TITLE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: DURATION|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: WIDTH|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: HEIGHT|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: DATE_TAKEN|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: ORIENTATION|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: ImageVideoKey
方法名 or 属性名: FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法名 or 属性名: URI|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法名 or 属性名: FILE_TYPE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法名 or 属性名: ALBUM_NAME|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法名 or 属性名: DATE_ADDED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumKey
方法名 or 属性名: DATE_MODIFIED|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchOptions|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchOptions
方法名 or 属性名: fetchColumns|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchOptions
方法名 or 属性名: predicates|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumFetchOptions|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AlbumFetchOptions
方法名 or 属性名: predicates|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getCount|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: isAfterLast|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: close|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getFirstObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getFirstObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getNextObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getNextObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getLastObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getLastObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getPositionObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: FetchResult
方法名 or 属性名: getPositionObject|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: albumName|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: albumUri|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: dateModified|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: count|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: coverUri|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: AbsAlbum
方法名 or 属性名: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: Album|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: Album
方法名 or 属性名: commitModify|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: Album
方法名 or 属性名: commitModify|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPhotoAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: createPhotoAsset|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPhotoAlbums|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPhotoAlbums|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPrivateAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getPrivateAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getAudioAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getAudioAssets|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: delete|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: delete|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_deviceChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_albumChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_imageChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_audioChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_videoChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: on_remoteFileChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_deviceChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_albumChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_imageChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_audioChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_videoChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: off_remoteFileChange|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getActivePeers|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getActivePeers|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getAllPeers|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: getAllPeers|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: release|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: UserFileManager
方法名 or 属性名: release|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PeerInfo|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法名 or 属性名: deviceName|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法名 or 属性名: networkId|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PeerInfo
方法名 or 属性名: isOnline|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType
方法名 or 属性名: TYPE_FAVORITE|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbumType
方法名 or 属性名: TYPE_TRASH|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法名 or 属性名: delete|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法名 or 属性名: delete|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法名 or 属性名: recover|@ohos.filemanagement.userFileManager.d.ts| +|新增||模块名: ohos.filemanagement.userFileManager
类名: PrivateAlbum
方法名 or 属性名: recover|@ohos.filemanagement.userFileManager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: userfile_manager||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: userfile_manager
方法名 or 属性名: getUserFileMgr||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: userfile_manager
方法名 or 属性名: getUserFileMgr||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaType||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaType
方法名 or 属性名: FILE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaType
方法名 or 属性名: IMAGE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaType
方法名 or 属性名: VIDEO||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaType
方法名 or 属性名: AUDIO||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: uri||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: mediaType||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: displayName||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isDirectory||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isDirectory||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: commitModify||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: commitModify||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: open||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: open||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: close||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: close||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: getThumbnail||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: favorite||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: favorite||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isFavorite||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isFavorite||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: trash||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: trash||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isTrash||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileAsset
方法名 or 属性名: isTrash||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: URI||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FileKey
方法名 or 属性名: TITLE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: URI||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: TITLE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: ARTIST||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: AUDIOALBUM||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AudioKey
方法名 or 属性名: DURATION||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: URI||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: TITLE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: DURATION||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: WIDTH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: HEIGHT||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: ImageVideoKey
方法名 or 属性名: DATE_TAKEN||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey
方法名 or 属性名: URI||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey
方法名 or 属性名: RELATIVE_PATH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey
方法名 or 属性名: DISPLAY_NAME||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey
方法名 or 属性名: DATE_ADDED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: AlbumKey
方法名 or 属性名: DATE_MODIFIED||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaFetchOptions||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaFetchOptions
方法名 or 属性名: selections||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: MediaFetchOptions
方法名 or 属性名: selectionArgs||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getCount||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: isAfterLast||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: close||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getFirstObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getFirstObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getNextObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getNextObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getLastObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getLastObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getPositionObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: FetchFileResult
方法名 or 属性名: getPositionObject||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: albumName||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: albumUri||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: dateModified||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: count||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: relativePath||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: coverUri||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: commitModify||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: commitModify||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Album
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_CAMERA||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_VIDEO||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_IMAGE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_AUDIO||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_DOCUMENTS||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: DirectoryType
方法名 or 属性名: DIR_DOWNLOAD||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getPublicDirectory||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getPublicDirectory||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_deviceChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_albumChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_imageChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_audioChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_videoChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_fileChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: on_remoteFileChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_deviceChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_albumChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_imageChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_audioChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_videoChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_fileChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: off_remoteFileChange||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: createAsset||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: createAsset||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: deleteAsset||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: deleteAsset||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getAlbums||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getAlbums||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getPrivateAlbum||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getPrivateAlbum||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getActivePeers||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getActivePeers||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getAllPeers||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: getAllPeers||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: release||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: UserFileManager
方法名 or 属性名: release||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Size||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Size
方法名 or 属性名: width||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: Size
方法名 or 属性名: height||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: PeerInfo||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: PeerInfo
方法名 or 属性名: deviceName||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: PeerInfo
方法名 or 属性名: networkId||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: PeerInfo
方法名 or 属性名: isOnline||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbumType||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbumType
方法名 or 属性名: TYPE_FAVORITE||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbumType
方法名 or 属性名: TYPE_TRASH||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbum||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbum
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.filemanagement.userfile_manager
类名: VirtualAlbum
方法名 or 属性名: getFileAssets||@ohos.filemanagement.userfile_manager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: listFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: listFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: listFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: getRoot||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: getRoot||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: getRoot||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: createFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: createFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: filemanager
方法名 or 属性名: createFile||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: name||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: path||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: type||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: size||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: addedTime||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: FileInfo
方法名 or 属性名: modifiedTime||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: DevInfo||@ohos.fileManager.d.ts| +|删除|模块名: ohos.fileManager
类名: DevInfo
方法名 or 属性名: name||@ohos.fileManager.d.ts| +|废弃版本有变化|方法名 or 属性名:ftruncate
废弃版本:|方法名 or 属性名:ftruncate
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:ftruncateSync
废弃版本:|方法名 or 属性名:ftruncateSync
废弃版本:9
代替接口:ohos.file.fs.truncateSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:fstat
废弃版本:|方法名 or 属性名:fstat
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:fstatSync
废弃版本:|方法名 or 属性名:fstatSync
废弃版本:9
代替接口:ohos.file.fs.statSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:open
废弃版本:|方法名 or 属性名:open
废弃版本:9
代替接口:ohos.file.fs.open |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:openSync
废弃版本:|方法名 or 属性名:openSync
废弃版本:9
代替接口:ohos.file.fs.openSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:read
废弃版本:|方法名 or 属性名:read
废弃版本:9
代替接口:ohos.file.fs.read |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:readSync
废弃版本:|方法名 or 属性名:readSync
废弃版本:9
代替接口:ohos.file.fs.readSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:stat
废弃版本:|方法名 or 属性名:stat
废弃版本:9
代替接口:ohos.file.fs.stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:statSync
废弃版本:|方法名 or 属性名:statSync
废弃版本:9
代替接口:ohos.file.fs.statSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:truncate
废弃版本:|方法名 or 属性名:truncate
废弃版本:9
代替接口:ohos.file.fs.truncate |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:truncateSync
废弃版本:|方法名 or 属性名:truncateSync
废弃版本:9
代替接口:ohos.file.fs.truncateSync |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:write
废弃版本:|方法名 or 属性名:write
废弃版本:9
代替接口:ohos.file.fs.write |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:writeSync
废弃版本:|方法名 or 属性名:writeSync
废弃版本:9
代替接口:ohos.file.fs.writeSync |@ohos.fileio.d.ts| +|废弃版本有变化|类名:Stat
废弃版本:|类名:Stat
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:dev
废弃版本:|方法名 or 属性名:dev
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:ino
废弃版本:|方法名 or 属性名:ino
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:mode
废弃版本:|方法名 or 属性名:mode
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:nlink
废弃版本:|方法名 or 属性名:nlink
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:uid
废弃版本:|方法名 or 属性名:uid
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:gid
废弃版本:|方法名 or 属性名:gid
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:rdev
废弃版本:|方法名 or 属性名:rdev
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:size
废弃版本:|方法名 or 属性名:size
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:blocks
废弃版本:|方法名 or 属性名:blocks
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:atime
废弃版本:|方法名 or 属性名:atime
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:mtime
废弃版本:|方法名 or 属性名:mtime
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:ctime
废弃版本:|方法名 or 属性名:ctime
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isBlockDevice
废弃版本:|方法名 or 属性名:isBlockDevice
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isCharacterDevice
废弃版本:|方法名 or 属性名:isCharacterDevice
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isDirectory
废弃版本:|方法名 or 属性名:isDirectory
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isFIFO
废弃版本:|方法名 or 属性名:isFIFO
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isFile
废弃版本:|方法名 or 属性名:isFile
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isSocket
废弃版本:|方法名 or 属性名:isSocket
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:isSymbolicLink
废弃版本:|方法名 or 属性名:isSymbolicLink
废弃版本:9
代替接口:ohos.file.fs.Stat |@ohos.fileio.d.ts| +|废弃版本有变化|类名:ReadOut
废弃版本:|类名:ReadOut
废弃版本:9|@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:bytesRead
废弃版本:|方法名 or 属性名:bytesRead
废弃版本:9|@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:offset
废弃版本:|方法名 or 属性名:offset
废弃版本:9|@ohos.fileio.d.ts| +|废弃版本有变化|方法名 or 属性名:buffer
废弃版本:|方法名 or 属性名:buffer
废弃版本:9|@ohos.fileio.d.ts| +|权限有变化|方法名 or 属性名:getFileAccessAbilityInfo
权限:ohos.permission.FILE_ACCESS_MANAGER|方法名 or 属性名:getFileAccessAbilityInfo
权限:ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts| +|权限有变化|方法名 or 属性名:getFileAccessAbilityInfo
权限:ohos.permission.FILE_ACCESS_MANAGER|方法名 or 属性名:getFileAccessAbilityInfo
权限:ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts| +|权限有变化|方法名 or 属性名:createFileAccessHelper
权限:ohos.permission.FILE_ACCESS_MANAGER|方法名 or 属性名:createFileAccessHelper
权限:ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts| +|权限有变化|方法名 or 属性名:createFileAccessHelper
权限:ohos.permission.FILE_ACCESS_MANAGER|方法名 or 属性名:createFileAccessHelper
权限:ohos.permission.FILE_ACCESS_MANAGER and ohos.permission.GET_BUNDLE_INFO_PRIVILEGED|@ohos.data.fileAccess.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-geolocation.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-geolocation.md new file mode 100644 index 0000000000000000000000000000000000000000..38fd16331846b416e4ddf83086fd1f7354c841aa --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-geolocation.md @@ -0,0 +1,172 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: on_countryCodeChange|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: off_countryCodeChange|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableLocation|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableLocation|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableLocation|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableLocation|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: getCountryCode|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: getCountryCode|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableLocationMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableLocationMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableLocationMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableLocationMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setMockedLocations|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setMockedLocations|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableReverseGeocodingMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: enableReverseGeocodingMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableReverseGeocodingMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: disableReverseGeocodingMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: isLocationPrivacyConfirmed|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: isLocationPrivacyConfirmed|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setLocationPrivacyConfirmStatus|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: geoLocationManager
方法名 or 属性名: setLocationPrivacyConfirmStatus|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo
方法名 or 属性名: location|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeocodingMockInfo
方法名 or 属性名: geoAddress|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationMockConfig|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationMockConfig
方法名 or 属性名: timeInterval|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationMockConfig
方法名 or 属性名: locations|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: satellitesNumber|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: satelliteIds|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: carrierToNoiseDensitys|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: altitudes|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: azimuths|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: SatelliteStatusInfo
方法名 or 属性名: carrierFrequencies|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest
方法名 or 属性名: reportingPeriodSec|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CachedGnssLocationsRequest
方法名 or 属性名: wakeUpCacheQueueFull|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeofenceRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeofenceRequest
方法名 or 属性名: priority|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeofenceRequest
方法名 or 属性名: scenario|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeofenceRequest
方法名 or 属性名: geofence|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Geofence|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Geofence
方法名 or 属性名: latitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Geofence
方法名 or 属性名: longitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Geofence
方法名 or 属性名: radius|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Geofence
方法名 or 属性名: expiration|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法名 or 属性名: locale|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法名 or 属性名: latitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法名 or 属性名: longitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: ReverseGeoCodeRequest
方法名 or 属性名: maxItems|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: locale|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: description|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: maxItems|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: minLatitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: minLongitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: maxLatitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoCodeRequest
方法名 or 属性名: maxLongitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: latitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: longitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: locale|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: placeName|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: countryCode|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: countryName|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: administrativeArea|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: subAdministrativeArea|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: locality|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: subLocality|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: roadName|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: subRoadName|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: premises|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: postalCode|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: phoneNumber|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: addressUrl|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: descriptions|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: descriptionsSize|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: GeoAddress
方法名 or 属性名: isFromMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest
方法名 or 属性名: priority|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest
方法名 or 属性名: scenario|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest
方法名 or 属性名: timeInterval|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest
方法名 or 属性名: distanceInterval|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequest
方法名 or 属性名: maxAccuracy|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CurrentLocationRequest|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法名 or 属性名: priority|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法名 or 属性名: scenario|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法名 or 属性名: maxAccuracy|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CurrentLocationRequest
方法名 or 属性名: timeoutMs|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: latitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: longitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: altitude|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: accuracy|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: speed|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: timeStamp|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: direction|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: timeSinceBoot|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: additions|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: additionSize|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: Location
方法名 or 属性名: isFromMock|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestPriority|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法名 or 属性名: UNSET|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法名 or 属性名: ACCURACY|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法名 or 属性名: LOW_POWER|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestPriority
方法名 or 属性名: FIRST_FIX|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: UNSET|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: NAVIGATION|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: TRAJECTORY_TRACKING|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: CAR_HAILING|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: DAILY_LIFE_SERVICE|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationRequestScenario
方法名 or 属性名: NO_POWER|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationPrivacyType|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法名 or 属性名: OTHERS|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法名 or 属性名: STARTUP|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationPrivacyType
方法名 or 属性名: CORE_LOCATION|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationCommand|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationCommand
方法名 or 属性名: scenario|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: LocationCommand
方法名 or 属性名: command|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCode|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCode
方法名 or 属性名: country|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCode
方法名 or 属性名: type|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCodeType|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCodeType
方法名 or 属性名: COUNTRY_CODE_FROM_LOCALE|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCodeType
方法名 or 属性名: COUNTRY_CODE_FROM_SIM|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCodeType
方法名 or 属性名: COUNTRY_CODE_FROM_LOCATION|@ohos.geoLocationManager.d.ts| +|新增||模块名: ohos.geoLocationManager
类名: CountryCodeType
方法名 or 属性名: COUNTRY_CODE_FROM_NETWORK|@ohos.geoLocationManager.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:on_countryCodeChange||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:off_countryCodeChange||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:getCountryCode||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:getCountryCode||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:enableLocationMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:enableLocationMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:disableLocationMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:disableLocationMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setMockedLocations||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setMockedLocations||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:enableReverseGeocodingMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:enableReverseGeocodingMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:disableReverseGeocodingMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:disableReverseGeocodingMock||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setReverseGeocodingMockInfo||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setReverseGeocodingMockInfo||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: ReverseGeocodingMockInfo||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: ReverseGeocodingMockInfo
方法名 or 属性名:location||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: ReverseGeocodingMockInfo
方法名 or 属性名:geoAddress||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: LocationMockConfig||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: LocationMockConfig
方法名 or 属性名:timeInterval||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: LocationMockConfig
方法名 or 属性名:locations||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:isLocationPrivacyConfirmed||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:isLocationPrivacyConfirmed||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setLocationPrivacyConfirmStatus||@ohos.geolocation.d.ts| +|删除|模块名:ohos.geolocation
类名:geolocation
方法名 or 属性名:setLocationPrivacyConfirmStatus||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: GeoAddress
方法名 or 属性名:isFromMock||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: Location
方法名 or 属性名:isFromMock||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: GeoLocationErrorCode
方法名 or 属性名:NOT_SUPPORTED||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: GeoLocationErrorCode
方法名 or 属性名:QUERY_COUNTRY_CODE_ERROR||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCode||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCode
方法名 or 属性名:country||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCode
方法名 or 属性名:type||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCodeType||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCodeType
方法名 or 属性名:COUNTRY_CODE_FROM_LOCALE||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCodeType
方法名 or 属性名:COUNTRY_CODE_FROM_SIM||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCodeType
方法名 or 属性名:COUNTRY_CODE_FROM_LOCATION||@ohos.geolocation.d.ts| +|删除|模块名: ohos.geolocation
类名: CountryCodeType
方法名 or 属性名:COUNTRY_CODE_FROM_NETWORK||@ohos.geolocation.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-global.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-global.md new file mode 100644 index 0000000000000000000000000000000000000000..ff14677bf14e74ac788cf10da2a74d440a5b3906 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-global.md @@ -0,0 +1,106 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.i18n
类名: System|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getDisplayCountry|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getDisplayLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getSystemLanguages|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getSystemCountries|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:isSuggested|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getSystemLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:setSystemLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getSystemRegion|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:setSystemRegion|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getSystemLocale|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:setSystemLocale|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:is24HourClock|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:set24HourClock|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:addPreferredLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:removePreferredLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getPreferredLanguageList|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getFirstPreferredLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getAppPreferredLanguage|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:setUsingLocalDigit|@ohos.i18n.d.ts| +|新增||模块名: ohos.i18n
类名: System
方法名 or 属性名:getUsingLocalDigit|@ohos.i18n.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringArrayValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringArrayValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContentBase64|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContentBase64|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getPluralStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getPluralStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringArrayValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getStringArrayValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getPluralStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getPluralStringValue|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContentBase64|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getMediaContentBase64|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getRawFileContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getRawFileContent|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getRawFd|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:getRawFd|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:closeRawFd|@ohos.resourceManager.d.ts| +|新增||模块名:ohos.resourceManager
类名:ResourceManager
方法名 or 属性名:closeRawFd|@ohos.resourceManager.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:getSystemLanguages||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:getSystemCountries||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:isSuggested||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:setSystemLanguage||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:setSystemRegion||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:setSystemLocale||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:getAppPreferredLanguage||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:setUsingLocalDigit||@ohos.i18n.d.ts| +|删除|模块名:ohos.i18n
类名:i18n
方法名 or 属性名:getUsingLocalDigit||@ohos.i18n.d.ts| +|删除|模块名: ohos.resourceManager
类名: AsyncCallback||@ohos.resourceManager.d.ts| +|删除|模块名: ohos.resourceManager
类名: AsyncCallback
方法名 or 属性名:AsyncCallback||@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getDisplayCountry
废弃版本:|方法名 or 属性名:getDisplayCountry
废弃版本:9
代替接口:ohos.System.getDisplayCountry |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getDisplayLanguage
废弃版本:|方法名 or 属性名:getDisplayLanguage
废弃版本:9
代替接口:ohos.System.getDisplayLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getSystemLanguage
废弃版本:|方法名 or 属性名:getSystemLanguage
废弃版本:9
代替接口:ohos.System.getSystemLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getSystemRegion
废弃版本:|方法名 or 属性名:getSystemRegion
废弃版本:9
代替接口:ohos.System.getSystemRegion |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getSystemLocale
废弃版本:|方法名 or 属性名:getSystemLocale
废弃版本:9
代替接口:ohos.System.getSystemLocale |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:is24HourClock
废弃版本:|方法名 or 属性名:is24HourClock
废弃版本:9
代替接口:ohos.System.is24HourClock |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:set24HourClock
废弃版本:|方法名 or 属性名:set24HourClock
废弃版本:9
代替接口:ohos.System.set24HourClock |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:addPreferredLanguage
废弃版本:|方法名 or 属性名:addPreferredLanguage
废弃版本:9
代替接口:ohos.System.addPreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:removePreferredLanguage
废弃版本:|方法名 or 属性名:removePreferredLanguage
废弃版本:9
代替接口:ohos.System.removePreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getPreferredLanguageList
废弃版本:|方法名 or 属性名:getPreferredLanguageList
废弃版本:9
代替接口:ohos.System.getPreferredLanguageList |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getFirstPreferredLanguage
废弃版本:|方法名 or 属性名:getFirstPreferredLanguage
废弃版本:9
代替接口:ohos.System.getFirstPreferredLanguage |@ohos.i18n.d.ts| +|废弃版本有变化|方法名 or 属性名:getString
废弃版本:|方法名 or 属性名:getString
废弃版本:9
代替接口:ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getString
废弃版本:|方法名 or 属性名:getString
废弃版本:9
代替接口:ohos.resourceManager.getStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getStringArray
废弃版本:|方法名 or 属性名:getStringArray
废弃版本:9
代替接口:ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getStringArray
废弃版本:|方法名 or 属性名:getStringArray
废弃版本:9
代替接口:ohos.resourceManager.getStringArrayValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMedia
废弃版本:|方法名 or 属性名:getMedia
废弃版本:9
代替接口:ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMedia
废弃版本:|方法名 or 属性名:getMedia
废弃版本:9
代替接口:ohos.resourceManager.getMediaContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMediaBase64
废弃版本:|方法名 or 属性名:getMediaBase64
废弃版本:9
代替接口:ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getMediaBase64
废弃版本:|方法名 or 属性名:getMediaBase64
废弃版本:9
代替接口:ohos.resourceManager.getMediaContentBase64 |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getPluralString
废弃版本:|方法名 or 属性名:getPluralString
废弃版本:9
代替接口:ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getPluralString
废弃版本:|方法名 or 属性名:getPluralString
废弃版本:9
代替接口:ohos.resourceManager.getPluralStringValue |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawFile
废弃版本:|方法名 or 属性名:getRawFile
废弃版本:9
代替接口:ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawFile
废弃版本:|方法名 or 属性名:getRawFile
废弃版本:9
代替接口:ohos.resourceManager.getRawFileContent |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawFileDescriptor
废弃版本:|方法名 or 属性名:getRawFileDescriptor
废弃版本:9
代替接口:ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawFileDescriptor
废弃版本:|方法名 or 属性名:getRawFileDescriptor
废弃版本:9
代替接口:ohos.resourceManager.getRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:closeRawFileDescriptor
废弃版本:|方法名 or 属性名:closeRawFileDescriptor
废弃版本:9
代替接口:ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts| +|废弃版本有变化|方法名 or 属性名:closeRawFileDescriptor
废弃版本:|方法名 or 属性名:closeRawFileDescriptor
废弃版本:9
代替接口:ohos.resourceManager.closeRawFd |@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringArrayByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringArrayByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getMediaByName
错误码内容:401,9001003,9001004|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getMediaByName
错误码内容:401,9001003,9001004|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getMediaBase64ByName
错误码内容:401,9001003,9001004|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getMediaBase64ByName
错误码内容:401,9001003,9001004|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getPluralStringByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getPluralStringByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringSync
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringSync
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getStringByNameSync
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getBoolean
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getBoolean
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getBooleanByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getNumber
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getNumber
错误码内容:401,9001001,9001002,9001006|@ohos.resourceManager.d.ts| +|新增(错误码)||方法名 or 属性名:getNumberByName
错误码内容:401,9001003,9001004,9001006|@ohos.resourceManager.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-misc.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-misc.md new file mode 100644 index 0000000000000000000000000000000000000000..79c59c0080f923fde718e8c46724abc859017868 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-misc.md @@ -0,0 +1,295 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.inputmethod
类名:inputMethod|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:getSetting|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:getController|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:switchCurrentInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:switchCurrentInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:getCurrentInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:switchCurrentInputMethodAndSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:inputMethod
方法名 or 属性名:switchCurrentInputMethodAndSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:on_imeChange|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:off_imeChange|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:listInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:listInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:listCurrentInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:listCurrentInputMethodSubtype|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:getInputMethods|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:getInputMethods|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:showOptionalInputMethods|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodSetting
方法名 or 属性名:showOptionalInputMethods|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodController
方法名 or 属性名:stopInputSession|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodController
方法名 or 属性名:stopInputSession|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:name|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:id|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:label|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:icon|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:iconId|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethod
类名:InputMethodProperty
方法名 or 属性名:extra|@ohos.inputmethod.d.ts| +|新增||模块名:ohos.inputmethodengine
类名:inputMethodEngine
方法名 or 属性名:getInputMethodAbility|@ohos.inputmethodengine.d.ts| +|新增||模块名:ohos.inputmethodengine
类名:inputMethodEngine
方法名 or 属性名:getKeyboardDelegate|@ohos.inputmethodengine.d.ts| +|新增||模块名:ohos.inputmethodengine
类名:KeyboardController
方法名 or 属性名:hide|@ohos.inputmethodengine.d.ts| +|新增||模块名:ohos.inputmethodengine
类名:KeyboardController
方法名 or 属性名:hide|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_inputStart|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_inputStart|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_inputStop|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_inputStop|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_setCallingWindow|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_setCallingWindow|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_keyboardShow|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_keyboardHide|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_keyboardShow|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_keyboardHide|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:on_setSubtype|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputMethodAbility
方法名 or 属性名:off_setSubtype|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:sendKeyFunction|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:sendKeyFunction|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:deleteForward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:deleteForward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:deleteBackward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:deleteBackward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:insertText|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:insertText|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getForward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getForward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getBackward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getBackward|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getEditorAttribute|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:getEditorAttribute|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:moveCursor|@ohos.inputmethodengine.d.ts| +|新增||模块名: ohos.inputmethodengine
类名: InputClient
方法名 or 属性名:moveCursor|@ohos.inputmethodengine.d.ts| +|新增||模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:destroy|@ohos.inputmethodextensioncontext.d.ts| +|新增||模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:destroy|@ohos.inputmethodextensioncontext.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: label|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: name|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: id|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: mode|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: locale|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: language|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: icon|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: iconId|@ohos.inputMethodSubtype.d.ts| +|新增||模块名: ohos.inputMethodSubtype
类名: InputMethodSubtype
方法名 or 属性名: extra|@ohos.inputMethodSubtype.d.ts| +|新增||方法名 or 属性名:createData
函数:function createData(mimeType: string, value: ValueType): PasteData;|@ohos.pasteboard.d.ts| +|新增||方法名 or 属性名:createRecord
函数:function createRecord(mimeType: string, value: ValueType): PasteDataRecord;|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteDataRecord
方法名 or 属性名:convertToTextV9|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteDataRecord
方法名 or 属性名:convertToTextV9|@ohos.pasteboard.d.ts| +|新增||方法名 or 属性名:addRecord
函数:addRecord(mimeType: string, value: ValueType): void;|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteData
方法名 or 属性名:getRecord|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteData
方法名 or 属性名:hasType|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteData
方法名 or 属性名:removeRecord|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:PasteData
方法名 or 属性名:replaceRecord|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:clearData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:clearData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:getData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:getData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:hasData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:hasData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:setData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.pasteboard
类名:SystemPasteboard
方法名 or 属性名:setData|@ohos.pasteboard.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_PERMISSION|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_PARAMCHECK|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_UNSUPPORTED|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_FILEIO|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_FILEPATH|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_SERVICE|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:EXCEPTION_OTHERS|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:ERROR_OFFLINE|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:ERROR_UNSUPPORTED_NETWORK_TYPE|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:downloadFile|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:downloadFile|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:uploadFile|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:request
方法名 or 属性名:uploadFile|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:delete|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:delete|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:suspend|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:suspend|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:restore|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:restore|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:getTaskInfo|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:getTaskInfo|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:getTaskMimeType|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:DownloadTask
方法名 or 属性名:getTaskMimeType|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:UploadTask
方法名 or 属性名:delete|@ohos.request.d.ts| +|新增||模块名:ohos.request
类名:UploadTask
方法名 or 属性名:delete|@ohos.request.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:isLocked|@ohos.screenLock.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:isSecure|@ohos.screenLock.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:unlock|@ohos.screenLock.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:unlock|@ohos.screenLock.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:lock|@ohos.screenLock.d.ts| +|新增||模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:lock|@ohos.screenLock.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getColorsSync|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getIdSync|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getFileSync|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getMinHeightSync|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getMinWidthSync|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:isChangeAllowed|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:isUserChangeAllowed|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:restore|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:restore|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:setImage|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:setImage|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getImage|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:getImage|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:on_colorChange|@ohos.wallpaper.d.ts| +|新增||模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:off_colorChange|@ohos.wallpaper.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法名 or 属性名:on_inputStop||@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法名 or 属性名:off_inputStop||@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法名 or 属性名:on_setCallingWindow||@ohos.inputmethodengine.d.ts| +|删除|模块名: ohos.inputmethodengine
类名: InputMethodEngine
方法名 or 属性名:off_setCallingWindow||@ohos.inputmethodengine.d.ts| +|删除|模块名:ohos.inputmethodengine
类名:TextInputClient
方法名 or 属性名:moveCursor||@ohos.inputmethodengine.d.ts| +|删除|模块名:ohos.inputmethodengine
类名:TextInputClient
方法名 or 属性名:moveCursor||@ohos.inputmethodengine.d.ts| +|删除|模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:startAbility||@ohos.inputmethodextensioncontext.d.ts| +|删除|模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:startAbility||@ohos.inputmethodextensioncontext.d.ts| +|删除|模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:startAbility||@ohos.inputmethodextensioncontext.d.ts| +|删除|模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:terminateSelf||@ohos.inputmethodextensioncontext.d.ts| +|删除|模块名:ohos.inputmethodextensioncontext
类名:InputMethodExtensionContext
方法名 or 属性名:terminateSelf||@ohos.inputmethodextensioncontext.d.ts| +|删除|模块名:ohos.pasteboard
类名:pasteboard
方法名 or 属性名:createPixelMapData||@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:pasteboard
方法名 or 属性名:createPixelMapRecord||@ohos.pasteboard.d.ts| +|删除|模块名:ohos.pasteboard
类名:PasteData
方法名 or 属性名:addPixelMapRecord||@ohos.pasteboard.d.ts| +|删除|模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:lockScreen||@ohos.screenLock.d.ts| +|删除|模块名:ohos.screenLock
类名:screenLock
方法名 or 属性名:lockScreen||@ohos.screenLock.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:screenshotLiveWallpaper||@ohos.wallpaper.d.ts| +|删除|模块名:ohos.wallpaper
类名:wallpaper
方法名 or 属性名:screenshotLiveWallpaper||@ohos.wallpaper.d.ts| +|model有变化|方法名 or 属性名:switchInputMethod
model:@StageModelOnly|方法名 or 属性名:switchInputMethod
model:|@ohos.inputmethod.d.ts| +|model有变化|方法名 or 属性名:switchInputMethod
model:@StageModelOnly|方法名 or 属性名:switchInputMethod
model:|@ohos.inputmethod.d.ts| +|model有变化|方法名 or 属性名:getCurrentInputMethod
model:@StageModelOnly|方法名 or 属性名:getCurrentInputMethod
model:|@ohos.inputmethod.d.ts| +|model有变化|类名:InputMethodExtensionAbility
model:@StageModelOnly|类名:InputMethodExtensionAbility
model:|@ohos.inputmethodextensionability.d.ts| +|model有变化|方法名 or 属性名:context
model:@StageModelOnly|方法名 or 属性名:context
model:|@ohos.inputmethodextensionability.d.ts| +|model有变化|方法名 or 属性名:onCreate
model:@StageModelOnly|方法名 or 属性名:onCreate
model:|@ohos.inputmethodextensionability.d.ts| +|model有变化|方法名 or 属性名:onDestroy
model:@StageModelOnly|方法名 or 属性名:onDestroy
model:|@ohos.inputmethodextensionability.d.ts| +|model有变化|类名:InputMethodExtensionContext
model:@StageModelOnly|类名:InputMethodExtensionContext
model:|@ohos.inputmethodextensioncontext.d.ts| +|废弃版本有变化|方法名 or 属性名:getInputMethodSetting
废弃版本:|方法名 or 属性名:getInputMethodSetting
废弃版本:9
代替接口:ohos.inputmethod.getController |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:getInputMethodController
废弃版本:|方法名 or 属性名:getInputMethodController
废弃版本:9
代替接口:ohos.inputmethod.getController |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:listInputMethod
废弃版本:|方法名 or 属性名:listInputMethod
废弃版本:9
代替接口:ohos.inputmethod.InputMethodSetting.getInputMethods |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:listInputMethod
废弃版本:|方法名 or 属性名:listInputMethod
废弃版本:9
代替接口:ohos.inputmethod.InputMethodSetting.getInputMethods |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:displayOptionalInputMethod
废弃版本:|方法名 or 属性名:displayOptionalInputMethod
废弃版本:9
代替接口:ohos.inputmethod.InputMethodSetting.showOptionalInputMethods |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:stopInput
废弃版本:|方法名 or 属性名:stopInput
废弃版本:9
代替接口:ohos.inputmethod.InputMethodController.stopInputSession |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:packageName
废弃版本:|方法名 or 属性名:packageName
废弃版本:9
代替接口:ohos.inputmethod.InputMethodProperty.name |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:methodId
废弃版本:|方法名 or 属性名:methodId
废弃版本:9
代替接口:ohos.inputmethod.InputMethodProperty.id |@ohos.inputmethod.d.ts| +|废弃版本有变化|方法名 or 属性名:getInputMethodEngine
废弃版本:|方法名 or 属性名:getInputMethodEngine
废弃版本:9
代替接口:ohos.inputmethodengine.getInputMethodAbility |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:createKeyboardDelegate
废弃版本:|方法名 or 属性名:createKeyboardDelegate
废弃版本:9
代替接口:ohos.inputmethodengine.getKeyboardDelegate |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:hideKeyboard
废弃版本:|方法名 or 属性名:hideKeyboard
废弃版本:9
代替接口:ohos.inputmethodengine.KeyboardController.hide |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:hideKeyboard
废弃版本:|方法名 or 属性名:hideKeyboard
废弃版本:9
代替接口:ohos.inputmethodengine.KeyboardController.hide |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|类名:TextInputClient
废弃版本:|类名:TextInputClient
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:sendKeyFunction
废弃版本:|方法名 or 属性名:sendKeyFunction
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.sendKeyFunction |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:sendKeyFunction
废弃版本:|方法名 or 属性名:sendKeyFunction
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.sendKeyFunction |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteForward
废弃版本:|方法名 or 属性名:deleteForward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.deleteForward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteForward
废弃版本:|方法名 or 属性名:deleteForward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.deleteForward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteBackward
废弃版本:|方法名 or 属性名:deleteBackward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.deleteBackward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteBackward
废弃版本:|方法名 or 属性名:deleteBackward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.deleteBackward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:insertText
废弃版本:|方法名 or 属性名:insertText
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.insertText |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:insertText
废弃版本:|方法名 or 属性名:insertText
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.insertText |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getForward
废弃版本:|方法名 or 属性名:getForward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getForward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getForward
废弃版本:|方法名 or 属性名:getForward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getForward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getBackward
废弃版本:|方法名 or 属性名:getBackward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getBackward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getBackward
废弃版本:|方法名 or 属性名:getBackward
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getBackward |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getEditorAttribute
废弃版本:|方法名 or 属性名:getEditorAttribute
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getEditorAttribute |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:getEditorAttribute
废弃版本:|方法名 or 属性名:getEditorAttribute
废弃版本:9
代替接口:ohos.inputmethodengine.InputClient.getEditorAttribute |@ohos.inputmethodengine.d.ts| +|废弃版本有变化|方法名 or 属性名:createHtmlData
废弃版本:|方法名 or 属性名:createHtmlData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createWantData
废弃版本:|方法名 or 属性名:createWantData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createPlainTextData
废弃版本:|方法名 or 属性名:createPlainTextData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createUriData
废弃版本:|方法名 or 属性名:createUriData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createHtmlTextRecord
废弃版本:|方法名 or 属性名:createHtmlTextRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createWantRecord
废弃版本:|方法名 or 属性名:createWantRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createPlainTextRecord
废弃版本:|方法名 or 属性名:createPlainTextRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:createUriRecord
废弃版本:|方法名 or 属性名:createUriRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:convertToText
废弃版本:|方法名 or 属性名:convertToText
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:addHtmlRecord
废弃版本:|方法名 or 属性名:addHtmlRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:addWantRecord
废弃版本:|方法名 or 属性名:addWantRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:addTextRecord
废弃版本:|方法名 or 属性名:addTextRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:addUriRecord
废弃版本:|方法名 or 属性名:addUriRecord
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:getRecordAt
废弃版本:|方法名 or 属性名:getRecordAt
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:hasMimeType
废弃版本:|方法名 or 属性名:hasMimeType
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:removeRecordAt
废弃版本:|方法名 or 属性名:removeRecordAt
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:replaceRecordAt
废弃版本:|方法名 or 属性名:replaceRecordAt
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:clear
废弃版本:|方法名 or 属性名:clear
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:getPasteData
废弃版本:|方法名 or 属性名:getPasteData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:hasPasteData
废弃版本:|方法名 or 属性名:hasPasteData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:setPasteData
废弃版本:|方法名 or 属性名:setPasteData
废弃版本:9
代替接口:ohos.pasteboard.pasteboard|@ohos.pasteboard.d.ts| +|废弃版本有变化|方法名 or 属性名:download
废弃版本:|方法名 or 属性名:download
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:download
废弃版本:|方法名 or 属性名:download
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:download
废弃版本:|方法名 or 属性名:download
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:download
废弃版本:|方法名 or 属性名:download
废弃版本:9
代替接口:ohos.request.downloadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:upload
废弃版本:|方法名 or 属性名:upload
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:upload
废弃版本:|方法名 or 属性名:upload
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:upload
废弃版本:|方法名 or 属性名:upload
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:upload
废弃版本:|方法名 or 属性名:upload
废弃版本:9
代替接口:ohos.request.uploadFile |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:pause
废弃版本:|方法名 or 属性名:pause
废弃版本:9
代替接口:ohos.request.suspend |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:pause
废弃版本:|方法名 or 属性名:pause
废弃版本:9
代替接口:ohos.request.suspend |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:resume
废弃版本:|方法名 or 属性名:resume
废弃版本:9
代替接口:ohos.request.restore |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:resume
废弃版本:|方法名 or 属性名:resume
废弃版本:9
代替接口:ohos.request.restore |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:query
废弃版本:|方法名 or 属性名:query
废弃版本:9
代替接口:ohos.request.getTaskInfo |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:query
废弃版本:|方法名 or 属性名:query
废弃版本:9
代替接口:ohos.request.getTaskInfo |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:queryMimeType
废弃版本:|方法名 or 属性名:queryMimeType
废弃版本:9
代替接口:ohos.request.getTaskMimeType |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:queryMimeType
废弃版本:|方法名 or 属性名:queryMimeType
废弃版本:9
代替接口:ohos.request.getTaskMimeType |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:remove
废弃版本:|方法名 or 属性名:remove
废弃版本:9
代替接口:ohos.request.delete |@ohos.request.d.ts| +|废弃版本有变化|方法名 or 属性名:isScreenLocked
废弃版本:|方法名 or 属性名:isScreenLocked
废弃版本:9
代替接口:ohos.screenLock.isLocked |@ohos.screenLock.d.ts| +|废弃版本有变化|方法名 or 属性名:isSecureMode
废弃版本:|方法名 or 属性名:isSecureMode
废弃版本:9
代替接口:ohos.screenLock.isSecure |@ohos.screenLock.d.ts| +|废弃版本有变化|方法名 or 属性名:unlockScreen
废弃版本:|方法名 or 属性名:unlockScreen
废弃版本:9
代替接口:ohos.screenLock.unlock |@ohos.screenLock.d.ts| +|废弃版本有变化|方法名 or 属性名:getColors
废弃版本:|方法名 or 属性名:getColors
废弃版本:9
代替接口:ohos.wallpaper.getColorsSync |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:getId
废弃版本:|方法名 or 属性名:getId
废弃版本:9
代替接口:ohos.wallpaper.getIdSync |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:getFile
废弃版本:|方法名 or 属性名:getFile
废弃版本:9
代替接口:ohos.wallpaper.getFileSync |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:getMinHeight
废弃版本:|方法名 or 属性名:getMinHeight
废弃版本:9
代替接口:ohos.wallpaper.getMinHeightSync |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:getMinWidth
废弃版本:|方法名 or 属性名:getMinWidth
废弃版本:9
代替接口:ohos.wallpaper.getMinWidthSync |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:isChangePermitted
废弃版本:|方法名 or 属性名:isChangePermitted
废弃版本:9
代替接口:ohos.wallpaper.isChangeAllowed |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:isOperationAllowed
废弃版本:|方法名 or 属性名:isOperationAllowed
废弃版本:9
代替接口:ohos.wallpaper.isUserChangeAllowed |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:reset
废弃版本:|方法名 or 属性名:reset
废弃版本:9
代替接口:ohos.wallpaper.recovery |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:setWallpaper
废弃版本:|方法名 or 属性名:setWallpaper
废弃版本:9
代替接口:ohos.wallpaper.setImage |@ohos.wallpaper.d.ts| +|废弃版本有变化|方法名 or 属性名:getPixelMap
废弃版本:|方法名 or 属性名:getPixelMap
废弃版本:9
代替接口:ohos.wallpaper.getImage |@ohos.wallpaper.d.ts| +|废弃版本有变化|类名:UploadResponse
废弃版本:|类名:UploadResponse
废弃版本:9
代替接口:ohos.request |@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:code
废弃版本:|方法名 or 属性名:code
废弃版本:9
代替接口:ohos.request |@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:data
废弃版本:|方法名 or 属性名:data
废弃版本:9
代替接口:ohos.request |@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:headers
废弃版本:|方法名 or 属性名:headers
废弃版本:9
代替接口:ohos.request |@system.request.d.ts| +|废弃版本有变化|类名:DownloadResponse
废弃版本:|类名:DownloadResponse
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:token
废弃版本:|方法名 or 属性名:token
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteResponse
废弃版本:|类名:OnDownloadCompleteResponse
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:|方法名 or 属性名:uri
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:RequestFile
废弃版本:|类名:RequestFile
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:filename
废弃版本:|方法名 or 属性名:filename
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:|方法名 or 属性名:uri
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:RequestData
废弃版本:|类名:RequestData
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:|方法名 or 属性名:value
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:UploadRequestOptions
废弃版本:|类名:UploadRequestOptions
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:url
废弃版本:|方法名 or 属性名:url
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:data
废弃版本:|方法名 or 属性名:data
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:files
废弃版本:|方法名 or 属性名:files
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:header
废弃版本:|方法名 or 属性名:header
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:method
废弃版本:|方法名 or 属性名:method
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:|方法名 or 属性名:success
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:|方法名 or 属性名:fail
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:|方法名 or 属性名:complete
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:DownloadRequestOptions
废弃版本:|类名:DownloadRequestOptions
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:url
废弃版本:|方法名 or 属性名:url
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:filename
废弃版本:|方法名 or 属性名:filename
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:header
废弃版本:|方法名 or 属性名:header
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:description
废弃版本:|方法名 or 属性名:description
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:|方法名 or 属性名:success
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:|方法名 or 属性名:fail
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:|方法名 or 属性名:complete
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:OnDownloadCompleteOptions
废弃版本:|类名:OnDownloadCompleteOptions
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:token
废弃版本:|方法名 or 属性名:token
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:success
废弃版本:|方法名 or 属性名:success
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:fail
废弃版本:|方法名 or 属性名:fail
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:complete
废弃版本:|方法名 or 属性名:complete
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|类名:Request
废弃版本:|类名:Request
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:upload
废弃版本:|方法名 or 属性名:upload
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:download
废弃版本:|方法名 or 属性名:download
废弃版本:9|@system.request.d.ts| +|废弃版本有变化|方法名 or 属性名:onDownloadComplete
废弃版本:|方法名 or 属性名:onDownloadComplete
废弃版本:9|@system.request.d.ts| +|新增(错误码)||方法名 or 属性名:setProperty
错误码内容:401|@ohos.pasteboard.d.ts| +|新增(错误码)||方法名 or 属性名:on_update
错误码内容:401|@ohos.pasteboard.d.ts| +|新增(错误码)||方法名 or 属性名:off_update
错误码内容:401|@ohos.pasteboard.d.ts| +|新增(权限)|方法名 or 属性名:switchInputMethod
权限:N/A|方法名 or 属性名:switchInputMethod
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| +|新增(权限)|方法名 or 属性名:switchInputMethod
权限:N/A|方法名 or 属性名:switchInputMethod
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| +|新增(权限)|方法名 or 属性名:showSoftKeyboard
权限:N/A|方法名 or 属性名:showSoftKeyboard
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| +|新增(权限)|方法名 or 属性名:showSoftKeyboard
权限:N/A|方法名 or 属性名:showSoftKeyboard
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| +|新增(权限)|方法名 or 属性名:hideSoftKeyboard
权限:N/A|方法名 or 属性名:hideSoftKeyboard
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| +|新增(权限)|方法名 or 属性名:hideSoftKeyboard
权限:N/A|方法名 or 属性名:hideSoftKeyboard
权限:ohos.permission.CONNECT_IME_ABILITY|@ohos.inputmethod.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-msdp.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-msdp.md new file mode 100644 index 0000000000000000000000000000000000000000..08b844eb6d58ee05af59bc52b32cbe3f6db14545 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-msdp.md @@ -0,0 +1,15 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.stationary
类名: stationary|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityResponse|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityResponse
方法名 or 属性名: state|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityEvent|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityEvent
方法名 or 属性名: ENTER|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityEvent
方法名 or 属性名: EXIT|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityEvent
方法名 or 属性名: ENTER_EXIT|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityState|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityState
方法名 or 属性名: ENTER|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: ActivityState
方法名 or 属性名: EXIT|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: stationary
方法名 or 属性名: on|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: stationary
方法名 or 属性名: once|@ohos.stationary.d.ts| +|新增||模块名: ohos.stationary
类名: stationary
方法名 or 属性名: off|@ohos.stationary.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multi-modal-input.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multi-modal-input.md new file mode 100644 index 0000000000000000000000000000000000000000..93012ff64b35b1e551b4e3cb78894946c99dfd99 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multi-modal-input.md @@ -0,0 +1,17 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.multimodalInput.inputDevice
类名:inputDevice
方法名 or 属性名:getDeviceList|@ohos.multimodalInput.inputDevice.d.ts| +|新增||模块名:ohos.multimodalInput.inputDevice
类名:inputDevice
方法名 or 属性名:getDeviceList|@ohos.multimodalInput.inputDevice.d.ts| +|新增||模块名:ohos.multimodalInput.inputDevice
类名:inputDevice
方法名 or 属性名:getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts| +|新增||模块名:ohos.multimodalInput.inputDevice
类名:inputDevice
方法名 or 属性名:getDeviceInfo|@ohos.multimodalInput.inputDevice.d.ts| +|新增||方法名 or 属性名:supportKeys
函数:function supportKeys(deviceId: number, keys: Array, callback: AsyncCallback>): void;|@ohos.multimodalInput.inputDevice.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg
方法名 or 属性名:MSG_COOPERATE_INFO_START|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg
方法名 or 属性名:MSG_COOPERATE_INFO_SUCCESS|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg
方法名 or 属性名:MSG_COOPERATE_INFO_FAIL|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg
方法名 or 属性名:MSG_COOPERATE_STATE_ON|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|新增||模块名:ohos.multimodalInput.inputDeviceCooperate
类名:EventMsg
方法名 or 属性名:MSG_COOPERATE_STATE_OFF|@ohos.multimodalInput.inputDeviceCooperate.d.ts| +|废弃版本有变化|方法名 or 属性名:getDeviceIds
废弃版本:|方法名 or 属性名:getDeviceIds
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|方法名 or 属性名:getDeviceIds
废弃版本:N/A|方法名 or 属性名:getDeviceIds
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|方法名 or 属性名:getDevice
废弃版本:N/A|方法名 or 属性名:getDevice
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| +|废弃版本有变化|方法名 or 属性名:getDevice
废弃版本:N/A|方法名 or 属性名:getDevice
废弃版本:9
代替接口:ohos.multimodalInput.inputDevice|@ohos.multimodalInput.inputDevice.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multimedia.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multimedia.md new file mode 100644 index 0000000000000000000000000000000000000000..162172650188025baf3e6819214aedd2de191fba --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-multimedia.md @@ -0,0 +1,796 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_INVALID_PARAM|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_NO_MEMORY|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_ILLEGAL_STATE|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_UNSUPPORTED|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_TIMEOUT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_STREAM_LIMIT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioErrors
方法名 or 属性名:ERROR_SYSTEM|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: audio
方法名 or 属性名:DEFAULT_VOLUME_GROUP_ID|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: audio
方法名 or 属性名:DEFAULT_INTERRUPT_GROUP_ID|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: audio
方法名 or 属性名:createTonePlayer|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: audio
方法名 or 属性名:createTonePlayer|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: CommunicationDeviceType|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: CommunicationDeviceType
方法名 or 属性名:SPEAKER|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: StreamUsage
方法名 or 属性名:STREAM_USAGE_VOICE_ASSISTANT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptRequestType|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptRequestType
方法名 or 属性名:INTERRUPT_REQUEST_TYPE_DEFAULT|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:InterruptMode|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:InterruptMode
方法名 or 属性名:SHARE_MODE|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:InterruptMode
方法名 or 属性名:INDEPENDENT_MODE|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:getVolumeManager|@ohos.multimedia.audio.d.ts| +|新增||方法名 or 属性名:getStreamManager
函数:getStreamManager(): AudioStreamManager;|@ohos.multimedia.audio.d.ts| +|新增||方法名 or 属性名:getRoutingManager
函数:getRoutingManager(): AudioRoutingManager;|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptRequestResultType|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptRequestResultType
方法名 or 属性名:INTERRUPT_REQUEST_GRANT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptRequestResultType
方法名 or 属性名:INTERRUPT_REQUEST_REJECT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptResult|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptResult
方法名 or 属性名:requestResult|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: InterruptResult
方法名 or 属性名:interruptNode|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:setCommunicationDevice|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:setCommunicationDevice|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:isCommunicationDeviceActive|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:isCommunicationDeviceActive|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:selectInputDevice|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRoutingManager
方法名 or 属性名:selectInputDevice|@ohos.multimedia.audio.d.ts| +|新增||方法名 or 属性名:off_audioRendererChange
函数:off(type: "audioRendererChange"): void;|@ohos.multimedia.audio.d.ts| +|新增||方法名 or 属性名:off_audioCapturerChange
函数:off(type: "audioCapturerChange"): void;|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioStreamManager
方法名 or 属性名:isActive|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioStreamManager
方法名 or 属性名:isActive|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法名 or 属性名:getVolumeGroupInfos|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法名 or 属性名:getVolumeGroupInfos|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法名 or 属性名:getVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法名 or 属性名:getVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeManager
方法名 or 属性名:on_volumeChange|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getMinVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getMinVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getMaxVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getMaxVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:mute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:mute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:isMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:isMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setRingerMode|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setRingerMode|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getRingerMode|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:getRingerMode|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:on_ringerModeChange|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setMicrophoneMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:setMicrophoneMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:isMicrophoneMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:isMicrophoneMute|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioVolumeGroupManager
方法名 or 属性名:on_micStateChange|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:ConnectType
方法名 or 属性名:CONNECT_TYPE_LOCAL|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:ConnectType
方法名 or 属性名:CONNECT_TYPE_DISTRIBUTED|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: MicStateChangeEvent|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: MicStateChangeEvent
方法名 or 属性名:mute|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:getAudioStreamId|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:getAudioStreamId|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:setVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:setVolume|@ohos.multimedia.audio.d.ts| +|新增||模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:on_audioInterrupt|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: SourceType
方法名 or 属性名:SOURCE_TYPE_VOICE_RECOGNITION|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioCapturer
方法名 or 属性名:getAudioStreamId|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: AudioCapturer
方法名 or 属性名:getAudioStreamId|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_0|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_1|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_2|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_3|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_4|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_5|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_6|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_7|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_8|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_9|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_S|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_P|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_A|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_B|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_C|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_DIAL_D|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_DIAL|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_BUSY|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_CONGESTION|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_RADIO_ACK|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_RADIO_NOT_AVAILABLE|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_CALL_WAITING|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_SUPERVISORY_RINGTONE|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_PROPRIETARY_BEEP|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_PROPRIETARY_ACK|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_PROPRIETARY_PROMPT|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: ToneType
方法名 or 属性名:TONE_TYPE_COMMON_PROPRIETARY_DOUBLE_BEEP|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:load|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:load|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:start|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:start|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:stop|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:stop|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:release|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.audio
类名: TonePlayer
方法名 or 属性名:release|@ohos.multimedia.audio.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: createAVSession|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: createAVSession|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: getAllSessionDescriptors|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: getAllSessionDescriptors|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: createController|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: createController|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: castAudio|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: castAudio|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: SessionToken|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: SessionToken
方法名 or 属性名: sessionId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: SessionToken
方法名 or 属性名: pid|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: SessionToken
方法名 or 属性名: uid|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: on_sessionCreate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: on_sessionDestroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: on_topSessionChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: off_sessionCreate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: off_sessionDestroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: off_topSessionChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: on_sessionServiceDie|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: off_sessionServiceDie|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: sendSystemAVKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: sendSystemAVKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: sendSystemControlCommand|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: avSession
方法名 or 属性名: sendSystemControlCommand|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: sessionId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setAVMetadata|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setAVMetadata|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setAVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setAVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setLaunchAbility|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: setLaunchAbility|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: getController|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: getController|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: getOutputDevice|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: getOutputDevice|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_play|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_pause|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_stop|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_playNext|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_playPrevious|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_fastForward|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_rewind|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_play|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_pause|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_stop|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_playNext|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_playPrevious|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_fastForward|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_rewind|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_seek|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_seek|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_setSpeed|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_setSpeed|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_setLoopMode|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_setLoopMode|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_toggleFavorite|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_toggleFavorite|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_handleKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_handleKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: on_outputDeviceChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: off_outputDeviceChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: activate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: activate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: deactivate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: deactivate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: destroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSession
方法名 or 属性名: destroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: assetId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: title|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: artist|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: author|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: album|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: writer|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: composer|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: duration|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: mediaImage|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: publishDate|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: subtitle|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: description|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: lyric|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: previousAssetId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVMetadata
方法名 or 属性名: nextAssetId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: state|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: speed|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: position|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: bufferedTime|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: loopMode|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVPlaybackState
方法名 or 属性名: isFavorite|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackPosition|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackPosition
方法名 or 属性名: elapsedTime|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackPosition
方法名 or 属性名: updateTime|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法名 or 属性名: isRemote|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法名 or 属性名: audioDeviceId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: OutputDeviceInfo
方法名 or 属性名: deviceName|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: LoopMode|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: LoopMode
方法名 or 属性名: LOOP_MODE_SEQUENCE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: LoopMode
方法名 or 属性名: LOOP_MODE_SINGLE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: LoopMode
方法名 or 属性名: LOOP_MODE_LIST|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: LoopMode
方法名 or 属性名: LOOP_MODE_SHUFFLE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_INITIAL|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_PREPARE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_PLAY|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_PAUSE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_FAST_FORWARD|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_REWIND|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: PlaybackState
方法名 or 属性名: PLAYBACK_STATE_STOP|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: sessionId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: type|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: sessionTag|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: elementName|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: isActive|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: isTopSession|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionDescriptor
方法名 or 属性名: outputDevice|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: sessionId|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getAVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getAVPlaybackState|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getAVMetadata|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getAVMetadata|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getOutputDevice|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getOutputDevice|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: sendAVKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: sendAVKeyEvent|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getLaunchAbility|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getLaunchAbility|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getRealPlaybackPositionSync|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: isActive|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: isActive|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: destroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: destroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getValidCommands|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: getValidCommands|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: sendControlCommand|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: sendControlCommand|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_metadataChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_metadataChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_playbackStateChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_playbackStateChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_sessionDestroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_sessionDestroy|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_activeStateChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_activeStateChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_validCommandChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_validCommandChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: on_outputDeviceChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionController
方法名 or 属性名: off_outputDeviceChange|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVControlCommand|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVControlCommand
方法名 or 属性名: command|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVControlCommand
方法名 or 属性名: parameter|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_SERVICE_EXCEPTION|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_SESSION_NOT_EXIST|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_CONTROLLER_NOT_EXIST|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_REMOTE_CONNECTION_ERR|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_COMMAND_INVALID|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_SESSION_INACTIVE|@ohos.multimedia.avsession.d.ts| +|新增||模块名: ohos.multimedia.avsession
类名: AVSessionErrorCode
方法名 or 属性名: ERR_CODE_MESSAGE_OVERLOAD|@ohos.multimedia.avsession.d.ts| +|新增||方法名 or 属性名:CAMERA_STATUS_DISAPPEAR
函数:CAMERA_STATUS_DISAPPEAR = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_STATUS_AVAILABLE
函数:CAMERA_STATUS_AVAILABLE = 2|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_STATUS_UNAVAILABLE
函数:CAMERA_STATUS_UNAVAILABLE = 3|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Profile|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Profile
方法名 or 属性名:format|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Profile
方法名 or 属性名:size|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: FrameRateRange|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: FrameRateRange
方法名 or 属性名:min|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: FrameRateRange
方法名 or 属性名:max|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoProfile|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoProfile
方法名 or 属性名:frameRateRange|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutputCapability|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法名 or 属性名:previewProfiles|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法名 or 属性名:photoProfiles|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法名 or 属性名:videoProfiles|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutputCapability
方法名 or 属性名:supportedMetadataObjectTypes|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getSupportedCameras|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getSupportedCameras|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getSupportedOutputCapability|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getSupportedOutputCapability|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:isCameraMuted|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:isCameraMuteSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:muteCamera|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:createCameraInput
函数:createCameraInput(camera: CameraDevice, callback: AsyncCallback): void;|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:createCameraInput
函数:createCameraInput(camera: CameraDevice): Promise;|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createPreviewOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createPreviewOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createPhotoOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createPhotoOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createVideoOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createVideoOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createMetadataOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createMetadataOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createCaptureSession|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:createCaptureSession|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:on_cameraMute|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:camera
函数:camera: CameraDevice;|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_POSITION_BACK
函数:CAMERA_POSITION_BACK = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_POSITION_FRONT
函数:CAMERA_POSITION_FRONT = 2|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_TYPE_WIDE_ANGLE
函数:CAMERA_TYPE_WIDE_ANGLE = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_TYPE_ULTRA_WIDE
函数:CAMERA_TYPE_ULTRA_WIDE = 2|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_TYPE_TELEPHOTO
函数:CAMERA_TYPE_TELEPHOTO = 3|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_TYPE_TRUE_DEPTH
函数:CAMERA_TYPE_TRUE_DEPTH = 4|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_CONNECTION_USB_PLUGIN
函数:CAMERA_CONNECTION_USB_PLUGIN = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:CAMERA_CONNECTION_REMOTE
函数:CAMERA_CONNECTION_REMOTE = 2|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraDevice|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraDevice
方法名 or 属性名:cameraId|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraDevice
方法名 or 属性名:cameraPosition|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraDevice
方法名 or 属性名:cameraType|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraDevice
方法名 or 属性名:connectionType|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Point|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Point
方法名 or 属性名:x|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Point
方法名 or 属性名:y|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:open|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:open|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:close|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:close|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:on_error
函数:on(type: 'error', camera: CameraDevice, callback: ErrorCallback): void;|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraInputErrorCode
方法名 or 属性名:ERROR_NO_PERMISSION|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraInputErrorCode
方法名 or 属性名:ERROR_DEVICE_PREEMPTED|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraInputErrorCode
方法名 or 属性名:ERROR_DEVICE_DISCONNECTED|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraInputErrorCode
方法名 or 属性名:ERROR_DEVICE_IN_USE|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraInputErrorCode
方法名 or 属性名:ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraFormat|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraFormat
方法名 or 属性名:CAMERA_FORMAT_RGBA_8888|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraFormat
方法名 or 属性名:CAMERA_FORMAT_YUV_420_SP|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraFormat
方法名 or 属性名:CAMERA_FORMAT_JPEG|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FLASH_MODE_OPEN
函数:FLASH_MODE_OPEN = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FLASH_MODE_AUTO
函数:FLASH_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FLASH_MODE_ALWAYS_OPEN
函数:FLASH_MODE_ALWAYS_OPEN = 3|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: ExposureMode|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: ExposureMode
方法名 or 属性名:EXPOSURE_MODE_LOCKED|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: ExposureMode
方法名 or 属性名:EXPOSURE_MODE_AUTO|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: ExposureMode
方法名 or 属性名:EXPOSURE_MODE_CONTINUOUS_AUTO|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FOCUS_MODE_CONTINUOUS_AUTO
函数:FOCUS_MODE_CONTINUOUS_AUTO = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FOCUS_MODE_AUTO
函数:FOCUS_MODE_AUTO = 2|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FOCUS_MODE_LOCKED
函数:FOCUS_MODE_LOCKED = 3|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FOCUS_STATE_FOCUSED
函数:FOCUS_STATE_FOCUSED = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:FOCUS_STATE_UNFOCUSED
函数:FOCUS_STATE_UNFOCUSED = 2|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法名 or 属性名:OFF|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法名 or 属性名:LOW|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法名 or 属性名:MIDDLE|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法名 or 属性名:HIGH|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoStabilizationMode
方法名 or 属性名:AUTO|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:addOutput
函数:addOutput(cameraOutput: CameraOutput, callback: AsyncCallback): void;|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:addOutput
函数:addOutput(cameraOutput: CameraOutput): Promise;|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:removeOutput
函数:removeOutput(cameraOutput: CameraOutput, callback: AsyncCallback): void;|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:removeOutput
函数:removeOutput(cameraOutput: CameraOutput): Promise;|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:hasFlash|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:hasFlash|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isFlashModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isFlashModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFlashMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFlashMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFlashMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFlashMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isExposureModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isExposureModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setExposureMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setExposureMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getMeteringPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getMeteringPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setMeteringPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setMeteringPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureBiasRange|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureBiasRange|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setExposureBias|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setExposureBias|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureValue|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getExposureValue|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isFocusModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isFocusModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocusMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocusMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFocusMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFocusMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFocusPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setFocusPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocusPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocusPoint|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocalLength|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getFocalLength|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getZoomRatioRange|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getZoomRatioRange|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getZoomRatio|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getZoomRatio|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setZoomRatio|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setZoomRatio|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isVideoStabilizationModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:isVideoStabilizationModeSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getActiveVideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:getActiveVideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setVideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:setVideoStabilizationMode|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:CaptureSession
方法名 or 属性名:on_focusStateChange|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CaptureSessionErrorCode
方法名 or 属性名:ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CaptureSessionErrorCode
方法名 or 属性名:ERROR_TIMEOUT|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutput
方法名 or 属性名:release|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: CameraOutput
方法名 or 属性名:release|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:start|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:start|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:stop|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:stop|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Location|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Location
方法名 or 属性名:latitude|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Location
方法名 or 属性名:longitude|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Location
方法名 or 属性名:altitude|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:QUALITY_LEVEL_MEDIUM
函数:QUALITY_LEVEL_MEDIUM = 1|@ohos.multimedia.camera.d.ts| +|新增||方法名 or 属性名:QUALITY_LEVEL_LOW
函数:QUALITY_LEVEL_LOW = 2|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法名 or 属性名:location|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: PhotoCaptureSetting
方法名 or 属性名:mirror|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PhotoOutput
方法名 or 属性名:isMirrorSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名:ohos.multimedia.camera
类名:PhotoOutput
方法名 or 属性名:isMirrorSupported|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: PhotoOutputErrorCode
方法名 or 属性名:ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: PhotoOutputErrorCode
方法名 or 属性名:ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: PhotoOutputErrorCode
方法名 or 属性名:ERROR_TIMEOUT|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: VideoOutputErrorCode
方法名 or 属性名:ERROR_DRIVER_ERROR|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObjectType|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObjectType
方法名 or 属性名:FACE_DETECTION|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Rect|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Rect
方法名 or 属性名:topLeftX|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Rect
方法名 or 属性名:topLeftY|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Rect
方法名 or 属性名:width|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: Rect
方法名 or 属性名:height|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getType|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getType|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getTimestamp|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getTimestamp|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getBoundingBox|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataObject
方法名 or 属性名:getBoundingBox|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataFaceObject|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:start|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:start|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:stop|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:stop|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:on_metadataObjectsAvailable|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutput
方法名 or 属性名:on_error|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutputErrorCode|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutputErrorCode
方法名 or 属性名:ERROR_UNKNOWN|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutputErrorCode
方法名 or 属性名:ERROR_INSUFFICIENT_RESOURCES|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutputError|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.camera
类名: MetadataOutputError
方法名 or 属性名:code|@ohos.multimedia.camera.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PixelMapFormat
方法名 or 属性名: RGB_888|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PixelMapFormat
方法名 or 属性名: ALPHA_8|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PixelMapFormat
方法名 or 属性名: RGBA_F16|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PixelMapFormat
方法名 or 属性名: NV21|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PixelMapFormat
方法名 or 属性名: NV12|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PropertyKey
方法名 or 属性名: DATE_TIME_ORIGINAL|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PropertyKey
方法名 or 属性名: EXPOSURE_TIME|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PropertyKey
方法名 or 属性名: SCENE_TYPE|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PropertyKey
方法名 or 属性名: ISO_SPEED_RATINGS|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PropertyKey
方法名 or 属性名: F_NUMBER|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageInfo
方法名 or 属性名: density|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: PackingOption
方法名 or 属性名: bufferSize|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: DecodingOptions
方法名 or 属性名: fitDensity|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: image
方法名 or 属性名: createImageCreator|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: capacity|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: format|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: dequeueImage|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: dequeueImage|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: queueImage|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: queueImage|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: on_imageRelease|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: release|@ohos.multimedia.image.d.ts| +|新增||模块名: ohos.multimedia.image
类名: ImageCreator
方法名 or 属性名: release|@ohos.multimedia.image.d.ts| +|新增||方法名 or 属性名:audioSourceType
函数:audioSourceType?: AudioSourceType;|@ohos.multimedia.media.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: FocusType||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: FocusType
方法名 or 属性名:FOCUS_TYPE_RECORDING||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:getVolumeGroups||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:getVolumeGroups||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:getGroupManager||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:getGroupManager||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:requestIndependentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:requestIndependentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:abandonIndependentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:abandonIndependentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:on_independentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioManager
方法名 or 属性名:off_independentInterrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:setVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:setVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getMinVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getMinVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getMaxVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:getMaxVolume||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:mute||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:mute||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:isMute||@ohos.multimedia.audio.d.ts| +|删除|模块名: ohos.multimedia.audio
类名: AudioGroupManager
方法名 or 属性名:isMute||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.audio
类名:AudioRenderer
方法名 or 属性名:on_interrupt||@ohos.multimedia.audio.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getCameras||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraManager
方法名 or 属性名:getCameras||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: Camera||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: Camera
方法名 or 属性名:cameraId||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: Camera
方法名 or 属性名:cameraPosition||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: Camera
方法名 or 属性名:cameraType||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: Camera
方法名 or 属性名:connectionType||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getCameraId||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getCameraId||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:hasFlash||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:hasFlash||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:isFlashModeSupported||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:isFlashModeSupported||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getFlashMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getFlashMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setFlashMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setFlashMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:isFocusModeSupported||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:isFocusModeSupported||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getFocusMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getFocusMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setFocusMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setFocusMode||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getZoomRatioRange||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getZoomRatioRange||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getZoomRatio||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:getZoomRatio||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setZoomRatio||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:setZoomRatio||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:CameraInput
方法名 or 属性名:on_focusStateChange||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createCaptureSession||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createCaptureSession||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createPreviewOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createPreviewOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:PreviewOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createPhotoOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createPhotoOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:PhotoOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名:ohos.multimedia.camera
类名:PhotoOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createVideoOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: camera
方法名 or 属性名:createVideoOutput||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: VideoOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.camera
类名: VideoOutput
方法名 or 属性名:release||@ohos.multimedia.camera.d.ts| +|删除|模块名: ohos.multimedia.media
类名: VideoPlayer
方法名 or 属性名:selectBitrate||@ohos.multimedia.media.d.ts| +|删除|模块名: ohos.multimedia.media
类名: VideoPlayer
方法名 or 属性名:selectBitrate||@ohos.multimedia.media.d.ts| +|删除|模块名: ohos.multimedia.media
类名: VideoPlayer
方法名 or 属性名:on_availableBitratesCollect||@ohos.multimedia.media.d.ts| +|废弃版本有变化|类名:ActiveDeviceType
废弃版本:|类名:ActiveDeviceType
废弃版本:9
代替接口:ohos.multimedia.audio.CommunicationDeviceType |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:SPEAKER
废弃版本:|方法名 or 属性名:SPEAKER
废弃版本:9
代替接口:ohos.multimedia.audio.CommunicationDeviceType.SPEAKER |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:BLUETOOTH_SCO
废弃版本:|方法名 or 属性名:BLUETOOTH_SCO
废弃版本:9
代替接口:ohos.multimedia.audio.CommunicationDeviceType |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptActionType
废弃版本:|类名:InterruptActionType
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_ACTIVATED
废弃版本:|方法名 or 属性名:TYPE_ACTIVATED
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_INTERRUPT
废弃版本:|方法名 or 属性名:TYPE_INTERRUPT
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setVolume
废弃版本:|方法名 or 属性名:setVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setVolume
废弃版本:|方法名 or 属性名:setVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getVolume
废弃版本:|方法名 or 属性名:getVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getVolume
废弃版本:|方法名 or 属性名:getVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getMinVolume
废弃版本:|方法名 or 属性名:getMinVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getMinVolume
废弃版本:|方法名 or 属性名:getMinVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getMaxVolume
废弃版本:|方法名 or 属性名:getMaxVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getMaxVolume
废弃版本:|方法名 or 属性名:getMaxVolume
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getDevices
废弃版本:|方法名 or 属性名:getDevices
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getDevices
废弃版本:|方法名 or 属性名:getDevices
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:mute
废弃版本:|方法名 or 属性名:mute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:mute
废弃版本:|方法名 or 属性名:mute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isMute
废弃版本:|方法名 or 属性名:isMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isMute
废弃版本:|方法名 or 属性名:isMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isActive
废弃版本:|方法名 or 属性名:isActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isActive
废弃版本:|方法名 or 属性名:isActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioStreamManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setMicrophoneMute
废弃版本:|方法名 or 属性名:setMicrophoneMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setMicrophoneMute
废弃版本:|方法名 or 属性名:setMicrophoneMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isMicrophoneMute
废弃版本:|方法名 or 属性名:isMicrophoneMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isMicrophoneMute
废弃版本:|方法名 or 属性名:isMicrophoneMute
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setRingerMode
废弃版本:|方法名 or 属性名:setRingerMode
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setRingerMode
废弃版本:|方法名 or 属性名:setRingerMode
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getRingerMode
废弃版本:|方法名 or 属性名:getRingerMode
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:getRingerMode
废弃版本:|方法名 or 属性名:getRingerMode
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setDeviceActive
废弃版本:|方法名 or 属性名:setDeviceActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:setDeviceActive
废弃版本:|方法名 or 属性名:setDeviceActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isDeviceActive
废弃版本:|方法名 or 属性名:isDeviceActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:isDeviceActive
废弃版本:|方法名 or 属性名:isDeviceActive
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:on_volumeChange
废弃版本:|方法名 or 属性名:on_volumeChange
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:on_ringerModeChange
废弃版本:|方法名 or 属性名:on_ringerModeChange
废弃版本:9
代替接口:ohos.multimedia.audio.AudioVolumeGroupManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:on_deviceChange
废弃版本:|方法名 or 属性名:on_deviceChange
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:off_deviceChange
废弃版本:|方法名 or 属性名:off_deviceChange
废弃版本:9
代替接口:ohos.multimedia.audio.AudioRoutingManager|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:InterruptAction
废弃版本:|类名:InterruptAction
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:actionType
废弃版本:|方法名 or 属性名:actionType
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:hint
废弃版本:|方法名 or 属性名:hint
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:activated
废弃版本:|方法名 or 属性名:activated
废弃版本:9
代替接口:ohos.multimedia.audio.InterruptEvent |@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:AudioInterrupt
废弃版本:|类名:AudioInterrupt
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:streamUsage
废弃版本:|方法名 or 属性名:streamUsage
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:contentType
废弃版本:|方法名 or 属性名:contentType
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|方法名 or 属性名:pauseWhenDucked
废弃版本:|方法名 or 属性名:pauseWhenDucked
废弃版本:9|@ohos.multimedia.audio.d.ts| +|废弃版本有变化|类名:mediaLibrary
废弃版本:9|类名:mediaLibrary
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getMediaLibrary
废弃版本:9|方法名 or 属性名:getMediaLibrary
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getMediaLibrary
废弃版本:9|方法名 or 属性名:getMediaLibrary
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaType
废弃版本:9|类名:MediaType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:FILE
废弃版本:9|方法名 or 属性名:FILE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:IMAGE
废弃版本:9|方法名 or 属性名:IMAGE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:VIDEO
废弃版本:9|方法名 or 属性名:VIDEO
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIO
废弃版本:9|方法名 or 属性名:AUDIO
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileAsset
废弃版本:9|类名:FileAsset
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:9|方法名 or 属性名:id
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:9|方法名 or 属性名:uri
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:mimeType
废弃版本:9|方法名 or 属性名:mimeType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:mediaType
废弃版本:9|方法名 or 属性名:mediaType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:displayName
废弃版本:9|方法名 or 属性名:displayName
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:title
废弃版本:9|方法名 or 属性名:title
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:relativePath
废弃版本:9|方法名 or 属性名:relativePath
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:parent
废弃版本:9|方法名 or 属性名:parent
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:size
废弃版本:9|方法名 or 属性名:size
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:dateAdded
废弃版本:9|方法名 or 属性名:dateAdded
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:dateModified
废弃版本:9|方法名 or 属性名:dateModified
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:dateTaken
废弃版本:9|方法名 or 属性名:dateTaken
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:artist
废弃版本:9|方法名 or 属性名:artist
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:audioAlbum
废弃版本:9|方法名 or 属性名:audioAlbum
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:width
废弃版本:9|方法名 or 属性名:width
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:height
废弃版本:9|方法名 or 属性名:height
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:orientation
废弃版本:9|方法名 or 属性名:orientation
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:duration
废弃版本:9|方法名 or 属性名:duration
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumId
废弃版本:9|方法名 or 属性名:albumId
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumUri
废弃版本:9|方法名 or 属性名:albumUri
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumName
废弃版本:9|方法名 or 属性名:albumName
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isDirectory
废弃版本:9|方法名 or 属性名:isDirectory
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isDirectory
废弃版本:9|方法名 or 属性名:isDirectory
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:commitModify
废弃版本:9|方法名 or 属性名:commitModify
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:commitModify
废弃版本:9|方法名 or 属性名:commitModify
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:open
废弃版本:9|方法名 or 属性名:open
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:open
废弃版本:9|方法名 or 属性名:open
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:close
废弃版本:9|方法名 or 属性名:close
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:close
废弃版本:9|方法名 or 属性名:close
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getThumbnail
废弃版本:9|方法名 or 属性名:getThumbnail
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getThumbnail
废弃版本:9|方法名 or 属性名:getThumbnail
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getThumbnail
废弃版本:9|方法名 or 属性名:getThumbnail
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:favorite
废弃版本:9|方法名 or 属性名:favorite
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:favorite
废弃版本:9|方法名 or 属性名:favorite
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isFavorite
废弃版本:9|方法名 or 属性名:isFavorite
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isFavorite
废弃版本:9|方法名 or 属性名:isFavorite
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:trash
废弃版本:9|方法名 or 属性名:trash
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:trash
废弃版本:9|方法名 or 属性名:trash
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isTrash
废弃版本:9|方法名 or 属性名:isTrash
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isTrash
废弃版本:9|方法名 or 属性名:isTrash
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FileKey
废弃版本:9|类名:FileKey
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:ID
废弃版本:9|方法名 or 属性名:ID
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:RELATIVE_PATH
废弃版本:9|方法名 or 属性名:RELATIVE_PATH
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DISPLAY_NAME
废弃版本:9|方法名 or 属性名:DISPLAY_NAME
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:PARENT
废弃版本:9|方法名 or 属性名:PARENT
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:MIME_TYPE
废弃版本:9|方法名 or 属性名:MIME_TYPE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:MEDIA_TYPE
废弃版本:9|方法名 or 属性名:MEDIA_TYPE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:SIZE
废弃版本:9|方法名 or 属性名:SIZE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DATE_ADDED
废弃版本:9|方法名 or 属性名:DATE_ADDED
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DATE_MODIFIED
废弃版本:9|方法名 or 属性名:DATE_MODIFIED
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DATE_TAKEN
废弃版本:9|方法名 or 属性名:DATE_TAKEN
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TITLE
废弃版本:9|方法名 or 属性名:TITLE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:ARTIST
废弃版本:9|方法名 or 属性名:ARTIST
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIOALBUM
废弃版本:9|方法名 or 属性名:AUDIOALBUM
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DURATION
废弃版本:9|方法名 or 属性名:DURATION
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:WIDTH
废弃版本:9|方法名 or 属性名:WIDTH
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:HEIGHT
废弃版本:9|方法名 or 属性名:HEIGHT
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:ORIENTATION
废弃版本:9|方法名 or 属性名:ORIENTATION
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:ALBUM_ID
废弃版本:9|方法名 or 属性名:ALBUM_ID
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:ALBUM_NAME
废弃版本:9|方法名 or 属性名:ALBUM_NAME
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaFetchOptions
废弃版本:9|类名:MediaFetchOptions
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:selections
废弃版本:9|方法名 or 属性名:selections
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:selectionArgs
废弃版本:9|方法名 or 属性名:selectionArgs
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:order
废弃版本:9|方法名 or 属性名:order
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:uri
废弃版本:9|方法名 or 属性名:uri
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:networkId
废弃版本:9|方法名 or 属性名:networkId
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:extendArgs
废弃版本:9|方法名 or 属性名:extendArgs
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:FetchFileResult
废弃版本:9|类名:FetchFileResult
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getCount
废弃版本:9|方法名 or 属性名:getCount
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isAfterLast
废弃版本:9|方法名 or 属性名:isAfterLast
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:close
废弃版本:9|方法名 or 属性名:close
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFirstObject
废弃版本:9|方法名 or 属性名:getFirstObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFirstObject
废弃版本:9|方法名 or 属性名:getFirstObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getNextObject
废弃版本:9|方法名 or 属性名:getNextObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getNextObject
废弃版本:9|方法名 or 属性名:getNextObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getLastObject
废弃版本:9|方法名 or 属性名:getLastObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getLastObject
废弃版本:9|方法名 or 属性名:getLastObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getPositionObject
废弃版本:9|方法名 or 属性名:getPositionObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getPositionObject
废弃版本:9|方法名 or 属性名:getPositionObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllObject
废弃版本:9|方法名 or 属性名:getAllObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllObject
废弃版本:9|方法名 or 属性名:getAllObject
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Album
废弃版本:9|类名:Album
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumId
废弃版本:9|方法名 or 属性名:albumId
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumName
废弃版本:9|方法名 or 属性名:albumName
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:albumUri
废弃版本:9|方法名 or 属性名:albumUri
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:dateModified
废弃版本:9|方法名 or 属性名:dateModified
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:count
废弃版本:9|方法名 or 属性名:count
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:relativePath
废弃版本:9|方法名 or 属性名:relativePath
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:coverUri
废弃版本:9|方法名 or 属性名:coverUri
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:commitModify
废弃版本:9|方法名 or 属性名:commitModify
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:commitModify
废弃版本:9|方法名 or 属性名:commitModify
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileAssets
废弃版本:9|方法名 or 属性名:getFileAssets
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileAssets
废弃版本:9|方法名 or 属性名:getFileAssets
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileAssets
废弃版本:9|方法名 or 属性名:getFileAssets
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DirectoryType
废弃版本:9|类名:DirectoryType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_CAMERA
废弃版本:9|方法名 or 属性名:DIR_CAMERA
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_VIDEO
废弃版本:9|方法名 or 属性名:DIR_VIDEO
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_IMAGE
废弃版本:9|方法名 or 属性名:DIR_IMAGE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_AUDIO
废弃版本:9|方法名 or 属性名:DIR_AUDIO
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_DOCUMENTS
废弃版本:9|方法名 or 属性名:DIR_DOCUMENTS
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:DIR_DOWNLOAD
废弃版本:9|方法名 or 属性名:DIR_DOWNLOAD
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:MediaLibrary
废弃版本:9|类名:MediaLibrary
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getPublicDirectory
废弃版本:9|方法名 or 属性名:getPublicDirectory
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getPublicDirectory
废弃版本:9|方法名 or 属性名:getPublicDirectory
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileAssets
废弃版本:9|方法名 or 属性名:getFileAssets
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileAssets
废弃版本:9|方法名 or 属性名:getFileAssets
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_deviceChange
废弃版本:9|方法名 or 属性名:on_deviceChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_albumChange
废弃版本:9|方法名 or 属性名:on_albumChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_imageChange
废弃版本:9|方法名 or 属性名:on_imageChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_audioChange
废弃版本:9|方法名 or 属性名:on_audioChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_videoChange
废弃版本:9|方法名 or 属性名:on_videoChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_fileChange
废弃版本:9|方法名 or 属性名:on_fileChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:on_remoteFileChange
废弃版本:9|方法名 or 属性名:on_remoteFileChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_deviceChange
废弃版本:9|方法名 or 属性名:off_deviceChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_albumChange
废弃版本:9|方法名 or 属性名:off_albumChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_imageChange
废弃版本:9|方法名 or 属性名:off_imageChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_audioChange
废弃版本:9|方法名 or 属性名:off_audioChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_videoChange
废弃版本:9|方法名 or 属性名:off_videoChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_fileChange
废弃版本:9|方法名 or 属性名:off_fileChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:off_remoteFileChange
废弃版本:9|方法名 or 属性名:off_remoteFileChange
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:createAsset
废弃版本:9|方法名 or 属性名:createAsset
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:createAsset
废弃版本:9|方法名 or 属性名:createAsset
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteAsset
废弃版本:9|方法名 or 属性名:deleteAsset
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteAsset
废弃版本:9|方法名 or 属性名:deleteAsset
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAlbums
废弃版本:9|方法名 or 属性名:getAlbums
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAlbums
废弃版本:9|方法名 or 属性名:getAlbums
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getActivePeers
废弃版本:9|方法名 or 属性名:getActivePeers
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getActivePeers
废弃版本:9|方法名 or 属性名:getActivePeers
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllPeers
废弃版本:9|方法名 or 属性名:getAllPeers
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllPeers
废弃版本:9|方法名 or 属性名:getAllPeers
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:release
废弃版本:9|方法名 or 属性名:release
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:release
废弃版本:9|方法名 or 属性名:release
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:Size
废弃版本:9|类名:Size
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:width
废弃版本:9|方法名 or 属性名:width
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:height
废弃版本:9|方法名 or 属性名:height
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:PeerInfo
废弃版本:9|类名:PeerInfo
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceName
废弃版本:9|方法名 or 属性名:deviceName
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:networkId
废弃版本:9|方法名 or 属性名:networkId
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:deviceType
废弃版本:9|方法名 or 属性名:deviceType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:isOnline
废弃版本:9|方法名 or 属性名:isOnline
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|类名:DeviceType
废弃版本:9|类名:DeviceType
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_UNKNOWN
废弃版本:9|方法名 or 属性名:TYPE_UNKNOWN
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_LAPTOP
废弃版本:9|方法名 or 属性名:TYPE_LAPTOP
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_PHONE
废弃版本:9|方法名 or 属性名:TYPE_PHONE
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_TABLET
废弃版本:9|方法名 or 属性名:TYPE_TABLET
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_WATCH
废弃版本:9|方法名 or 属性名:TYPE_WATCH
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_CAR
废弃版本:9|方法名 or 属性名:TYPE_CAR
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_TV
废弃版本:9|方法名 or 属性名:TYPE_TV
废弃版本:|@ohos.multimedia.mediaLibrary.d.ts| +|新增(错误码)||方法名 or 属性名:on_deviceChange
错误码内容:401,6800101|@ohos.multimedia.audio.d.ts| +|新增(错误码)||方法名 or 属性名:off_deviceChange
错误码内容:401,6800101|@ohos.multimedia.audio.d.ts| +|新增(错误码)||方法名 or 属性名:on_audioRendererChange
错误码内容:401,6800101|@ohos.multimedia.audio.d.ts| +|新增(错误码)||方法名 or 属性名:on_audioCapturerChange
错误码内容:401,6800101|@ohos.multimedia.audio.d.ts| +|新增(错误码)||方法名 or 属性名:createVideoRecorder
错误码内容:5400101|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:createVideoRecorder
错误码内容:5400101|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:prepare
错误码内容:201,401,5400102,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:prepare
错误码内容:201,401,5400102,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:getInputSurface
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:getInputSurface
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:start
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:start
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:pause
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:pause
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:resume
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:resume
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:stop
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:stop
错误码内容:5400102,5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:release
错误码内容:5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:release
错误码内容:5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:reset
错误码内容:5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:reset
错误码内容:5400103,5400105|@ohos.multimedia.media.d.ts| +|新增(错误码)||方法名 or 属性名:on_error
错误码内容:5400103,5400105|@ohos.multimedia.media.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-resource-scheduler.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-resource-scheduler.md new file mode 100644 index 0000000000000000000000000000000000000000..bfad2eae5b602715ddeb24bed0881ecf07eed1fc --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-resource-scheduler.md @@ -0,0 +1,344 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo
方法名 or 属性名: requestId|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: DelaySuspendInfo
方法名 or 属性名: actualDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: cancelSuspendDelay|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: getRemainingDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: getRemainingDelayTime|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: requestSuspendDelay|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: startBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: startBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: stopBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: stopBackgroundRunning|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: applyEfficiencyResources|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: backgroundTaskManager
方法名 or 属性名: resetAllEfficiencyResources|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: DATA_TRANSFER|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: AUDIO_PLAYBACK|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: AUDIO_RECORDING|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: LOCATION|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: BLUETOOTH_INTERACTION|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: MULTI_DEVICE_CONNECTION|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: WIFI_INTERACTION|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: VOIP|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: BackgroundMode
方法名 or 属性名: TASK_KEEPING|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: CPU|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: COMMON_EVENT|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: TIMER|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: WORK_SCHEDULER|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: BLUETOOTH|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: GPS|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: ResourceType
方法名 or 属性名: AUDIO|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: resourceTypes|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: isApply|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: timeOut|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: isPersist|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: isProcess|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.backgroundTaskManager
类名: EfficiencyResourcesRequest
方法名 or 属性名: reason|@ohos.resourceschedule.backgroundTaskManager.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: id|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: abilityInFgTotalTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: abilityPrevAccessTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: abilityPrevSeenTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: abilitySeenTotalTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: bundleName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: fgAbilityAccessTotalTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: fgAbilityPrevAccessTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: infosBeginTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsInfo
方法名 or 属性名: infosEndTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法名 or 属性名: formName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法名 or 属性名: formDimension|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法名 or 属性名: formId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法名 or 属性名: formLastUsedTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapFormInfo
方法名 or 属性名: count|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: deviceId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: bundleName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: moduleName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: abilityName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: appLabelId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: labelId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: descriptionId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: abilityLableId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: abilityDescriptionId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: abilityIconId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: launchedCount|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: lastModuleUsedTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: HapModuleInfo
方法名 or 属性名: formRecords|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法名 or 属性名: name|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法名 or 属性名: eventId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: DeviceEventStats
方法名 or 属性名: count|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: appGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: bundleName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: indexOfLink|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: nameOfClass|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: eventOccurredTime|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleEvents
方法名 or 属性名: eventId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法名 or 属性名: appOldGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法名 or 属性名: appNewGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法名 or 属性名: userId|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法名 or 属性名: changeReason|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: AppGroupCallbackInfo
方法名 or 属性名: bundleName|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: isIdleState|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: isIdleState|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsMap|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: BundleStatsMap
方法名 or 属性名: BundleStatsMap|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleStatsInfos|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleStatsInfos|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法名 or 属性名: BY_OPTIMIZED|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法名 or 属性名: BY_DAILY|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法名 or 属性名: BY_WEEKLY|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法名 or 属性名: BY_MONTHLY|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: IntervalType
方法名 or 属性名: BY_ANNUALLY|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleStatsInfoByInterval|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleStatsInfoByInterval|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryCurrentBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryCurrentBundleEvents|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryModuleUsageRecords|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: ALIVE_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: DAILY_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: FIXED_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: RARE_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: LIMITED_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: GroupType
方法名 or 属性名: NEVER_GROUP|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: setAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: setAppGroup|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: registerAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: registerAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: unregisterAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: unregisterAppGroupCallBack|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryDeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryDeviceEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryNotificationEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.usageStatistics
类名: usageStatistics
方法名 or 属性名: queryNotificationEventStats|@ohos.resourceschedule.usageStatistics.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: workId|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: bundleName|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: abilityName|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: isPersisted|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: networkType|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: isCharging|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: chargerType|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: batteryLevel|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: batteryStatus|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: storageRequest|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: repeatCycleTime|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: isRepeat|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: repeatCount|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: isDeepIdle|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: idleWaitTime|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: WorkInfo
方法名 or 属性名: parameters|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: startWork|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: stopWork|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: getWorkStatus|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: getWorkStatus|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: obtainAllWorks|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: obtainAllWorks|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: stopAndClearWorks|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: isLastWorkTimeOut|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: workScheduler
方法名 or 属性名: isLastWorkTimeOut|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_ANY|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_MOBILE|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_WIFI|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_BLUETOOTH|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_WIFI_P2P|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: NetworkType
方法名 or 属性名: NETWORK_TYPE_ETHERNET|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: ChargingType|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法名 or 属性名: CHARGING_PLUGGED_ANY|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法名 or 属性名: CHARGING_PLUGGED_AC|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法名 or 属性名: CHARGING_PLUGGED_USB|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: ChargingType
方法名 or 属性名: CHARGING_PLUGGED_WIRELESS|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法名 or 属性名: BATTERY_STATUS_LOW|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法名 or 属性名: BATTERY_STATUS_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: BatteryStatus
方法名 or 属性名: BATTERY_STATUS_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法名 or 属性名: STORAGE_LEVEL_LOW|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法名 or 属性名: STORAGE_LEVEL_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|新增||模块名: ohos.resourceschedule.workScheduler
类名: StorageRequest
方法名 or 属性名: STORAGE_LEVEL_LOW_OR_OKAY|@ohos.resourceschedule.workScheduler.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo
方法名 or 属性名:formName||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo
方法名 or 属性名:formDimension||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo
方法名 or 属性名:formId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo
方法名 or 属性名:formLastUsedTime||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveFormInfo
方法名 or 属性名:count||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:deviceId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:bundleName||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:moduleName||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:abilityName||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:appLabelId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:labelId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:descriptionId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:abilityLableId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:abilityDescriptionId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:abilityIconId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:launchedCount||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:lastModuleUsedTime||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveModuleInfo
方法名 or 属性名:formRecords||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveEventState||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveEventState
方法名 or 属性名:name||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveEventState
方法名 or 属性名:eventId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveEventState
方法名 or 属性名:count||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo
方法名 or 属性名:appUsageOldGroup||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo
方法名 or 属性名:appUsageNewGroup||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo
方法名 or 属性名:userId||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo
方法名 or 属性名:changeReason||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: BundleActiveGroupCallbackInfo
方法名 or 属性名:bundleName||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:getRecentlyUsedModules||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:getRecentlyUsedModules||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:getRecentlyUsedModules||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_ALIVE||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_DAILY||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_FIXED||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_RARE||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_LIMIT||@ohos.bundleState.d.ts| +|删除|模块名: ohos.bundleState
类名: GroupType
方法名 or 属性名:ACTIVE_GROUP_NEVER||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:setBundleGroup||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:setBundleGroup||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:registerGroupCallBack||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:registerGroupCallBack||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:unRegisterGroupCallBack||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:unRegisterGroupCallBack||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:queryBundleActiveEventStates||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:queryBundleActiveEventStates||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:queryAppNotificationNumber||@ohos.bundleState.d.ts| +|删除|模块名:ohos.bundleState
类名:bundleState
方法名 or 属性名:queryAppNotificationNumber||@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:startBackgroundRunning
废弃版本:|方法名 or 属性名:startBackgroundRunning
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelBackgroundRunning
废弃版本:|方法名 or 属性名:cancelBackgroundRunning
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.ability.particleAbility.d.ts| +|废弃版本有变化|类名:backgroundTaskManager
废弃版本:|类名:backgroundTaskManager
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:DelaySuspendInfo
废弃版本:|类名:DelaySuspendInfo
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.DelaySuspendInfo |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:requestId
废弃版本:|方法名 or 属性名:requestId
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.DelaySuspendInfo |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:actualDelayTime
废弃版本:|方法名 or 属性名:actualDelayTime
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.DelaySuspendInfo |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelSuspendDelay
废弃版本:|方法名 or 属性名:cancelSuspendDelay
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.cancelSuspendDelay |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:getRemainingDelayTime
废弃版本:|方法名 or 属性名:getRemainingDelayTime
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.getRemainingDelayTime |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:requestSuspendDelay
废弃版本:|方法名 or 属性名:requestSuspendDelay
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.requestSuspendDelay |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:startBackgroundRunning
废弃版本:|方法名 or 属性名:startBackgroundRunning
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.startBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:stopBackgroundRunning
废弃版本:|方法名 or 属性名:stopBackgroundRunning
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.stopBackgroundRunning |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:applyEfficiencyResources
废弃版本:|方法名 or 属性名:applyEfficiencyResources
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.applyEfficiencyResources |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:resetAllEfficiencyResources
废弃版本:|方法名 or 属性名:resetAllEfficiencyResources
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.resetAllEfficiencyResources |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:BackgroundMode
废弃版本:|类名:BackgroundMode
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:DATA_TRANSFER
废弃版本:|方法名 or 属性名:DATA_TRANSFER
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIO_PLAYBACK
废弃版本:|方法名 or 属性名:AUDIO_PLAYBACK
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIO_RECORDING
废弃版本:|方法名 or 属性名:AUDIO_RECORDING
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:LOCATION
废弃版本:|方法名 or 属性名:LOCATION
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:BLUETOOTH_INTERACTION
废弃版本:|方法名 or 属性名:BLUETOOTH_INTERACTION
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:MULTI_DEVICE_CONNECTION
废弃版本:|方法名 or 属性名:MULTI_DEVICE_CONNECTION
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:WIFI_INTERACTION
废弃版本:|方法名 or 属性名:WIFI_INTERACTION
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:VOIP
废弃版本:|方法名 or 属性名:VOIP
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:TASK_KEEPING
废弃版本:|方法名 or 属性名:TASK_KEEPING
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.BackgroundMode |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:ResourceType
废弃版本:|类名:ResourceType
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:CPU
废弃版本:|方法名 or 属性名:CPU
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:COMMON_EVENT
废弃版本:|方法名 or 属性名:COMMON_EVENT
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:TIMER
废弃版本:|方法名 or 属性名:TIMER
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:WORK_SCHEDULER
废弃版本:|方法名 or 属性名:WORK_SCHEDULER
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:BLUETOOTH
废弃版本:|方法名 or 属性名:BLUETOOTH
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:GPS
废弃版本:|方法名 or 属性名:GPS
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIO
废弃版本:|方法名 or 属性名:AUDIO
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.ResourceType |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:EfficiencyResourcesRequest
废弃版本:|类名:EfficiencyResourcesRequest
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:resourceTypes
废弃版本:|方法名 or 属性名:resourceTypes
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:isApply
废弃版本:|方法名 or 属性名:isApply
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:timeOut
废弃版本:|方法名 or 属性名:timeOut
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:isPersist
废弃版本:|方法名 or 属性名:isPersist
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:isProcess
废弃版本:|方法名 or 属性名:isProcess
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|方法名 or 属性名:reason
废弃版本:|方法名 or 属性名:reason
废弃版本:9
代替接口:ohos.resourceschedule.backgroundTaskManager.EfficiencyResourcesRequest |@ohos.backgroundTaskManager.d.ts| +|废弃版本有变化|类名:BundleStateInfo
废弃版本:|类名:BundleStateInfo
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityInFgTotalTime
废弃版本:|方法名 or 属性名:abilityInFgTotalTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityPrevAccessTime
废弃版本:|方法名 or 属性名:abilityPrevAccessTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityPrevSeenTime
废弃版本:|方法名 or 属性名:abilityPrevSeenTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:abilitySeenTotalTime
废弃版本:|方法名 or 属性名:abilitySeenTotalTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:fgAbilityAccessTotalTime
废弃版本:|方法名 or 属性名:fgAbilityAccessTotalTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:fgAbilityPrevAccessTime
废弃版本:|方法名 or 属性名:fgAbilityPrevAccessTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:infosBeginTime
废弃版本:|方法名 or 属性名:infosBeginTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:infosEndTime
废弃版本:|方法名 or 属性名:infosEndTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:merge
废弃版本:|方法名 or 属性名:merge
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsInfo |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:BundleActiveState
废弃版本:|类名:BundleActiveState
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:appUsagePriorityGroup
废弃版本:|方法名 or 属性名:appUsagePriorityGroup
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:indexOfLink
废弃版本:|方法名 or 属性名:indexOfLink
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:nameOfClass
废弃版本:|方法名 or 属性名:nameOfClass
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:stateOccurredTime
废弃版本:|方法名 or 属性名:stateOccurredTime
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:stateType
废弃版本:|方法名 or 属性名:stateType
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:isIdleState
废弃版本:|方法名 or 属性名:isIdleState
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.isIdleState |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:queryAppUsagePriorityGroup
废弃版本:|方法名 or 属性名:queryAppUsagePriorityGroup
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryAppGroup |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:BundleActiveInfoResponse
废弃版本:|类名:BundleActiveInfoResponse
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsMap |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BundleActiveInfoResponse
废弃版本:|方法名 or 属性名:BundleActiveInfoResponse
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.BundleStatsMap |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:queryBundleStateInfos
废弃版本:|方法名 or 属性名:queryBundleStateInfos
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfos |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:IntervalType
废弃版本:|类名:IntervalType
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BY_OPTIMIZED
废弃版本:|方法名 or 属性名:BY_OPTIMIZED
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BY_DAILY
废弃版本:|方法名 or 属性名:BY_DAILY
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BY_WEEKLY
废弃版本:|方法名 or 属性名:BY_WEEKLY
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BY_MONTHLY
废弃版本:|方法名 or 属性名:BY_MONTHLY
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:BY_ANNUALLY
废弃版本:|方法名 or 属性名:BY_ANNUALLY
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.IntervalType |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:queryBundleStateInfoByInterval
废弃版本:|方法名 or 属性名:queryBundleStateInfoByInterval
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleStatsInfoByInterval |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:queryBundleActiveStates
废弃版本:|方法名 or 属性名:queryBundleActiveStates
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryBundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|方法名 or 属性名:queryCurrentBundleActiveStates
废弃版本:|方法名 or 属性名:queryCurrentBundleActiveStates
废弃版本:9
代替接口:ohos.resourceschedule.usageStatistics.queryCurrentBundleEvents |@ohos.bundleState.d.ts| +|废弃版本有变化|类名:workScheduler
废弃版本:|类名:workScheduler
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler |@ohos.workScheduler.d.ts| +|废弃版本有变化|类名:WorkInfo
废弃版本:|类名:WorkInfo
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:workId
废弃版本:|方法名 or 属性名:workId
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:bundleName
废弃版本:|方法名 or 属性名:bundleName
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:abilityName
废弃版本:|方法名 or 属性名:abilityName
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:isPersisted
废弃版本:|方法名 or 属性名:isPersisted
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:networkType
废弃版本:|方法名 or 属性名:networkType
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:isCharging
废弃版本:|方法名 or 属性名:isCharging
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:chargerType
废弃版本:|方法名 or 属性名:chargerType
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:batteryLevel
废弃版本:|方法名 or 属性名:batteryLevel
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:batteryStatus
废弃版本:|方法名 or 属性名:batteryStatus
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:storageRequest
废弃版本:|方法名 or 属性名:storageRequest
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:repeatCycleTime
废弃版本:|方法名 or 属性名:repeatCycleTime
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:isRepeat
废弃版本:|方法名 or 属性名:isRepeat
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:repeatCount
废弃版本:|方法名 or 属性名:repeatCount
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:isDeepIdle
废弃版本:|方法名 or 属性名:isDeepIdle
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:idleWaitTime
废弃版本:|方法名 or 属性名:idleWaitTime
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:parameters
废弃版本:|方法名 or 属性名:parameters
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.WorkInfo |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:startWork
废弃版本:|方法名 or 属性名:startWork
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.startWork |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:stopWork
废弃版本:|方法名 or 属性名:stopWork
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.stopWork |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:getWorkStatus
废弃版本:|方法名 or 属性名:getWorkStatus
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.getWorkStatus |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:obtainAllWorks
废弃版本:|方法名 or 属性名:obtainAllWorks
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.obtainAllWorks |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:stopAndClearWorks
废弃版本:|方法名 or 属性名:stopAndClearWorks
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.stopAndClearWorks |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:isLastWorkTimeOut
废弃版本:|方法名 or 属性名:isLastWorkTimeOut
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.isLastWorkTimeOut |@ohos.workScheduler.d.ts| +|废弃版本有变化|类名:NetworkType
废弃版本:|类名:NetworkType
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_ANY
废弃版本:|方法名 or 属性名:NETWORK_TYPE_ANY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_MOBILE
废弃版本:|方法名 or 属性名:NETWORK_TYPE_MOBILE
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_WIFI
废弃版本:|方法名 or 属性名:NETWORK_TYPE_WIFI
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_BLUETOOTH
废弃版本:|方法名 or 属性名:NETWORK_TYPE_BLUETOOTH
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_WIFI_P2P
废弃版本:|方法名 or 属性名:NETWORK_TYPE_WIFI_P2P
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:NETWORK_TYPE_ETHERNET
废弃版本:|方法名 or 属性名:NETWORK_TYPE_ETHERNET
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.NetworkType |@ohos.workScheduler.d.ts| +|废弃版本有变化|类名:ChargingType
废弃版本:|类名:ChargingType
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:CHARGING_PLUGGED_ANY
废弃版本:|方法名 or 属性名:CHARGING_PLUGGED_ANY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:CHARGING_PLUGGED_AC
废弃版本:|方法名 or 属性名:CHARGING_PLUGGED_AC
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:CHARGING_PLUGGED_USB
废弃版本:|方法名 or 属性名:CHARGING_PLUGGED_USB
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:CHARGING_PLUGGED_WIRELESS
废弃版本:|方法名 or 属性名:CHARGING_PLUGGED_WIRELESS
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.ChargingType |@ohos.workScheduler.d.ts| +|废弃版本有变化|类名:BatteryStatus
废弃版本:|类名:BatteryStatus
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.BatteryStatus |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:BATTERY_STATUS_LOW
废弃版本:|方法名 or 属性名:BATTERY_STATUS_LOW
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.BatteryStatus |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:BATTERY_STATUS_OKAY
废弃版本:|方法名 or 属性名:BATTERY_STATUS_OKAY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.BatteryStatus |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:BATTERY_STATUS_LOW_OR_OKAY
废弃版本:|方法名 or 属性名:BATTERY_STATUS_LOW_OR_OKAY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.BatteryStatus |@ohos.workScheduler.d.ts| +|废弃版本有变化|类名:StorageRequest
废弃版本:|类名:StorageRequest
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.StorageRequest |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:STORAGE_LEVEL_LOW
废弃版本:|方法名 or 属性名:STORAGE_LEVEL_LOW
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.StorageRequest |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:STORAGE_LEVEL_OKAY
废弃版本:|方法名 or 属性名:STORAGE_LEVEL_OKAY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.StorageRequest |@ohos.workScheduler.d.ts| +|废弃版本有变化|方法名 or 属性名:STORAGE_LEVEL_LOW_OR_OKAY
废弃版本:|方法名 or 属性名:STORAGE_LEVEL_LOW_OR_OKAY
废弃版本:9
代替接口:ohos.resourceschedule.workScheduler.StorageRequest |@ohos.workScheduler.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-security.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-security.md new file mode 100644 index 0000000000000000000000000000000000000000..5d282452930192273999b2763b84dff74a6b5b28 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-security.md @@ -0,0 +1,178 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.abilityAccessCtrl
类名:AtManager
方法名 or 属性名:checkAccessToken|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:grantUserGrantedPermission
函数:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise;|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:grantUserGrantedPermission
函数:grantUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback): void;|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:revokeUserGrantedPermission
函数:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number): Promise;|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:revokeUserGrantedPermission
函数:revokeUserGrantedPermission(tokenID: number, permissionName: Permissions, permissionFlag: number, callback: AsyncCallback): void;|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:permissionName
函数:permissionName: Permissions;|@ohos.abilityAccessCtrl.d.ts| +|新增||方法名 or 属性名:addPermissionUsedRecord
函数:function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number): Promise;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:addPermissionUsedRecord
函数:function addPermissionUsedRecord(tokenID: number, permissionName: Permissions, successCount: number, failCount: number, callback: AsyncCallback): void;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:startUsingPermission
函数:function startUsingPermission(tokenID: number, permissionName: Permissions): Promise;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:startUsingPermission
函数:function startUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback): void;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:stopUsingPermission
函数:function stopUsingPermission(tokenID: number, permissionName: Permissions): Promise;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:stopUsingPermission
函数:function stopUsingPermission(tokenID: number, permissionName: Permissions, callback: AsyncCallback): void;|@ohos.privacyManager.d.ts| +|新增||方法名 or 属性名:permissionNames
函数:permissionNames: Array;|@ohos.privacyManager.d.ts| +|新增||模块名:ohos.security.cryptoFramework
类名:Result
方法名 or 属性名:ERR_RUNTIME_ERROR|@ohos.security.cryptoFramework.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:generateKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:generateKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:deleteKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:deleteKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importWrappedKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importWrappedKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:exportKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:exportKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:getKeyItemProperties|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:getKeyItemProperties|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:isKeyItemExist|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:isKeyItemExist|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:initSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:initSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:updateSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:updateSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:updateSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:finishSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:finishSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:finishSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:abortSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:abortSession|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:attestKeyItem|@ohos.security.huks.d.ts| +|新增||模块名:ohos.security.huks
类名:huks
方法名 or 属性名:attestKeyItem|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksSessionHandle|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksSessionHandle
方法名 or 属性名:handle|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksSessionHandle
方法名 or 属性名:challenge|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksReturnResult|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksReturnResult
方法名 or 属性名:outData|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksReturnResult
方法名 or 属性名:properties|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksReturnResult
方法名 or 属性名:certChains|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_PERMISSION_FAIL|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_ILLEGAL_ARGUMENT|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_NOT_SUPPORTED_API|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_FEATURE_NOT_SUPPORTED|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_MISSING_CRYPTO_ALG_ARGUMENT|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_INVALID_CRYPTO_ALG_ARGUMENT|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_FILE_OPERATION_FAIL|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_COMMUNICATION_FAIL|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_CRYPTO_FAIL|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_KEY_AUTH_PERMANENTLY_INVALIDATED|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_KEY_AUTH_VERIFY_FAILED|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_KEY_AUTH_TIME_OUT|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_SESSION_LIMIT|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_ITEM_NOT_EXIST|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_EXTERNAL_ERROR|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_CREDENTIAL_NOT_EXIST|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_INSUFFICIENT_MEMORY|@ohos.security.huks.d.ts| +|新增||模块名: ohos.security.huks
类名: HuksExceptionErrCode
方法名 or 属性名:HUKS_ERR_CODE_CALL_SERVICE_FAILED|@ohos.security.huks.d.ts| +|删除|模块名:ohos.security.cryptoFramework
类名:Result
方法名 or 属性名:ERR_EXTERNAL_ERROR||@ohos.security.cryptoFramework.d.ts| +|删除|模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importWrappedKey||@ohos.security.huks.d.ts| +|删除|模块名:ohos.security.huks
类名:huks
方法名 or 属性名:importWrappedKey||@ohos.security.huks.d.ts| +|删除|模块名:ohos.security.huks
类名:huks
方法名 or 属性名:attestKey||@ohos.security.huks.d.ts| +|删除|模块名:ohos.security.huks
类名:huks
方法名 or 属性名:attestKey||@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:verifyAccessToken
废弃版本:|方法名 or 属性名:verifyAccessToken
废弃版本:9
代替接口:ohos.abilityAccessCtrl.AtManager|@ohos.abilityAccessCtrl.d.ts| +|废弃版本有变化|方法名 or 属性名:generateKey
废弃版本:|方法名 or 属性名:generateKey
废弃版本:9
代替接口:ohos.security.huks.generateKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:deleteKey
废弃版本:|方法名 or 属性名:deleteKey
废弃版本:9
代替接口:ohos.security.huks.deleteKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:importKey
废弃版本:|方法名 or 属性名:importKey
废弃版本:9
代替接口:ohos.security.huks.importKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:exportKey
废弃版本:|方法名 or 属性名:exportKey
废弃版本:9
代替接口:ohos.security.huks.exportKeyItem |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:getKeyProperties
废弃版本:|方法名 or 属性名:getKeyProperties
废弃版本:9
代替接口:ohos.security.huks.getKeyItemProperties |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:isKeyExist
废弃版本:|方法名 or 属性名:isKeyExist
废弃版本:9
代替接口:ohos.security.huks.isKeyItemExist |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:init
废弃版本:|方法名 or 属性名:init
废弃版本:9
代替接口:ohos.security.huks.initSession |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:update
废弃版本:|方法名 or 属性名:update
废弃版本:9
代替接口:ohos.security.huks.updateSession |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:finish
废弃版本:|方法名 or 属性名:finish
废弃版本:9
代替接口:ohos.security.huks.finishSession |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:abort
废弃版本:|方法名 or 属性名:abort
废弃版本:9
代替接口:ohos.security.huks.abortSession |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksHandle
废弃版本:|类名:HuksHandle
废弃版本:9
代替接口:ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:errorCode
废弃版本:|方法名 or 属性名:errorCode
废弃版本:9
代替接口:ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:handle
废弃版本:|方法名 or 属性名:handle
废弃版本:9
代替接口:ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:token
废弃版本:|方法名 or 属性名:token
废弃版本:9
代替接口:ohos.security.huks.HuksSessionHandle |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksResult
废弃版本:|类名:HuksResult
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:errorCode
废弃版本:|方法名 or 属性名:errorCode
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:outData
废弃版本:|方法名 or 属性名:outData
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:properties
废弃版本:|方法名 or 属性名:properties
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:certChains
废弃版本:|方法名 or 属性名:certChains
废弃版本:9
代替接口:ohos.security.huks.HuksReturnResult |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:HuksErrorCode
废弃版本:|类名:HuksErrorCode
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_SUCCESS
废弃版本:|方法名 or 属性名:HUKS_SUCCESS
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_FAILURE
废弃版本:|方法名 or 属性名:HUKS_FAILURE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_BAD_STATE
废弃版本:|方法名 or 属性名:HUKS_ERROR_BAD_STATE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_ARGUMENT
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_ARGUMENT
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_NOT_SUPPORTED
废弃版本:|方法名 or 属性名:HUKS_ERROR_NOT_SUPPORTED
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_NO_PERMISSION
废弃版本:|方法名 or 属性名:HUKS_ERROR_NO_PERMISSION
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INSUFFICIENT_DATA
废弃版本:|方法名 or 属性名:HUKS_ERROR_INSUFFICIENT_DATA
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_BUFFER_TOO_SMALL
废弃版本:|方法名 or 属性名:HUKS_ERROR_BUFFER_TOO_SMALL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INSUFFICIENT_MEMORY
废弃版本:|方法名 or 属性名:HUKS_ERROR_INSUFFICIENT_MEMORY
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_COMMUNICATION_FAILURE
废弃版本:|方法名 or 属性名:HUKS_ERROR_COMMUNICATION_FAILURE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_STORAGE_FAILURE
废弃版本:|方法名 or 属性名:HUKS_ERROR_STORAGE_FAILURE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_HARDWARE_FAILURE
废弃版本:|方法名 or 属性名:HUKS_ERROR_HARDWARE_FAILURE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_ALREADY_EXISTS
废弃版本:|方法名 or 属性名:HUKS_ERROR_ALREADY_EXISTS
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_NOT_EXIST
废弃版本:|方法名 or 属性名:HUKS_ERROR_NOT_EXIST
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_NULL_POINTER
废弃版本:|方法名 or 属性名:HUKS_ERROR_NULL_POINTER
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_FILE_SIZE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_FILE_SIZE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_READ_FILE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_READ_FILE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_PUBLIC_KEY
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_PUBLIC_KEY
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_PRIVATE_KEY
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_PRIVATE_KEY
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_INFO
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_INFO
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_HASH_NOT_EQUAL
废弃版本:|方法名 or 属性名:HUKS_ERROR_HASH_NOT_EQUAL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_MALLOC_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_MALLOC_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_WRITE_FILE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_WRITE_FILE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_REMOVE_FILE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_REMOVE_FILE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_OPEN_FILE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_OPEN_FILE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CLOSE_FILE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CLOSE_FILE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_MAKE_DIR_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_MAKE_DIR_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_FILE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_FILE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_IPC_MSG_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_IPC_MSG_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_REQUEST_OVERFLOWS
废弃版本:|方法名 or 属性名:HUKS_ERROR_REQUEST_OVERFLOWS
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_PARAM_NOT_EXIST
废弃版本:|方法名 or 属性名:HUKS_ERROR_PARAM_NOT_EXIST
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CRYPTO_ENGINE_ERROR
废弃版本:|方法名 or 属性名:HUKS_ERROR_CRYPTO_ENGINE_ERROR
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_COMMUNICATION_TIMEOUT
废弃版本:|方法名 or 属性名:HUKS_ERROR_COMMUNICATION_TIMEOUT
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_IPC_INIT_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_IPC_INIT_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_IPC_DLOPEN_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_IPC_DLOPEN_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_EFUSE_READ_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_EFUSE_READ_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_NEW_ROOT_KEY_MATERIAL_EXIST
废弃版本:|方法名 or 属性名:HUKS_ERROR_NEW_ROOT_KEY_MATERIAL_EXIST
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_UPDATE_ROOT_KEY_MATERIAL_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_UPDATE_ROOT_KEY_MATERIAL_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_VERIFICATION_FAILED
废弃版本:|方法名 or 属性名:HUKS_ERROR_VERIFICATION_FAILED
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_GET_USERIAM_SECINFO_FAILED
废弃版本:|方法名 or 属性名:HUKS_ERROR_GET_USERIAM_SECINFO_FAILED
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_GET_USERIAM_AUTHINFO_FAILED
废弃版本:|方法名 or 属性名:HUKS_ERROR_GET_USERIAM_AUTHINFO_FAILED
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_USER_AUTH_TYPE_NOT_SUPPORT
废弃版本:|方法名 or 属性名:HUKS_ERROR_USER_AUTH_TYPE_NOT_SUPPORT
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_KEY_AUTH_FAILED
废弃版本:|方法名 or 属性名:HUKS_ERROR_KEY_AUTH_FAILED
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_DEVICE_NO_CREDENTIAL
废弃版本:|方法名 or 属性名:HUKS_ERROR_DEVICE_NO_CREDENTIAL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_ALG_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_ALG_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_KEY_SIZE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_KEY_SIZE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_PADDING_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_PADDING_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_PURPOSE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_PURPOSE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_DIGEST_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_DIGEST_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_MODE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_MODE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_NONCE_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_NONCE_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_AAD_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_AAD_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_IV_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_IV_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_AE_TAG_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_AE_TAG_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_SALT_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_SALT_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_CHECK_GET_ITERATION_FAIL
废弃版本:|方法名 or 属性名:HUKS_ERROR_CHECK_GET_ITERATION_FAIL
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_ALGORITHM
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_ALGORITHM
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_SIZE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_KEY_SIZE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_PADDING
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_PADDING
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_PURPOSE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_PURPOSE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_MODE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_MODE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_DIGEST
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_DIGEST
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_SIGNATURE_SIZE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_SIGNATURE_SIZE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_IV
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_IV
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_AAD
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_AAD
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_NONCE
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_NONCE
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_AE_TAG
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_AE_TAG
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_SALT
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_SALT
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_ITERATION
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_ITERATION
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_OPERATION
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_OPERATION
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_WRAPPED_FORMAT
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_WRAPPED_FORMAT
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INVALID_USAGE_OF_KEY
废弃版本:|方法名 or 属性名:HUKS_ERROR_INVALID_USAGE_OF_KEY
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_INTERNAL_ERROR
废弃版本:|方法名 or 属性名:HUKS_ERROR_INTERNAL_ERROR
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|方法名 or 属性名:HUKS_ERROR_UNKNOWN_ERROR
废弃版本:|方法名 or 属性名:HUKS_ERROR_UNKNOWN_ERROR
废弃版本:9
代替接口:ohos.security.huks.HuksExceptionErrCode |@ohos.security.huks.d.ts| +|废弃版本有变化|类名:Cipher
废弃版本:|类名:Cipher
废弃版本:9
代替接口:ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts| +|废弃版本有变化|方法名 or 属性名:rsa
废弃版本:|方法名 or 属性名:rsa
废弃版本:9
代替接口:ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts| +|废弃版本有变化|方法名 or 属性名:aes
废弃版本:|方法名 or 属性名:aes
废弃版本:9
代替接口:ohos.security.cryptoFramework.Cipher |@system.cipher.d.ts| +|新增(错误码)||方法名 or 属性名:verifyAccessTokenSync
错误码内容:401,12100001|@ohos.abilityAccessCtrl.d.ts| +|新增(错误码)||方法名 or 属性名:getPermissionFlags
错误码内容:401,201,12100001,12100002,12100003,12100006,12100007|@ohos.abilityAccessCtrl.d.ts| +|新增(错误码)||方法名 or 属性名:on_permissionStateChange
错误码内容:401,201,12100001,12100004,12100005,12100007,12100008|@ohos.abilityAccessCtrl.d.ts| +|新增(错误码)||方法名 or 属性名:off_permissionStateChange
错误码内容:401,201,12100001,12100004,12100007,12100008|@ohos.abilityAccessCtrl.d.ts| +|新增(错误码)||方法名 or 属性名:getPermissionUsedRecords
错误码内容:401,201,12100001,12100002,12100003,12100007,12100008|@ohos.privacyManager.d.ts| +|新增(错误码)||方法名 or 属性名:on_activeStateChange
错误码内容:401,201,12100001,12100004,12100005,12100007,12100008|@ohos.privacyManager.d.ts| +|新增(错误码)||方法名 or 属性名:off_activeStateChange
错误码内容:401,201,12100001,12100004,12100007,12100008|@ohos.privacyManager.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-sensor.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-sensor.md new file mode 100644 index 0000000000000000000000000000000000000000..0826713dfe6872a456f75d8639fe6daaaf0b9e6c --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-sensor.md @@ -0,0 +1,214 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.sensor
类名: SensorId|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:GYROSCOPE|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:AMBIENT_LIGHT|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:MAGNETIC_FIELD|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:BAROMETER|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:HALL|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:PROXIMITY|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:HUMIDITY|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:ORIENTATION|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:GRAVITY|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:LINEAR_ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:ROTATION_VECTOR|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:AMBIENT_TEMPERATURE|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:SIGNIFICANT_MOTION|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:PEDOMETER_DETECTION|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:PEDOMETER|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:HEART_RATE|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:WEAR_DETECTION|@ohos.sensor.d.ts| +|新增||模块名: ohos.sensor
类名: SensorId
方法名 or 属性名:ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_AMBIENT_LIGHT|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_AMBIENT_TEMPERATURE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_BAROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_GRAVITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_GYROSCOPE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_HALL|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_HEART_RATE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_HUMIDITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_LINEAR_ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_MAGNETIC_FIELD|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_ORIENTATION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_PEDOMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_PEDOMETER_DETECTION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_PROXIMITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_ROTATION_VECTOR|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_SIGNIFICANT_MOTION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorId_WEAR_DETECTION|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.ACCELEROMETER, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.ACCELEROMETER_UNCALIBRATED, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.AMBIENT_LIGHT, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.AMBIENT_TEMPERATURE, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.BAROMETER, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.GRAVITY, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.GYROSCOPE, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.GYROSCOPE_UNCALIBRATED, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.HALL, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.HEART_RATE, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.HUMIDITY, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.LINEAR_ACCELEROMETER, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.MAGNETIC_FIELD, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.MAGNETIC_FIELD_UNCALIBRATED, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.ORIENTATION, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.PEDOMETER, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.PEDOMETER_DETECTION, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.PROXIMITY, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.ROTATION_VECTOR, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.SIGNIFICANT_MOTION, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:once
函数:function once(type: SensorId.WEAR_DETECTION, callback: Callback): void;|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_ACCELEROMETER_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_AMBIENT_LIGHT|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_AMBIENT_TEMPERATURE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_BAROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_GRAVITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_GYROSCOPE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_GYROSCOPE_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_HALL|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_HEART_RATE|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_HUMIDITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_LINEAR_ACCELEROMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_MAGNETIC_FIELD|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_MAGNETIC_FIELD_UNCALIBRATED|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_ORIENTATION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_PEDOMETER|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_PEDOMETER_DETECTION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_PROXIMITY|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_ROTATION_VECTOR|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_SIGNIFICANT_MOTION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorId_WEAR_DETECTION|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:Sensor
方法名 or 属性名:sensorId|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:Sensor
方法名 or 属性名:minSamplePeriod|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:Sensor
方法名 or 属性名:maxSamplePeriod|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:getSingleSensor
函数:function getSingleSensor(type: SensorId, callback: AsyncCallback): void;|@ohos.sensor.d.ts| +|新增||方法名 or 属性名:getSingleSensor
函数:function getSingleSensor(type: SensorId): Promise;|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getSensorList|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getSensorList|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getGeomagneticInfo|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getGeomagneticInfo|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getDeviceAltitude|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getDeviceAltitude|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getInclination|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getInclination|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getAngleVariation|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getAngleVariation|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:transformRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:transformRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getQuaternion|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getQuaternion|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getOrientation|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getOrientation|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getRotationMatrix|@ohos.sensor.d.ts| +|新增||模块名:ohos.vibrator
类名:vibrator
方法名 or 属性名:startVibration|@ohos.vibrator.d.ts| +|新增||模块名:ohos.vibrator
类名:vibrator
方法名 or 属性名:startVibration|@ohos.vibrator.d.ts| +|新增||模块名:ohos.vibrator
类名:vibrator
方法名 or 属性名:stopVibration|@ohos.vibrator.d.ts| +|新增||模块名:ohos.vibrator
类名:vibrator
方法名 or 属性名:stopVibration|@ohos.vibrator.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:Sensor
方法名 or 属性名:sensorTypeId||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getSensorLists||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:sensor
方法名 or 属性名:getSensorLists||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:SensorType
方法名 or 属性名:SENSOR_TYPE_ID_LINEAR_ACCELEROMETER||@ohos.sensor.d.ts| +|删除|模块名:ohos.sensor
类名:SensorType
方法名 or 属性名:SENSOR_TYPE_ID_HEART_BEAT_RATE||@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_BAROMETER
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_BAROMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GRAVITY
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GRAVITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GYROSCOPE
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GYROSCOPE
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_HALL
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_HALL
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_HUMIDITY
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_HUMIDITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ORIENTATION
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ORIENTATION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PEDOMETER
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PEDOMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PROXIMITY
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_PROXIMITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:|方法名 or 属性名:on_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:once
废弃版本:|方法名 or 属性名:once
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_BAROMETER
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_BAROMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GRAVITY
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GRAVITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GYROSCOPE
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GYROSCOPE
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_HALL
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_HALL
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_HUMIDITY
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_HUMIDITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ORIENTATION
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ORIENTATION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PEDOMETER
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PEDOMETER
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PROXIMITY
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_PROXIMITY
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:|方法名 or 属性名:off_SensorType_SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:getGeomagneticField
废弃版本:|方法名 or 属性名:getGeomagneticField
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:getAltitude
废弃版本:|方法名 or 属性名:getAltitude
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:getGeomagneticDip
废弃版本:|方法名 or 属性名:getGeomagneticDip
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:getAngleModify
废弃版本:|方法名 or 属性名:getAngleModify
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:createRotationMatrix
废弃版本:|方法名 or 属性名:createRotationMatrix
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:transformCoordinateSystem
废弃版本:|方法名 or 属性名:transformCoordinateSystem
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:createQuaternion
废弃版本:|方法名 or 属性名:createQuaternion
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:getDirection
废弃版本:|方法名 or 属性名:getDirection
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:createRotationMatrix
废弃版本:|方法名 or 属性名:createRotationMatrix
废弃版本:9
代替接口:sensor|@ohos.sensor.d.ts| +|废弃版本有变化|类名:SensorType
废弃版本:|类名:SensorType
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_ACCELEROMETER
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_GYROSCOPE
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_GYROSCOPE
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_AMBIENT_LIGHT
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_MAGNETIC_FIELD
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_BAROMETER
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_BAROMETER
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_HALL
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_HALL
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_PROXIMITY
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_PROXIMITY
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_HUMIDITY
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_HUMIDITY
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_ORIENTATION
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_ORIENTATION
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_GRAVITY
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_GRAVITY
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_ROTATION_VECTOR
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_AMBIENT_TEMPERATURE
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_GYROSCOPE_UNCALIBRATED
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_SIGNIFICANT_MOTION
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_PEDOMETER_DETECTION
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_PEDOMETER
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_PEDOMETER
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_WEAR_DETECTION
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:|方法名 or 属性名:SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED
废弃版本:9
代替接口:sensor.SensorId |@ohos.sensor.d.ts| +|废弃版本有变化|方法名 or 属性名:vibrate
废弃版本:|方法名 or 属性名:vibrate
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|方法名 or 属性名:vibrate
废弃版本:|方法名 or 属性名:vibrate
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| +|废弃版本有变化|方法名 or 属性名:stop
废弃版本:|方法名 or 属性名:stop
废弃版本:9
代替接口:vibrator|@ohos.vibrator.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-start-up.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-start-up.md new file mode 100644 index 0000000000000000000000000000000000000000..20d25dab9e4cfdf0b475e1e074e9414c5eaff13b --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-start-up.md @@ -0,0 +1,10 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: getSync|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: get|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: get|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: get|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: setSync|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: set|@ohos.systemParameterV9.d.ts| +|新增||模块名: ohos.systemParameterV9
类名: systemParameterV9
方法名 or 属性名: set|@ohos.systemParameterV9.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-telephony.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-telephony.md new file mode 100644 index 0000000000000000000000000000000000000000..2e54ac90ba2f16c79402e2f84bfafe1bc3187b13 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-telephony.md @@ -0,0 +1,11 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||方法名 or 属性名:sendUpdateCellLocationRequest
函数:function sendUpdateCellLocationRequest(slotId?: number): Promise;|@ohos.telephony.radio.d.ts| +|废弃版本有变化|方法名 or 属性名:sendUpdateCellLocationRequest
废弃版本:|方法名 or 属性名:sendUpdateCellLocationRequest
废弃版本:undefined|@ohos.telephony.radio.d.ts| +|删除(权限)|方法名 or 属性名:getDefaultCellularDataSlotId
权限:ohos.permission.GET_NETWORK_INFO|方法名 or 属性名:getDefaultCellularDataSlotId
权限:N/A|@ohos.telephony.data.d.ts| +|删除(权限)|方法名 or 属性名:getDefaultCellularDataSlotId
权限:ohos.permission.GET_NETWORK_INFO|方法名 or 属性名:getDefaultCellularDataSlotId
权限:N/A|@ohos.telephony.data.d.ts| +|删除(权限)|方法名 or 属性名:getDefaultCellularDataSlotIdSync
权限:ohos.permission.GET_NETWORK_INFO|方法名 or 属性名:getDefaultCellularDataSlotIdSync
权限:N/A|@ohos.telephony.data.d.ts| +|新增(权限)|方法名 or 属性名:sendUpdateCellLocationRequest
权限:N/A|方法名 or 属性名:sendUpdateCellLocationRequest
权限:ohos.permission.LOCATION|@ohos.telephony.radio.d.ts| +|新增(权限)|方法名 or 属性名:sendUpdateCellLocationRequest
权限:N/A|方法名 or 属性名:sendUpdateCellLocationRequest
权限:ohos.permission.LOCATION|@ohos.telephony.radio.d.ts| +|新增(权限)|方法名 or 属性名:getLockState
权限:N/A|方法名 or 属性名:getLockState
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts| +|新增(权限)|方法名 or 属性名:getLockState
权限:N/A|方法名 or 属性名:getLockState
权限:ohos.permission.GET_TELEPHONY_STATE|@ohos.telephony.sim.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-unitest.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-unitest.md new file mode 100644 index 0000000000000000000000000000000000000000..1be02b893ef65ce26e9ec5e4f1038384c0ca9c22 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-unitest.md @@ -0,0 +1,111 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||方法名 or 属性名:bundleName
函数:bundleName?: string;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:title
函数:title?: string;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:focused
函数:focused?: boolean;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:actived
函数:actived?: boolean;|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:text|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:id|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:type|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:clickable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:longClickable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:scrollable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:enabled|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:focused|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:selected|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:checked|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:checkable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:isBefore|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: On
方法名 or 属性名:isAfter|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:click|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:doubleClick|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:longClick|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:getId|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:getText|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:getType|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isClickable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isLongClickable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isScrollable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isEnabled|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isFocused|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isSelected|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isChecked|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:isCheckable|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:inputText|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:clearText|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:scrollToTop|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:scrollToBottom|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:scrollSearch|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:getBounds|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:getBoundsCenter|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:dragTo|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:pinchOut|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Component
方法名 or 属性名:pinchIn|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:create|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:delayMs|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:findComponent|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:findWindow|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:waitForComponent|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:findComponents|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:assertComponentExist|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:pressBack|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:triggerKey|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:triggerCombineKeys|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:click|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:doubleClick|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:longClick|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:swipe|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:drag|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:screenCap|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:setDisplayRotation|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:getDisplayRotation|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:setDisplayRotationEnabled|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:getDisplaySize|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:getDisplayDensity|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:wakeUpDisplay|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:pressHome|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:waitForIdle|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:fling|@ohos.uitest.d.ts| +|新增||模块名: ohos.uitest
类名: Driver
方法名 or 属性名:injectMultiPointerAction|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:focus
函数:focus(): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:moveTo
函数:moveTo(x: number, y: number): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:resize
函数:resize(wide: number, height: number, direction: ResizeDirection): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:split
函数:split(): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:maximize
函数:maximize(): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:minimize
函数:minimize(): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:resume
函数:resume(): Promise;|@ohos.uitest.d.ts| +|新增||方法名 or 属性名:close
函数:close(): Promise;|@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:By
方法名 or 属性名:longClickable||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:By
方法名 or 属性名:checked||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:By
方法名 or 属性名:checkable||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:isLongClickable||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:isChecked||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:isCheckable||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:clearText||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:scrollToTop||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:scrollToBottom||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:getBounds||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:getBoundsCenter||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:dragTo||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:pinchOut||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiComponent
方法名 or 属性名:pinchIn||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:findWindow||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:waitForComponent||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:triggerCombineKeys||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:drag||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:setDisplayRotation||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:getDisplayRotation||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:setDisplayRotationEnabled||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:getDisplaySize||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:getDisplayDensity||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:wakeUpDisplay||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:pressHome||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:waitForIdle||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:fling||@ohos.uitest.d.ts| +|删除|模块名:ohos.uitest
类名:UiDriver
方法名 or 属性名:injectMultiPointerAction||@ohos.uitest.d.ts| +|废弃版本有变化|类名:By
废弃版本:|类名:By
废弃版本:9
代替接口:ohos.uitest.On |@ohos.uitest.d.ts| +|废弃版本有变化|类名:UiComponent
废弃版本:|类名:UiComponent
废弃版本:9
代替接口:ohos.uitest.Component |@ohos.uitest.d.ts| +|废弃版本有变化|类名:UiDriver
废弃版本:|类名:UiDriver
废弃版本:9
代替接口:ohos.uitest.Driver |@ohos.uitest.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-update.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-update.md new file mode 100644 index 0000000000000000000000000000000000000000..9e5fc88df932c6ebceee8f45da7a5d5812e36fa0 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-update.md @@ -0,0 +1,26 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增(错误码)||方法名 or 属性名:getOnlineUpdater
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getRestorer
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getLocalUpdater
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:checkNewVersion
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getNewVersionInfo
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getNewVersionDescription
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getCurrentVersionInfo
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getCurrentVersionDescription
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getTaskInfo
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:download
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:resumeDownload
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:pauseDownload
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:upgrade
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:clearError
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:getUpgradePolicy
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:setUpgradePolicy
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:terminateUpgrade
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:on
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:off
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:factoryReset
错误码内容:201,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:verifyUpgradePackage
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:applyNewVersion
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:on
错误码内容:201,401,11500104|@ohos.update.d.ts| +|新增(错误码)||方法名 or 属性名:off
错误码内容:201,401,11500104|@ohos.update.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-usb.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-usb.md new file mode 100644 index 0000000000000000000000000000000000000000..b7ad9ffdc3105d8ddbd924ab7dc00e3facaa88e2 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-usb.md @@ -0,0 +1,233 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||方法名 or 属性名:controlTransfer
函数:function controlTransfer(pipe: USBDevicePipe, controlparam: USBControlParams, timeout?: number): Promise;|@ohos.usb.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getDevices|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: connectDevice|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: hasRight|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: requestRight|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: removeRight|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: addRight|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: usbFunctionsFromString|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: usbFunctionsToString|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: setCurrentFunctions|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getCurrentFunctions|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getPorts|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getSupportedModes|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: setPortRoles|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: claimInterface|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: releaseInterface|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: setConfiguration|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: setInterface|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getRawDescriptor|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: getFileDescriptor|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: controlTransfer|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: bulkTransfer|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: usbV9
方法名 or 属性名: closePipe|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: address|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: attributes|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: interval|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: maxPacketSize|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: direction|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: number|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: type|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBEndpoint
方法名 or 属性名: interfaceId|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: id|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: protocol|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: clazz|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: subClass|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: alternateSetting|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: name|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBInterface
方法名 or 属性名: endpoints|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: id|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: attributes|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: maxPower|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: name|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: isRemoteWakeup|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: isSelfPowered|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBConfig
方法名 or 属性名: interfaces|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: busNum|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: devAddress|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: serial|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: name|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: manufacturerName|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: productName|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: version|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: vendorId|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: productId|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: clazz|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: subClass|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: protocol|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevice
方法名 or 属性名: configs|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevicePipe|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevicePipe
方法名 or 属性名: busNum|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBDevicePipe
方法名 or 属性名: devAddress|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PowerRoleType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PowerRoleType
方法名 or 属性名: NONE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PowerRoleType
方法名 or 属性名: SOURCE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PowerRoleType
方法名 or 属性名: SINK|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: DataRoleType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: DataRoleType
方法名 or 属性名: NONE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: DataRoleType
方法名 or 属性名: HOST|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: DataRoleType
方法名 or 属性名: DEVICE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType
方法名 or 属性名: NONE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType
方法名 or 属性名: UFP|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType
方法名 or 属性名: DFP|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType
方法名 or 属性名: DRP|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: PortModeType
方法名 or 属性名: NUM_MODES|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPortStatus|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPortStatus
方法名 or 属性名: currentMode|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPortStatus
方法名 or 属性名: currentPowerRole|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPortStatus
方法名 or 属性名: currentDataRole|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPort|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPort
方法名 or 属性名: id|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPort
方法名 or 属性名: supportedModes|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBPort
方法名 or 属性名: status|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: request|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: target|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: reqType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: value|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: index|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlParams
方法名 or 属性名: data|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestTargetType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestTargetType
方法名 or 属性名: USB_REQUEST_TARGET_DEVICE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestTargetType
方法名 or 属性名: USB_REQUEST_TARGET_INTERFACE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestTargetType
方法名 or 属性名: USB_REQUEST_TARGET_ENDPOINT|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestTargetType
方法名 or 属性名: USB_REQUEST_TARGET_OTHER|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlRequestType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlRequestType
方法名 or 属性名: USB_REQUEST_TYPE_STANDARD|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlRequestType
方法名 or 属性名: USB_REQUEST_TYPE_CLASS|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBControlRequestType
方法名 or 属性名: USB_REQUEST_TYPE_VENDOR|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestDirection|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestDirection
方法名 or 属性名: USB_REQUEST_DIR_TO_DEVICE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: USBRequestDirection
方法名 or 属性名: USB_REQUEST_DIR_FROM_DEVICE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: NONE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: ACM|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: ECM|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: HDC|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: MTP|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: PTP|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: RNDIS|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: MIDI|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: AUDIO_SOURCE|@ohos.usbV9.d.ts| +|新增||模块名: ohos.usbV9
类名: FunctionType
方法名 or 属性名: NCM|@ohos.usbV9.d.ts| +|废弃版本有变化|方法名 or 属性名:getDevices
废弃版本:|方法名 or 属性名:getDevices
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:connectDevice
废弃版本:|方法名 or 属性名:connectDevice
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:hasRight
废弃版本:|方法名 or 属性名:hasRight
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:requestRight
废弃版本:|方法名 or 属性名:requestRight
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:usbFunctionsFromString
废弃版本:|方法名 or 属性名:usbFunctionsFromString
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:usbFunctionsToString
废弃版本:|方法名 or 属性名:usbFunctionsToString
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:setCurrentFunctions
废弃版本:|方法名 or 属性名:setCurrentFunctions
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:getCurrentFunctions
废弃版本:|方法名 or 属性名:getCurrentFunctions
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:getPorts
废弃版本:|方法名 or 属性名:getPorts
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:getSupportedModes
废弃版本:|方法名 or 属性名:getSupportedModes
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:setPortRoles
废弃版本:|方法名 or 属性名:setPortRoles
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:claimInterface
废弃版本:|方法名 or 属性名:claimInterface
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:releaseInterface
废弃版本:|方法名 or 属性名:releaseInterface
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:setConfiguration
废弃版本:|方法名 or 属性名:setConfiguration
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:setInterface
废弃版本:|方法名 or 属性名:setInterface
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:getRawDescriptor
废弃版本:|方法名 or 属性名:getRawDescriptor
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:getFileDescriptor
废弃版本:|方法名 or 属性名:getFileDescriptor
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:bulkTransfer
废弃版本:|方法名 or 属性名:bulkTransfer
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:closePipe
废弃版本:|方法名 or 属性名:closePipe
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBEndpoint
废弃版本:|类名:USBEndpoint
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:address
废弃版本:|方法名 or 属性名:address
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:attributes
废弃版本:|方法名 or 属性名:attributes
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:interval
废弃版本:|方法名 or 属性名:interval
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:maxPacketSize
废弃版本:|方法名 or 属性名:maxPacketSize
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:direction
废弃版本:|方法名 or 属性名:direction
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:number
废弃版本:|方法名 or 属性名:number
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:type
废弃版本:|方法名 or 属性名:type
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:interfaceId
废弃版本:|方法名 or 属性名:interfaceId
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBInterface
废弃版本:|类名:USBInterface
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:protocol
废弃版本:|方法名 or 属性名:protocol
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:clazz
废弃版本:|方法名 or 属性名:clazz
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:subClass
废弃版本:|方法名 or 属性名:subClass
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:alternateSetting
废弃版本:|方法名 or 属性名:alternateSetting
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:endpoints
废弃版本:|方法名 or 属性名:endpoints
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBConfig
废弃版本:|类名:USBConfig
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:attributes
废弃版本:|方法名 or 属性名:attributes
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:maxPower
废弃版本:|方法名 or 属性名:maxPower
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:isRemoteWakeup
废弃版本:|方法名 or 属性名:isRemoteWakeup
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:isSelfPowered
废弃版本:|方法名 or 属性名:isSelfPowered
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:interfaces
废弃版本:|方法名 or 属性名:interfaces
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBDevice
废弃版本:|类名:USBDevice
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:busNum
废弃版本:|方法名 or 属性名:busNum
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:devAddress
废弃版本:|方法名 or 属性名:devAddress
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:serial
废弃版本:|方法名 or 属性名:serial
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:name
废弃版本:|方法名 or 属性名:name
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:manufacturerName
废弃版本:|方法名 or 属性名:manufacturerName
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:productName
废弃版本:|方法名 or 属性名:productName
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:version
废弃版本:|方法名 or 属性名:version
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:vendorId
废弃版本:|方法名 or 属性名:vendorId
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:productId
废弃版本:|方法名 or 属性名:productId
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:clazz
废弃版本:|方法名 or 属性名:clazz
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:subClass
废弃版本:|方法名 or 属性名:subClass
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:protocol
废弃版本:|方法名 or 属性名:protocol
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:configs
废弃版本:|方法名 or 属性名:configs
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBDevicePipe
废弃版本:|类名:USBDevicePipe
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:busNum
废弃版本:|方法名 or 属性名:busNum
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:devAddress
废弃版本:|方法名 or 属性名:devAddress
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:PowerRoleType
废弃版本:|类名:PowerRoleType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NONE
废弃版本:|方法名 or 属性名:NONE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:SOURCE
废弃版本:|方法名 or 属性名:SOURCE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:SINK
废弃版本:|方法名 or 属性名:SINK
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:DataRoleType
废弃版本:|类名:DataRoleType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NONE
废弃版本:|方法名 or 属性名:NONE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:HOST
废弃版本:|方法名 or 属性名:HOST
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:DEVICE
废弃版本:|方法名 or 属性名:DEVICE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:PortModeType
废弃版本:|类名:PortModeType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NONE
废弃版本:|方法名 or 属性名:NONE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:UFP
废弃版本:|方法名 or 属性名:UFP
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:DFP
废弃版本:|方法名 or 属性名:DFP
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:DRP
废弃版本:|方法名 or 属性名:DRP
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NUM_MODES
废弃版本:|方法名 or 属性名:NUM_MODES
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBPortStatus
废弃版本:|类名:USBPortStatus
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:currentMode
废弃版本:|方法名 or 属性名:currentMode
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:currentPowerRole
废弃版本:|方法名 or 属性名:currentPowerRole
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:currentDataRole
废弃版本:|方法名 or 属性名:currentDataRole
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBPort
废弃版本:|类名:USBPort
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:id
废弃版本:|方法名 or 属性名:id
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:supportedModes
废弃版本:|方法名 or 属性名:supportedModes
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:status
废弃版本:|方法名 or 属性名:status
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBControlParams
废弃版本:|类名:USBControlParams
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:request
废弃版本:|方法名 or 属性名:request
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:target
废弃版本:|方法名 or 属性名:target
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:reqType
废弃版本:|方法名 or 属性名:reqType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:value
废弃版本:|方法名 or 属性名:value
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:index
废弃版本:|方法名 or 属性名:index
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:data
废弃版本:|方法名 or 属性名:data
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBRequestTargetType
废弃版本:|类名:USBRequestTargetType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TARGET_DEVICE
废弃版本:|方法名 or 属性名:USB_REQUEST_TARGET_DEVICE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TARGET_INTERFACE
废弃版本:|方法名 or 属性名:USB_REQUEST_TARGET_INTERFACE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TARGET_ENDPOINT
废弃版本:|方法名 or 属性名:USB_REQUEST_TARGET_ENDPOINT
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TARGET_OTHER
废弃版本:|方法名 or 属性名:USB_REQUEST_TARGET_OTHER
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBControlRequestType
废弃版本:|类名:USBControlRequestType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TYPE_STANDARD
废弃版本:|方法名 or 属性名:USB_REQUEST_TYPE_STANDARD
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TYPE_CLASS
废弃版本:|方法名 or 属性名:USB_REQUEST_TYPE_CLASS
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_TYPE_VENDOR
废弃版本:|方法名 or 属性名:USB_REQUEST_TYPE_VENDOR
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:USBRequestDirection
废弃版本:|类名:USBRequestDirection
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_DIR_TO_DEVICE
废弃版本:|方法名 or 属性名:USB_REQUEST_DIR_TO_DEVICE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:USB_REQUEST_DIR_FROM_DEVICE
废弃版本:|方法名 or 属性名:USB_REQUEST_DIR_FROM_DEVICE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|类名:FunctionType
废弃版本:|类名:FunctionType
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NONE
废弃版本:|方法名 or 属性名:NONE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:ACM
废弃版本:|方法名 or 属性名:ACM
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:ECM
废弃版本:|方法名 or 属性名:ECM
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:HDC
废弃版本:|方法名 or 属性名:HDC
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:MTP
废弃版本:|方法名 or 属性名:MTP
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:PTP
废弃版本:|方法名 or 属性名:PTP
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:RNDIS
废弃版本:|方法名 or 属性名:RNDIS
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:MIDI
废弃版本:|方法名 or 属性名:MIDI
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:AUDIO_SOURCE
废弃版本:|方法名 or 属性名:AUDIO_SOURCE
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| +|废弃版本有变化|方法名 or 属性名:NCM
废弃版本:|方法名 or 属性名:NCM
废弃版本:9
代替接口:ohos.usbV9 |@ohos.usb.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-useriam.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-useriam.md new file mode 100644 index 0000000000000000000000000000000000000000..65954a1665dec258ce40d4a8df7ccde5e76ab973 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-useriam.md @@ -0,0 +1,62 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.userIAM.faceAuth
类名:faceAuth|@ohos.userIAM.faceAuth.d.ts| +|新增||方法名 or 属性名:setSurfaceId
函数:setSurfaceId(surfaceId: string): void;|@ohos.userIAM.faceAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthEvent|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthEvent
方法名 or 属性名:callback|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthResultInfo|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法名 or 属性名:result|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法名 or 属性名:token|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法名 or 属性名:remainAttempts|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthResultInfo
方法名 or 属性名:lockoutDuration|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: TipInfo|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: TipInfo
方法名 or 属性名:module|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: TipInfo
方法名 or 属性名:tip|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthInstance|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法名 or 属性名:on|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法名 or 属性名:off|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法名 or 属性名:start|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: AuthInstance
方法名 or 属性名:cancel|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: userAuth
方法名 or 属性名:getVersion|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: userAuth
方法名 or 属性名:getAvailableStatus|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: userAuth
方法名 or 属性名:getAuthInstance|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:SUCCESS|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:FAIL|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:GENERAL_ERROR|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:CANCELED|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:TIMEOUT|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:TYPE_NOT_SUPPORT|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:TRUST_LEVEL_NOT_SUPPORT|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:BUSY|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:LOCKED|@ohos.userIAM.userAuth.d.ts| +|新增||模块名: ohos.userIAM.userAuth
类名: ResultCodeV9
方法名 or 属性名:NOT_ENROLLED|@ohos.userIAM.userAuth.d.ts| +|删除|模块名: ohos.userIAM.faceAuth
类名: ResultCode||@ohos.userIAM.faceAuth.d.ts| +|删除|模块名: ohos.userIAM.faceAuth
类名: ResultCode
方法名 or 属性名:SUCCESS||@ohos.userIAM.faceAuth.d.ts| +|删除|模块名: ohos.userIAM.faceAuth
类名: ResultCode
方法名 or 属性名:FAIL||@ohos.userIAM.faceAuth.d.ts| +|废弃版本有变化|类名:AuthenticationResult
废弃版本:|类名:AuthenticationResult
废弃版本:8
代替接口:ohos.userIAM.userAuth.ResultCode |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:Authenticator
废弃版本:|类名:Authenticator
废弃版本:8|@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:UserAuth
废弃版本:|类名:UserAuth
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthInstance |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:getVersion
废弃版本:|方法名 or 属性名:getVersion
废弃版本:9
代替接口:ohos.userIAM.userAuth.getVersion |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:getAvailableStatus
废弃版本:|方法名 or 属性名:getAvailableStatus
废弃版本:9
代替接口:ohos.userIAM.userAuth.getAvailableStatus |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:auth
废弃版本:|方法名 or 属性名:auth
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthInstance.start |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:cancelAuth
废弃版本:|方法名 or 属性名:cancelAuth
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthInstance.cancel |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:IUserAuthCallback
废弃版本:|类名:IUserAuthCallback
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthEvent |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:onResult
废弃版本:|方法名 or 属性名:onResult
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthEvent.callback |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:onAcquireInfo
废弃版本:|方法名 or 属性名:onAcquireInfo
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthEvent.callback |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:AuthResult
废弃版本:|类名:AuthResult
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:token
废弃版本:|方法名 or 属性名:token
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:remainTimes
废弃版本:|方法名 or 属性名:remainTimes
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:freezingTime
废弃版本:|方法名 or 属性名:freezingTime
废弃版本:9
代替接口:ohos.userIAM.userAuth.AuthResultInfo |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|类名:ResultCode
废弃版本:|类名:ResultCode
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:SUCCESS
废弃版本:|方法名 or 属性名:SUCCESS
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:FAIL
废弃版本:|方法名 or 属性名:FAIL
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:GENERAL_ERROR
废弃版本:|方法名 or 属性名:GENERAL_ERROR
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:CANCELED
废弃版本:|方法名 or 属性名:CANCELED
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:TIMEOUT
废弃版本:|方法名 or 属性名:TIMEOUT
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:TYPE_NOT_SUPPORT
废弃版本:|方法名 or 属性名:TYPE_NOT_SUPPORT
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:TRUST_LEVEL_NOT_SUPPORT
废弃版本:|方法名 or 属性名:TRUST_LEVEL_NOT_SUPPORT
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:BUSY
废弃版本:|方法名 or 属性名:BUSY
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:INVALID_PARAMETERS
废弃版本:|方法名 or 属性名:INVALID_PARAMETERS
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:LOCKED
废弃版本:|方法名 or 属性名:LOCKED
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| +|废弃版本有变化|方法名 or 属性名:NOT_ENROLLED
废弃版本:|方法名 or 属性名:NOT_ENROLLED
废弃版本:9
代替接口:ohos.userIAM.userAuth.ResultCodeV9 |@ohos.userIAM.userAuth.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-web.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-web.md new file mode 100644 index 0000000000000000000000000000000000000000..7793291f49b6006bd679d1f30cc1fde107912472 --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-web.md @@ -0,0 +1,76 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名: ohos.web.webview
类名: HeaderV9|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HeaderV9
方法名 or 属性名:headerKey|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HeaderV9
方法名 or 属性名:headerValue|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:EditText|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:Email|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:HttpAnchor|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:HttpAnchorImg|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:Img|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:Map|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:Phone|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestTypeV9
方法名 or 属性名:Unknown|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestValue|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestValue
方法名 or 属性名:type|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: HitTestValue
方法名 or 属性名:extra|@ohos.web.webview.d.ts| +|新增||方法名 or 属性名:setCookie
函数:static setCookie(url: string, value: string): void;|@ohos.web.webview.d.ts| +|新增||方法名 or 属性名:saveCookieAsync
函数:static saveCookieAsync(): Promise;|@ohos.web.webview.d.ts| +|新增||方法名 or 属性名:saveCookieAsync
函数:static saveCookieAsync(callback: AsyncCallback): void;|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebMessagePort|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebMessagePort
方法名 or 属性名:close|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebMessagePort
方法名 or 属性名:postMessageEvent|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebMessagePort
方法名 or 属性名:onMessageEvent|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:accessForward|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:accessBackward|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:accessStep|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:forward|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:backward|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:clearHistory|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:onActive|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:onInactive|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:refresh|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:loadData|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:loadUrl|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getHitTest|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:storeWebArchive|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:storeWebArchive|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:zoom|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:zoomIn|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:zoomOut|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getHitTestValue|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getWebId|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getUserAgent|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getTitle|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getPageHeight|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:backOrForward|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:requestFocus|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:createWebMessagePorts|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:postMessage|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:stop|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:registerJavaScriptProxy|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:deleteJavaScriptRegister|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:searchAllAsync|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:clearMatches|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:searchNext|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:clearSslCache|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:clearClientAuthenticationCache|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:runJavaScript|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:runJavaScript|@ohos.web.webview.d.ts| +|新增||模块名: ohos.web.webview
类名: WebviewController
方法名 or 属性名:getUrl|@ohos.web.webview.d.ts| +|删除|模块名:ohos.web.webview
类名:WebCookieManager
方法名 or 属性名:saveCookieSync||@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:deleteOrigin
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getOrigins
错误码内容:401,17100012|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getOriginQuota
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getOriginUsage
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getHttpAuthCredentials
错误码内容:401|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:saveHttpAuthCredentials
错误码内容:401|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:allowGeolocation
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:deleteGeolocation
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getAccessibleGeolocation
错误码内容:401,17100011|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getStoredGeolocation
错误码内容:401|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:getCookie
错误码内容:401,17100002|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:putAcceptCookieEnabled
错误码内容:401|@ohos.web.webview.d.ts| +|新增(错误码)||方法名 or 属性名:putAcceptThirdPartyCookieEnabled
错误码内容:401|@ohos.web.webview.d.ts| diff --git a/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-window.md b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-window.md new file mode 100644 index 0000000000000000000000000000000000000000..5a0cb8077505852d22f33c763d230f527d9e24cf --- /dev/null +++ b/zh-cn/release-notes/api-change/v3.2-beta4/js-apidiff-window.md @@ -0,0 +1,111 @@ +| 操作 | 新版本 | 旧版本 | d.ts文件 | +| ---- | ------ | ------ | -------- | +|新增||模块名:ohos.display
类名:display
方法名 or 属性名:getAllDisplays|@ohos.display.d.ts| +|新增||模块名:ohos.display
类名:display
方法名 or 属性名:getAllDisplays|@ohos.display.d.ts| +|新增||模块名: ohos.window
类名: Configuration|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: Configuration
方法名 or 属性名:name|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: Configuration
方法名 or 属性名:windowType|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: Configuration
方法名 or 属性名:ctx|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: Configuration
方法名 or 属性名:displayId|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: Configuration
方法名 or 属性名:parentId|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:window
方法名 or 属性名:createWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:window
方法名 or 属性名:createWindow|@ohos.window.d.ts| +|新增||方法名 or 属性名:create
函数:function create(ctx: BaseContext, id: string, type: WindowType): Promise;|@ohos.window.d.ts| +|新增||方法名 or 属性名:create
函数:function create(ctx: BaseContext, id: string, type: WindowType, callback: AsyncCallback): void;|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:window
方法名 or 属性名:findWindow|@ohos.window.d.ts| +|新增||方法名 or 属性名:getTopWindow
函数:function getTopWindow(ctx: BaseContext): Promise;|@ohos.window.d.ts| +|新增||方法名 or 属性名:getTopWindow
函数:function getTopWindow(ctx: BaseContext, callback: AsyncCallback): void;|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:window
方法名 or 属性名:getLastWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:window
方法名 or 属性名:getLastWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:showWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:showWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:destroyWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:destroyWindow|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:moveWindowTo|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:moveWindowTo|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:resize|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:resize|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowMode|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowMode|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:getWindowProperties|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:getWindowAvoidArea|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowLayoutFullScreen|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowLayoutFullScreen|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowSystemBarEnable|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowSystemBarEnable|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowSystemBarProperties|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowSystemBarProperties|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setUIContent|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setUIContent|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:isWindowShowing|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:isWindowSupportWideGamut|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:isWindowSupportWideGamut|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowColorSpace|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowColorSpace|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:getWindowColorSpace|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowBackgroundColor|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowBrightness|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowBrightness|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowFocusable|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowFocusable|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowKeepScreenOn|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowKeepScreenOn|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowPrivacyMode|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowPrivacyMode|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowTouchable|@ohos.window.d.ts| +|新增||模块名:ohos.window
类名:Window
方法名 or 属性名:setWindowTouchable|@ohos.window.d.ts| +|新增||模块名: ohos.window
类名: WindowStage
方法名 or 属性名:getMainWindowSync|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getDefaultDisplay
废弃版本:|方法名 or 属性名:getDefaultDisplay
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|方法名 or 属性名:getDefaultDisplay
废弃版本:|方法名 or 属性名:getDefaultDisplay
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllDisplay
废弃版本:|方法名 or 属性名:getAllDisplay
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|方法名 or 属性名:getAllDisplay
废弃版本:|方法名 or 属性名:getAllDisplay
废弃版本:9
代替接口:ohos.display|@ohos.display.d.ts| +|废弃版本有变化|方法名 or 属性名:create
废弃版本:|方法名 or 属性名:create
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:create
废弃版本:|方法名 or 属性名:create
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:find
废弃版本:|方法名 or 属性名:find
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:find
废弃版本:|方法名 or 属性名:find
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getTopWindow
废弃版本:|方法名 or 属性名:getTopWindow
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getTopWindow
废弃版本:|方法名 or 属性名:getTopWindow
废弃版本:9
代替接口:ohos.window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:show
废弃版本:|方法名 or 属性名:show
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:show
废弃版本:|方法名 or 属性名:show
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:destroy
废弃版本:|方法名 or 属性名:destroy
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:destroy
废弃版本:|方法名 or 属性名:destroy
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:moveTo
废弃版本:|方法名 or 属性名:moveTo
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:moveTo
废弃版本:|方法名 or 属性名:moveTo
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:resetSize
废弃版本:|方法名 or 属性名:resetSize
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:resetSize
废弃版本:|方法名 or 属性名:resetSize
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getProperties
废弃版本:|方法名 or 属性名:getProperties
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getProperties
废弃版本:|方法名 or 属性名:getProperties
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getAvoidArea
废弃版本:|方法名 or 属性名:getAvoidArea
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getAvoidArea
废弃版本:|方法名 or 属性名:getAvoidArea
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setFullScreen
废弃版本:|方法名 or 属性名:setFullScreen
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setFullScreen
废弃版本:|方法名 or 属性名:setFullScreen
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setLayoutFullScreen
废弃版本:|方法名 or 属性名:setLayoutFullScreen
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setLayoutFullScreen
废弃版本:|方法名 or 属性名:setLayoutFullScreen
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setSystemBarEnable
废弃版本:|方法名 or 属性名:setSystemBarEnable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setSystemBarEnable
废弃版本:|方法名 or 属性名:setSystemBarEnable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setSystemBarProperties
废弃版本:|方法名 or 属性名:setSystemBarProperties
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setSystemBarProperties
废弃版本:|方法名 or 属性名:setSystemBarProperties
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:loadContent
废弃版本:|方法名 or 属性名:loadContent
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:loadContent
废弃版本:|方法名 or 属性名:loadContent
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:isShowing
废弃版本:|方法名 or 属性名:isShowing
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:isShowing
废弃版本:|方法名 or 属性名:isShowing
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:isSupportWideGamut
废弃版本:|方法名 or 属性名:isSupportWideGamut
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:isSupportWideGamut
废弃版本:|方法名 or 属性名:isSupportWideGamut
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setColorSpace
废弃版本:|方法名 or 属性名:setColorSpace
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setColorSpace
废弃版本:|方法名 or 属性名:setColorSpace
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getColorSpace
废弃版本:|方法名 or 属性名:getColorSpace
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:getColorSpace
废弃版本:|方法名 or 属性名:getColorSpace
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setBackgroundColor
废弃版本:|方法名 or 属性名:setBackgroundColor
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setBackgroundColor
废弃版本:|方法名 or 属性名:setBackgroundColor
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setBrightness
废弃版本:|方法名 or 属性名:setBrightness
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setBrightness
废弃版本:|方法名 or 属性名:setBrightness
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setFocusable
废弃版本:|方法名 or 属性名:setFocusable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setFocusable
废弃版本:|方法名 or 属性名:setFocusable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setKeepScreenOn
废弃版本:|方法名 or 属性名:setKeepScreenOn
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setKeepScreenOn
废弃版本:|方法名 or 属性名:setKeepScreenOn
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setPrivacyMode
废弃版本:|方法名 or 属性名:setPrivacyMode
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setPrivacyMode
废弃版本:|方法名 or 属性名:setPrivacyMode
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setTouchable
废弃版本:|方法名 or 属性名:setTouchable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|废弃版本有变化|方法名 or 属性名:setTouchable
废弃版本:|方法名 or 属性名:setTouchable
废弃版本:9
代替接口:ohos.window.Window|@ohos.window.d.ts| +|权限有变化|方法名 or 属性名:createVirtualScreen
权限:ohos.permission.CAPTURE_SCREEN. if VirtualScreenOption.surfaceId is valid|方法名 or 属性名:createVirtualScreen
权限:ohos.permission.CAPTURE_SCREEN|@ohos.screen.d.ts| +|权限有变化|方法名 or 属性名:createVirtualScreen
权限:ohos.permission.CAPTURE_SCREEN. if VirtualScreenOption.surfaceId is valid|方法名 or 属性名:createVirtualScreen
权限:ohos.permission.CAPTURE_SCREEN|@ohos.screen.d.ts|