• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# JS API Differences
2This document describes the changes of APIs in OpenHarmony 3.0 LTS when compared with OpenHarmony 2.2 Beta2.
3## Standard System API Changes
4
5| Module | API | Change Type | Change Description |
6|  --------  |  --------  |  --------  |  --------  |
7|Multi - language Runtime - worker|postMessage(obj):void|Added|Used by the host thread to transfer data to the worker.|
8|Multi - language Runtime - worker|postMessage(message: Object, options?: PostMessageOptions):void|Added|Used by the host thread to transfer the data control permission of the array buffer to the worker.|
9|Multi - language Runtime - worker|terminate():void|Added|Used by the host thread to proactively terminate the worker.|
10|Multi - language Runtime - worker|on(type: string, listener: EventListener): void|Added|Adds a callback for the worker.|
11|Multi - language Runtime - worker|once(type: string, listener: EventListener): void|Added|Adds a one - shot callback for the worker.|
12|Multi - language Runtime - worker|off(type: string, listener?: EventListener): void|Added|Deletes a callback added for the worker.|
13|Multi - language Runtime - worker|addEventListener(type: string, listener: EventListener): void|Added|Adds a callback for the worker.|
14|Multi - language Runtime - worker|removeEventListener(type: string, listener?: EventListener): void|Added|Deletes a callback added for the worker.|
15|Multi - language Runtime - worker|removeAllListener(): void|Added|Deletes all callbacks added for the worker.|
16|Multi - language Runtime - worker|dispatchEvent(event: Event): boolean|Added|Dispatches a specific event to the worker.|
17|Multi - language Runtime - parentPort|postMessage(obj):void|Added|Used by the worker to transfer data to the host thread.|
18|Multi - language Runtime - parentPort|postMessage(message: Object, options?: PostMessageOptions):void|Added|Used by the worker to transfer the data control permission of the array buffer to the host thread.|
19|Multi - language Runtime - parentPort|close(): void|Added|Used by the worker to proactively terminate itself.|
20|Multi - language Runtime - Util|printf(format: string, ...args: Object[]): string|Added|-|
21|Multi - language Runtime - Util|getErrorString(errno: number): string|Added|-|
22|Multi - language Runtime - Util|callbackWrapper(original: Function): (err: Object, value: Object) => void|Added|-|
23|Multi - language Runtime - Util|promiseWrapper(original: (err: Object, value: Object) => void): Object|Added|-|
24|Multi - language Runtime - Util|new TextDecoder([encoding[, options]])|Added|-|
25|Multi - language Runtime - Util|decode([input[, options]]):string|Added|-|
26|Multi - language Runtime - Util|new TextEncoder()|Added|-|
27|Multi - language Runtime - Util|encode(input?: string): Uint8Array;|Added|-|
28|Multi - language Runtime - Util|"encodeInto(input: string,dest: Uint8Array,): { read: number; written: number };"|Added|-|
29|Multi - language Runtime - Util|readonly encoding: string;|Added|-|
30|Multi - language Runtime - Util|readonly fatal: boolean;|Added|-|
31|Multi - language Runtime - Util|readonly ignoreBOM = false;|Added|-|
32|Multi - language Runtime - Util|readonly encoding = "utf-8";|Added|-|
33|Multi - language Runtime - URL|new URL(url: string, base?: string/URL)|Added|-|
34|Multi - language Runtime - URL|toString(): string;|Added|-|
35|Multi - language Runtime - URL|toJSON(): string;|Added|-|
36|Multi - language Runtime - URL|new URSearchParams()|Added|-|
37|Multi - language Runtime - URL|new URSearchParams(string)|Added|-|
38|Multi - language Runtime - URL|new URSearchParams(obj)|Added|-|
39|Multi - language Runtime - URL|new URSearchParams(iterable)|Added|-|
40|Multi - language Runtime - URL|append(name: string, value: string): void;|Added|-|
41|Multi - language Runtime - URL|delete(name: string): void;|Added|-|
42|Multi - language Runtime - URL|entries(): IterableIterator\<[string, string]>;|Added|-|
43|Multi - language Runtime - URL|forEach(callbackfn: (value: string, key: string, parent: this) => void, thisArg?: any,): void;|Added|-|
44|Multi - language Runtime - URL|get(name: string): string / null;|Added|-|
45|Multi - language Runtime - URL|getAll(name: string): string[];|Added|-|
46|Multi - language Runtime - URL|has(name: string): boolean;|Added|-|
47|Multi - language Runtime - URL|keys(): IterableIterator\<string>;|Added|-|
48|Multi - language Runtime - URL|set(name: string, value: string): void;|Added|-|
49|Multi - language Runtime - URL|sort():void;|Added|-|
50|Multi - language Runtime - URL|toString():string|Added|-|
51|Multi - language Runtime - URL|values(): IterableIterator\<string>;|Added|-|
52|Multi - language Runtime - URL|URSearchParams\[Symbol.iterator]()|Added|-|
53|Multi - language Runtime - URL|hash: string;|Added|-|
54|Multi - language Runtime - URL|host: string;|Added|-|
55|Multi - language Runtime - URL|hostname: string;|Added|-|
56|Multi - language Runtime - URL|href: string;|Added|-|
57|Multi - language Runtime - URL|readonly origin: string;|Added|-|
58|Multi - language Runtime - URL|password: string;|Added|-|
59|Multi - language Runtime - URL|pathname: string;|Added|-|
60|Multi - language Runtime - URL|port: string;|Added|-|
61|Multi - language Runtime - URL|protocol: string;|Added|-|
62|Multi - language Runtime - URL|search: string;|Added|-|
63|Multi - language Runtime - URL|readonly searchParams: URLSearchParams;|Added|-|
64|Multi - language Runtime - URL|username: string;|Added|-|
65|Multi - language Runtime - ChildProcess|readonly pid: number;|Added|-|
66|Multi - language Runtime - ChildProcess|readonly ppid: number;|Added|-|
67|Multi - language Runtime - ChildProcess|readonly exitCode: number;|Added|-|
68|Multi - language Runtime - ChildProcess|readonly killed: boolean;|Added|-|
69|Multi - language Runtime - ChildProcess|wait(): Promise\<number>;|Added|-|
70|Multi - language Runtime - ChildProcess|getOutput(): Promise\<Uint8Array>;|Added|-|
71|Multi - language Runtime - ChildProcess|getErrorOutput(): Promise\<Uint8Array>;|Added|-|
72|Multi - language Runtime - ChildProcess|close(): void;|Added|-|
73|Multi - language Runtime - ChildProcess|kill(signal: number): void;|Added|-|
74|Multi - language Runtime - process|runCmd(command: string,options?: { timeout : number, killSignal : number string, maxBuffer : number }): ChildProcess;|Added|-|
75|Multi - language Runtime - process|getPid(): number;|Added|-|
76|Multi - language Runtime - process|getPpid(): number;|Added|-|
77|Multi - language Runtime - process|abort(): void;|Added|-|
78|Multi - language Runtime - process|on(type: string, listener: EventListener): void;|Added|-|
79|Multi - language Runtime - process|exit(code?:number): void;|Added|-|
80|Multi - language Runtime - process|cwd(): string;|Added|-|
81|Multi - language Runtime - process|chdir(dir: string): void;|Added|-|
82|Multi - language Runtime - process|getEgid(): number;|Added|-|
83|Multi - language Runtime - process|getEuid(): number;|Added|-|
84|Multi - language Runtime - process|getGid(): number|Added|-|
85|Multi - language Runtime - process|getUid(): number;|Added|-|
86|Multi - language Runtime - process|uptime(): number;|Added|-|
87|Multi - language Runtime - process|getGroups(): number[];|Added|-|
88|Multi - language Runtime - process|kill(signal?: number, pid?: number): boolean;|Added|-|
89|Update Subsystem - Updater|checkNewVersion(): Promise\<NewVersionInfo>;|Added|    -|
90|Update Subsystem - Updater|rebootAndCleanUserData(callback: AsyncCallback\<number>): void;|Added|    -|
91|Update Subsystem - Updater|rebootAndCleanCache(): Promise\<number>;|Added|    -|
92|Update Subsystem - Updater|getUpdaterFromOther(device: string, updateType?: UpdateTypes): Updater;|Added|    -|
93|Update Subsystem - Updater|cancel(): void;|Added|    -|
94|Update Subsystem - Updater|upgrade(): void;|Added|    -|
95|Update Subsystem - Updater|off(eventType: 'downloadProgress', callback?: UpdateProgressCallback): void;|Added|    -|
96|Update Subsystem - Updater|getUpdatePolicy(callback: AsyncCallback\<UpdatePolicy>): void;|Added|    -|
97|Update Subsystem - Updater|getUpdaterForOther(device: string, updateType?: UpdateTypes): Updater;|Added|    -|
98|Update Subsystem - Updater|setUpdatePolicy(policy: UpdatePolicy, callback: AsyncCallback\<number>): void;|Added|    -|
99|Update Subsystem - Updater|getNewVersionInfo(): Promise\<NewVersionInfo>;|Added|    -|
100|Update Subsystem - Updater|getUpdater(updateType?: UpdateTypes): Updater;|Added|    -|
101|Update Subsystem - Updater|applyNewVersion(callback: AsyncCallback\<number>): void;|Added|    -|
102|Update Subsystem - Updater|rebootAndCleanUserData(): Promise\<number>;|Added|    -|
103|Update Subsystem - Updater|off(eventType: 'verifyProgress', callback?: UpdateProgressCallback): void;|Added|    -|
104|Update Subsystem - Updater|on(eventType: 'upgradeProgress', callback: UpdateProgressCallback): void;|Added|    -|
105|Update Subsystem - Updater|checkNewVersion(callback: AsyncCallback\<NewVersionInfo>): void;|Added|    -|
106|Update Subsystem - Updater|on(eventType: 'downloadProgress', callback: UpdateProgressCallback): void;|Added|    -|
107|Update Subsystem - Updater|getUpdatePolicy(): Promise\<UpdatePolicy>;|Added|    -|
108|Update Subsystem - Updater|download(): void;|Added|    -|
109|Update Subsystem - Updater|off(eventType: 'upgradeProgress', callback?: UpdateProgressCallback): void;|Added|    -|
110|Update Subsystem - Updater|getNewVersionInfo(callback: AsyncCallback\<NewVersionInfo>): void;|Added|    -|
111|Update Subsystem - Updater|on(eventType: 'verifyProgress', callback: UpdateProgressCallback): void;|Added|    -|
112|Update Subsystem - Updater|verifyUpdatePackage(upgradeFile: string, certsFile: string): void;|Added|    -|
113|Update Subsystem - Updater|setUpdatePolicy(policy: UpdatePolicy): Promise\<number>;|Added|    -|
114|Update Subsystem - Updater|rebootAndCleanCache(callback: AsyncCallback\<number>): void;|Added|    -|
115|Update Subsystem - Updater|applyNewVersion(): Promise\<number>;|Added|    -|
116|Globalization Subsystem - I18n|getSystemLanguages(): Array\<string>;|Added|    -|
117|Globalization Subsystem - I18n|getSystemCountries(language: string): Array\<string>;|Added|    -|
118|Globalization Subsystem - I18n|isSuggested(language: string, region?: string): boolean;|Added|    -|
119|Globalization Subsystem - I18n|getSystemLanguage(): string;|Added|    -|
120|Globalization Subsystem - I18n|setSystemLanguage(language: string);|Added|    -|
121|Globalization Subsystem - I18n|getSystemRegion(): string;|Added|    -|
122|Globalization Subsystem - I18n|setSystemRegion(region: string);|Added|    -|
123|Globalization Subsystem - I18n|"getDisplayCountry(locale: string, displayLocale: string,sentenceCase?: boolean): string;"|Added|    -|
124|Globalization Subsystem - I18n|getSystemLocale(): string;|Added|    -|
125|Globalization Subsystem - I18n|setSystemLocale(locale: string);|Added|    -|
126|Globalization Subsystem - I18n|"getDisplayLanguage(locale: string, displayLocale: string,sentenceCase?: boolean): string;"|Added|    -|
127|Telephony Subsystem - radio|getNetworkState(callback: AsyncCallback\<NetworkState>): void;<br>getNetworkState(slotId: number, callback: AsyncCallback\<NetworkState>): void;<br>getNetworkState(slotId?: number): Promise\<NetworkState>;|Added| -|
128|Telephony Subsystem - sim|getSimAccountInfo(slotId: number, callback: AsyncCallback\<IccAccountInfo>): void;<br>getSimAccountInfo(slotId: number): Promise\<IccAccountInfo>;|Added| -|
129|Telephony Subsystem - sim|getDefaultVoiceSlotId(callback: AsyncCallback\<number>): void;<br>getDefaultVoiceSlotId(): Promise\<number>;|Added| -|
130|Telephony Subsystem - sim|getSimSpn(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimSpn(slotId: number): Promise\<string>;|Added| -|
131|Telephony Subsystem - sim|getISOCountryCodeForSim(slotId: number, callback: AsyncCallback\<string>): void;<br>getISOCountryCodeForSim(slotId: number): Promise\<string>;|Added| -|
132|Telephony Subsystem - sim|getSimIccId(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimIccId(slotId: number): Promise\<string>;|Added| -|
133|Telephony Subsystem - sim|getSimGid1(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimGid1(slotId: number): Promise\<string>;|Added| -|
134|Telephony Subsystem - sim|getISOCountryCodeForSim(slotId: number, callback: AsyncCallback\<string>): void;<br>getISOCountryCodeForSim(slotId: number): Promise\<string>;|Added| -|
135|Telephony Subsystem - sim|getSimOperatorNumeric(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimOperatorNumeric(slotId: number): Promise\<string>;|Added| -|
136|Telephony Subsystem - sim|getSimSpn(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimSpn(slotId: number): Promise\<string>;|Added| -|
137|Telephony Subsystem - sim|getSimIccId(slotId: number, callback: AsyncCallback\<string>): void;<br>getSimIccId(slotId: number): Promise\<string>;|Added| -|
138|Telephony Subsystem - sim|getIMSI(slotId: number, callback: AsyncCallback\<string>): void;<br>getIMSI(slotId: number): Promise\<string>;|Added| -|
139|Telephony Subsystem - call|combineConference(callId: number, callback: AsyncCallback\<void>): void;<br>combineConference(callId: number): Promise\<void>;|Added| -|
140|Telephony Subsystem - call|startDTMF(callId: number, character: string, callback: AsyncCallback\<void>): void;<br>startDTMF(callId: number, character: string): Promise\<void>;|Added| -|
141|Telephony Subsystem - call|stopDTMF(callId: number, callback: AsyncCallback\<void>): void;<br>stopDTMF(callId: number): Promise\<void>;|Added| -|
142|Telephony Subsystem - sim|setDefaultVoiceSlotId(slotId: number, callback: AsyncCallback\<void>): void;<br>setDefaultVoiceSlotId(slotId: number): Promise\<void>;|Added| -|
143|Telephony Subsystem - sim|unlockPin(slotId: number, pin: string, callback: AsyncCallback\<LockStatusResponse>): void;<br>unlockPin(slotId: number, pin: string): Promise\<LockStatusResponse>;|Added| -|
144|Telephony Subsystem - sim|alterPin(slotId: number, newPin: string, oldPin: string, callback: AsyncCallback\<LockStatusResponse>): void;<br>alterPin(slotId: number, newPin: string, oldPin: string): Promise\<LockStatusResponse>;|Added| -|
145|Telephony Subsystem - sim|setLockState(slotId: number, pin: string, enable: number, callback: AsyncCallback\<LockStatusResponse>): void;<br>setLockState(slotId: number, pin: string, enable: number): Promise\<LockStatusResponse>;|Added| -|
146|Telephony Subsystem - sim|getSimState(slotId: number, callback: AsyncCallback\<SimState>): void;<br>getSimState(slotId: number): Promise\<SimState>;|Added| -|
147|Telephony Subsystem - sim|getSimState(slotId: number, callback: AsyncCallback\<SimState>): void;<br>getSimState(slotId: number): Promise\<SimState>;|Added| -|
148|Telephony Subsystem - sim|getSimState(slotId: number, callback: AsyncCallback\<SimState>): void;<br>getSimState(slotId: number): Promise\<SimState>;|Added| -|
149|Telephony Subsystem - sim|getSimState(slotId: number, callback: AsyncCallback\<SimState>): void;<br>getSimState(slotId: number): Promise\<SimState>;|Added| -|
150|Telephony Subsystem - call|isEmergencyPhoneNumber(phoneNumber: string, callback: AsyncCallback\<boolean>): void;<br>isEmergencyPhoneNumber(phoneNumber: string, options: EmergencyNumberOptions, callback: AsyncCallback\<boolean>): void;<br>isEmergencyPhoneNumber(phoneNumber: string, options?: EmergencyNumberOptions): Promise\<boolean>;|Added| -|
151|Telephony Subsystem - sms|createMessage(pdu: Array\<number>, specification: string, callback: AsyncCallback\<ShortMessage>): void;<br>createMessage(pdu: Array\<number>, specification: string): Promise\<ShortMessage>;|Added| -|
152|Telephony Subsystem - call|hasCall(callback: AsyncCallback\<boolean>): void;<br>hasCall(): Promise\<boolean>;|Added| -|
153|Telephony Subsystem - sms|sendMessage(options: SendMessageOptions): void;|Added| -|
154|Telephony Subsystem - call|dial(phoneNumber: string, callback: AsyncCallback\<boolean>): void;<br>dial(phoneNumber: string, options: DialOptions, callback: AsyncCallback\<boolean>): void;<br>dial(phoneNumber: string, options?: DialOptions): Promise\<boolean>;|Added| -|
155|Telephony Subsystem - call|interface DialOptions {extras?: boolean;  }|Added| -|
156|Telephony Subsystem - sms|sendMessage(options: SendMessageOptions): void;|Added| -|
157|Telephony Subsystem - sms|getDefaultSmsSlotId(callback: AsyncCallback\<number>): void;<br>getDefaultSmsSlotId(): Promise\<number>;|Added| -|
158|Telephony Subsystem - call|formatPhoneNumber(phoneNumber: string, callback: AsyncCallback\<string>): void;<br>formatPhoneNumber(phoneNumber: string, options: NumberFormatOptions, callback: AsyncCallback\<string>): void;<br>formatPhoneNumber(phoneNumber: string, options?: NumberFormatOptions): Promise\<string>;|Added| -|
159|Telephony Subsystem - call|formatPhoneNumber(phoneNumber: string, callback: AsyncCallback\<string>): void;<br>formatPhoneNumber(phoneNumber: string, options: NumberFormatOptions, callback: AsyncCallback\<string>): void;<br>formatPhoneNumber(phoneNumber: string, options?: NumberFormatOptions): Promise\<string>;|Added| -|
160|Telephony Subsystem - call|formatPhoneNumberToE164(phoneNumber: string, countryCode: string, callback: AsyncCallback\<string>): void;<br>formatPhoneNumberToE164(phoneNumber: string, countryCode: string): Promise\<string>;|Added| -|
161|Telephony Subsystem - sms|setDefaultSmsSlotId(slotId: number, callback: AsyncCallback\<void>): void;<br>setDefaultSmsSlotId(slotId: number): Promise\<void>;|Added| -|
162|Telephony Subsystem - call|getCallState(callback: AsyncCallback\<CallState>): void;<br>getCallState(): Promise\<CallState>;|Added| -|
163|Telephony Subsystem - sms|setSmscAddr(slotId: number, smscAddr: string, callback: AsyncCallback\<void>): void;<br>setSmscAddr(slotId: number, smscAddr: string): Promise\<void>;|Added| -|
164|Telephony Subsystem - sms|getSmscAddr(slotId: number, callback: AsyncCallback\<string>): void;<br>getSmscAddr(slotId: number): Promise\<string>;|Added| -|
165|Telephony Subsystem - sms|addSimMessage(options: SimMessageOptions, callback: AsyncCallback\<void>): void;<br>addSimMessage(options: SimMessageOptions): Promise\<void>;|Added| -|
166|Telephony Subsystem - sms|delSimMessage(slotId: number, msgIndex: number, callback: AsyncCallback\<void>): void;<br>delSimMessage(slotId: number, msgIndex: number): Promise\<void>;|Added| -|
167|Telephony Subsystem - radio|getISOCountryCodeForNetwork(slotId: number, callback: AsyncCallback\<string>): void;<br>getISOCountryCodeForNetwork(slotId: number): Promise\<string>;|Added| -|
168|Telephony Subsystem - sms|updateSimMessage(options: UpdateSimMessageOptions, callback: AsyncCallback\<void>): void;<br>updateSimMessage(options: UpdateSimMessageOptions): Promise\<void>;|Added| -|
169|Telephony Subsystem - radio|getISOCountryCodeForNetwork(slotId: number, callback: AsyncCallback\<string>): void;<br>getISOCountryCodeForNetwork(slotId: number): Promise\<string>;|Added| -|
170|Telephony Subsystem - sms|getAllSimMessages(slotId: number, callback: AsyncCallback\<Array\<SimShortMessage>>): void;<br>getAllSimMessages(slotId: number): Promise\<Array\<SimShortMessage>>;|Added| -|
171|Telephony Subsystem - call|isInEmergencyCall(callback: AsyncCallback\<boolean>): void;<br>isInEmergencyCall(): Promise\<boolean>;|Added| -|
172|Telephony Subsystem - sms|setCBConfig(options: CBConfigOptions, callback: AsyncCallback\<void>): void;<br>setCBConfig(options: CBConfigOptions): Promise\<void>;|Added| -|
173|Telephony Subsystem - call|answer(callId: number, callback: AsyncCallback\<void>): void;<br>answer(callId: number): Promise\<void>;|Added| -|
174|Telephony Subsystem - call|hangup(callId: number, callback: AsyncCallback\<void>): void;<br>hangup(callId: number): Promise\<void>;|Added| -|
175|Telephony Subsystem - call|reject(callId: number, callback: AsyncCallback\<void>): void;<br>reject(callId: number, options: RejectMessageOptions, callback: AsyncCallback\<void>): void;<br>reject(callId: number, options?: RejectMessageOptions): Promise\<void>;|Added| -|
176|Telephony Subsystem - call|holdCall(callId: number, callback: AsyncCallback\<void>): void;<br>holdCall(callId: number): Promise\<void>;|Added| -|
177|Telephony Subsystem - call|unHoldCall(callId: number, callback: AsyncCallback\<void>): void;<br>unHoldCall(callId: number): Promise\<void>;|Added| -|
178|Telephony Subsystem - call|switchCall(callId: number, callback: AsyncCallback\<void>): void;<br>switchCall(callId: number): Promise\<void>;|Added| -|
179|Telephony Subsystem - radio|setNetworkSelectionMode(options: NetworkSelectionModeOptions, callback: AsyncCallback\<void>): void;<br>setNetworkSelectionMode(options: NetworkSelectionModeOptions): Promise\<void>;|Added| -|
180|Telephony Subsystem - radio|getNetworkSearchInformation(slotId: number, callback: AsyncCallback\<NetworkSearchResult>): void;<br>getNetworkSearchInformation(slotId: number): Promise\<NetworkSearchResult>;|Added| -|
181|Telephony Subsystem - radio|getNetworkSelectionMode(slotId: number, callback: AsyncCallback\<NetworkSelectionMode>): void;<br>getNetworkSelectionMode(slotId: number): Promise\<NetworkSelectionMode>;|Added| -|
182|Telephony Subsystem - radio|isRadioOn(callback: AsyncCallback\<boolean>): void;<br>isRadioOn(): Promise\<boolean>;|Added| -|
183|Telephony Subsystem - radio|turnOnRadio(callback: AsyncCallback\<void>): void;<br>turnOnRadio(): Promise\<void>;|Added| -|
184|Telephony Subsystem - radio|turnOffRadio(callback: AsyncCallback\<void>): void;<br>turnOffRadio(): Promise\<void>;|Added| -|
185|Telephony Subsystem - radio|getSignalInformation(slotId: number, callback: AsyncCallback\<Array\<SignalInformation>>): void;<br>getSignalInformation(slotId: number): Promise\<Array\<SignalInformation>>;|Added| -|
186|Telephony Subsystem - radio|getRadioTech(slotId: number, callback: AsyncCallback\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void;<br>getRadioTech(slotId: number): Promise\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>;|Added| -|
187|Telephony Subsystem - radio|getRadioTech(slotId: number, callback: AsyncCallback\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void;<br>getRadioTech(slotId: number): Promise\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>;|Added| -|
188|Telephony Subsystem - radio|getRadioTech(slotId: number, callback: AsyncCallback\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>): void;<br>getRadioTech(slotId: number): Promise\<{psRadioTech: RadioTechnology, csRadioTech: RadioTechnology}>;|Added| -|
189|Data Management - distributeddata|put(key:string, value:Uint8Array / string / boolean / number, callback: AsyncCallback\<void>):void put(key:string, value:Uint8Array / string / boolean / number):Promise\<void>|Added| -|
190|Data Management - distributeddata|delete(key: string, callback: AsyncCallback\<void>): void delete(key: string): Promise\<void>|Added| -|
191|Data Management - distributeddata|on(event:'dataChange', subType: SubscribeType, observer: Callback\<ChangeNotification>): void|Added| -|
192|Data Management - distributeddata|get(key:string, callback:AsyncCallback\<Uint8Array / string / boolean / number>):void get(key:string):Promise\<Uint8Array / string / boolean / number>|Added| -|
193|Data Management - distributeddata|sync(deviceIdList:string[], mode:SyncMode, allowedDelayMs?:number):void|Added| -|
194|Data Management - distributeddata|createKVManager(config: KVManagerConfig, callback: AsyncCallback\<KVManager>): void;<br>createKVManager(config: KVManagerConfig): Promise\<KVManager>;|Added| -|
195|Data Management - distributeddata|getKVStore\<T extends KVStore>(options: Options, storeId: string): Promise\<T>;<br>getKVStore\<T extends KVStore>(options: Options, storeId: string, callback: AsyncCallback\<T>): void;|Added| -|
196|Data Management - distributeddata|on(event:'syncComplete', syncCallback: Callback\<Array\<[string, number]>>):void|Added| -|
197|Data Management - rdb|type ValueType = number / string / boolean;|Added| -|
198|Data Management - rdb|type ValuesBucket = { [key: string]: ValueType / Uint8Array / null; }|Added| -|
199|Data Management - rdb|name: string;|Added| -|
200|Data Management - rdb|constructor(name: string)|Added| -|
201|Data Management - rdb|equalTo(field: string, value: ValueType): RdbPredicates;|Added| -|
202|Data Management - rdb|notEqualTo(field: string, value: ValueType): RdbPredicates;|Added| -|
203|Data Management - rdb|beginWrap(): RdbPredicates;|Added| -|
204|Data Management - rdb|endWrap(): RdbPredicates;|Added| -|
205|Data Management - rdb|getRdbStore(config: StoreConfig, version: number, callback: AsyncCallback\<RdbStore>): void;<br>getRdbStore(config: StoreConfig, version: number): Promise\<RdbStore>;|Added| -|
206|Data Management - rdb|deleteRdbStore(name: string, callback: AsyncCallback\<void>): void;<br>deleteRdbStore(name: string): Promise\<void>;|Added| -|
207|Data Management - rdb|insert(name: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;<br>insert(name: string, values: ValuesBucket): Promise\<number>;|Added| -|
208|Data Management - rdb|update(values: ValuesBucket, rdbPredicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>update(values: ValuesBucket, rdbPredicates: RdbPredicates): Promise\<number>;|Added| -|
209|Data Management - rdb|delete(rdbPredicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>delete(rdbPredicates: RdbPredicates): Promise\<number>;|Added| -|
210|Data Management - rdb|query(rdbPredicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;<br>query(rdbPredicates: RdbPredicates, columns: Array\<string>): Promise\<ResultSet>;|Added| -|
211|Data Management - rdb|executeSql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<void>): void;<br>executeSql(sql: string, bindArgs: Array\<ValueType>): Promise\<void>;|Added| -|
212|Data Management - rdb|like(field: string, value: string): RdbPredicates;|Added| -|
213|Data Management - rdb|glob(field: string, value: string): RdbPredicates;|Added| -|
214|Data Management - rdb|between(field: string, low: ValueType, high: ValueType): RdbPredicates;|Added| -|
215|Data Management - rdb|notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;|Added| -|
216|Data Management - rdb|greaterThan(field: string, value: ValueType): RdbPredicates;|Added| -|
217|Data Management - rdb|lessThan(field: string, value: ValueType): RdbPredicates;|Added| -|
218|Data Management - rdb|greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|Added| -|
219|Data Management - rdb|lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|Added| -|
220|Data Management - rdb|or(): RdbPredicates;|Added| -|
221|Data Management - rdb|and(): RdbPredicates;|Added| -|
222|Data Management - rdb|contains(field: string, value: string): RdbPredicates;|Added| -|
223|Data Management - rdb|beginsWith(field: string, value: string): RdbPredicates;|Added| -|
224|Data Management - rdb|endsWith(field: string, value: string): RdbPredicates;|Added| -|
225|Data Management - rdb|isNull(field: string): RdbPredicates;|Added| -|
226|Data Management - rdb|isNotNull(field: string): RdbPredicates;|Added| -|
227|Data Management - rdb|isEnded: boolean;|Added| -|
228|Data Management - rdb|isStarted: boolean;|Added| -|
229|Data Management - rdb|isClosed: boolean;|Added| -|
230|Data Management - rdb|getColumnIndex(columnName: string): number;|Added| -|
231|Data Management - rdb|getColumnName(columnIndex: number): string;|Added| -|
232|Data Management - rdb|goTo(offset: number): boolean;|Added| -|
233|Data Management - rdb|goToRow(position: number): boolean;|Added| -|
234|Data Management - rdb|goToFirstRow(): boolean;|Added| -|
235|Data Management - rdb|goToLastRow(): boolean;|Added| -|
236|Data Management - rdb|goToNextRow(): boolean;|Added| -|
237|Data Management - rdb|goToPreviousRow(): boolean;|Added| -|
238|Data Management - rdb|getBlob(columnIndex: number): Uint8Array;|Added| -|
239|Data Management - rdb|getString(columnIndex: number): string;|Added| -|
240|Data Management - rdb|getLong(columnIndex: number): number;|Added| -|
241|Data Management - rdb|getDouble(columnIndex: number): number;|Added| -|
242|Data Management - dataAbility|orderByDesc(field: string): DataAbilityPredicates;|Added| -|
243|Data Management - dataAbility|distinct(): DataAbilityPredicates;|Added| -|
244|Data Management - dataAbility|limitAs(value: number): DataAbilityPredicates;|Added| -|
245|Data Management - dataAbility|offsetAs(rowOffset: number): DataAbilityPredicates;|Added| -|
246|Data Management - dataAbility|groupBy(fields: Array\<string>): DataAbilityPredicates;|Added| -|
247|Data Management - dataAbility|indexedBy(field: string): DataAbilityPredicates;|Added| -|
248|Data Management - dataAbility|in(field: string, value: Array\<ValueType>): DataAbilityPredicates;|Added| -|
249|Data Management - dataAbility|notIn(field: string, value: Array\<ValueType>): DataAbilityPredicates;|Added| -|
250|Data Management - dataAbility|glob(field: string, value: string): DataAbilityPredicates;|Added| -|
251|Data Management - dataAbility|between(field: string, low: ValueType, high: ValueType): DataAbilityPredicates;|Added| -|
252|Data Management - dataAbility|notBetween(field: string, low: ValueType, high: ValueType): DataAbilityPredicates;|Added| -|
253|Data Management - dataAbility|greaterThan(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
254|Data Management - dataAbility|lessThan(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
255|Data Management - dataAbility|greaterThanOrEqualTo(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
256|Data Management - dataAbility|lessThanOrEqualTo(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
257|Data Management - dataAbility|orderByAsc(field: string): DataAbilityPredicates;|Added| -|
258|Data Management - rdb|isColumnNull(columnIndex: number): boolean;|Added| -|
259|Data Management - rdb|close(): void;|Added| -|
260|Data Management - dataAbility|createRdbPredicates(name: string, dataAbilityPredicates: DataAbilityPredicates): rdb.RdbPredicates;|Added| -|
261|Data Management - dataAbility|equalTo(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
262|Data Management - dataAbility|notEqualTo(field: string, value: ValueType): DataAbilityPredicates;|Added| -|
263|Data Management - dataAbility|beginWrap():DataAbilityPredicates;|Added| -|
264|Data Management - dataAbility|endWrap(): DataAbilityPredicates;|Added| -|
265|Data Management - rdb|orderByAsc(field: string): RdbPredicates;|Added| -|
266|Data Management - rdb|orderByDesc(field: string): RdbPredicates;|Added| -|
267|Data Management - rdb|distinct(): RdbPredicates;|Added| -|
268|Data Management - rdb|limitAs(value: number): RdbPredicates;|Added| -|
269|Data Management - rdb|offsetAs(rowOffset: number): RdbPredicates;|Added| -|
270|Data Management - rdb|groupBy(fields: Array\<string>): RdbPredicates;|Added| -|
271|Data Management - rdb|indexedBy(field: string): RdbPredicates;|Added| -|
272|Data Management - dataAbility|or(): DataAbilityPredicates;|Added| -|
273|Data Management - dataAbility|and(): DataAbilityPredicates;|Added| -|
274|Data Management - dataAbility|contains(field: string, value: string): DataAbilityPredicates;|Added| -|
275|Data Management - dataAbility|beginsWith(field: string, value: string): DataAbilityPredicates;|Added| -|
276|Data Management - dataAbility|endsWith(field: string, value: string): DataAbilityPredicates;|Added| -|
277|Data Management - dataAbility|isNull(field: string): DataAbilityPredicates;|Added| -|
278|Data Management - dataAbility|isNotNull(field: string): DataAbilityPredicates;|Added| -|
279|Data Management - dataAbility|like(field: string, value: string): DataAbilityPredicates;|Added| -|
280|Data Management - rdb|in(field: string, value: Array\<ValueType>): RdbPredicates;|Added| -|
281|Data Management - rdb|notIn(field: string, value: Array\<ValueType>): RdbPredicates;|Added| -|
282|Data Management - rdb|columnNames: Array\<string>;|Added| -|
283|Data Management - rdb|columnCount: number;|Added| -|
284|Data Management - rdb|rowCount: number;|Added| -|
285|Data Management - rdb|rowIndex: number;|Added| -|
286|Data Management - rdb|isAtFirstRow: boolean;|Added| -|
287|Data Management - rdb|isAtLastRow: boolean;|Added| -|
288|Common Event and Notification Subsystem - notification|title: string;|Added| -|
289|Common Event and Notification Subsystem - notification|sound?: string;|Added| -|
290|Common Event and Notification Subsystem - notification|text: string;|Added| -|
291|Common Event and Notification Subsystem - notification|vibrationValues?: Array\<number>;|Added| -|
292|Common Event and Notification Subsystem - wantAgent|want?: Want;|Added| -|
293|Common Event and Notification Subsystem - notification|vibrationEnabled?: boolean;|Added| -|
294|Common Event and Notification Subsystem - notification|badgeFlag?: boolean;|Added| -|
295|Common Event and Notification Subsystem - notification|type: notification.SlotType;|Added| -|
296|Common Event and Notification Subsystem - wantAgent|code: number;|Added| -|
297|Common Event and Notification Subsystem - notification|contentType: ContentType;|Added| -|
298|Common Event and Notification Subsystem - notification|picture: image.PixelMap;|Added| -|
299|Common Event and Notification Subsystem - notification|briefText: string;|Added| -|
300|Common Event and Notification Subsystem - notification|briefText: string;|Added| -|
301|Common Event and Notification Subsystem - notification|briefText: string;|Added| -|
302|Common Event and Notification Subsystem - notification|bypassDnd?: boolean;|Added| -|
303|Common Event and Notification Subsystem - notification|additionalText?: string;|Added| -|
304|Common Event and Notification Subsystem - wantAgent|cancel(info: WantAgentInfo, callback: AsyncCallback\<void>): void;|Added| -|
305|Common Event and Notification Subsystem - wantAgent|enum OperationType|Added| -|
306|Common Event and Notification Subsystem - wantAgent|enum WantAgentFlags|Added| -|
307|Common Event and Notification Subsystem - wantAgent|permission?: string;|Added| -|
308|Common Event and Notification Subsystem - notification|picture?: NotificationPictureContent;|Added| -|
309|Common Event and Notification Subsystem - notification|normal?: NotificationBasicContent;|Added| -|
310|Common Event and Notification Subsystem - notification|expandedTitle: string;|Added| -|
311|Common Event and Notification Subsystem - notification|expandedTitle: string;|Added| -|
312|Common Event and Notification Subsystem - wantAgent|trigger(info: WantAgentInfo, triggerInfo: TriggerInfo, callback: AsyncCallback\<CompleteData>): void;|Added| -|
313|Common Event and Notification Subsystem - wantAgent|extraInfo?: {[key: string]: any};|Added| -|
314|Common Event and Notification Subsystem - notification|multiLine?: NotificationMultiLineContent;|Added| -|
315|Common Event and Notification Subsystem - notification|level?: notification.SlotLevel;|Added| -|
316|Common Event and Notification Subsystem - notification|lightColor?: number;|Added| -|
317|Common Event and Notification Subsystem - notification|lightEnabled?: boolean;|Added| -|
318|Common Event and Notification Subsystem - notification|lines: Array\<string>;|Added| -|
319|Common Event and Notification Subsystem - notification|lockscreenVisibility?: number;|Added| -|
320|Common Event and Notification Subsystem - notification|longText: string;|Added| -|
321|Common Event and Notification Subsystem - wantAgent|getBundleName(info: WantAgentInfo, callback: AsyncCallback\<string>): void;|Added| -|
322|Common Event and Notification Subsystem - notification|longText?: NotificationLongTextContent;|Added| -|
323|Common Event and Notification Subsystem - notification|longTitle: string;|Added| -|
324|Common Event and Notification Subsystem - wantAgent|judgeEquality(info: WantAgentInfo, info2: WantAgentInfo, callback: AsyncCallback\<boolean>): void;|Added| -|
325|Common Event and Notification Subsystem - wantAgent|getUid(info: WantAgentInfo, callback: AsyncCallback\<number>): void;|Added| -|
326|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_TEMPERATURE_ABNORMAL = common.event.IVI_TEMPERATURE_ABNORMAL,|Added| -|
327|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_VOLTAGE_RECOVERY = common.event.IVI_VOLTAGE_RECOVERY,|Added| -|
328|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_TEMPERATURE_RECOVERY = common.event.IVI_TEMPERATURE_RECOVERY,|Added| -|
329|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_ACTIVE = common.event.IVI_ACTIVE,|Added| -|
330|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USB_DEVICE_ATTACHED = usual.event.hardware.usb.action.USB_DEVICE_ATTACHED,|Added| -|
331|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USB_DEVICE_DETACHED = usual.event.hardware.usb.action.USB_DEVICE_DETACHED,|Added| -|
332|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_PAUSE = common.event.IVI_PAUSE,|Added| -|
333|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_STANDBY = common.event.IVI_STANDBY,|Added| -|
334|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_LASTMODE_SAVE = common.event.IVI_LASTMODE_SAVE,|Added| -|
335|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_VOLTAGE_ABNORMAL = common.event.IVI_VOLTAGE_ABNORMAL,|Added| -|
336|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_HIGH_TEMPERATURE = common.event.IVI_HIGH_TEMPERATURE,|Added| -|
337|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_EXTREME_TEMPERATURE = common.event.IVI_EXTREME_TEMPERATURE,|Added| -|
338|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_UNMOUNTABLE = usual.event.data.DISK_UNMOUNTABLE,|Added| -|
339|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_EJECT = usual.event.data.DISK_EJECT,|Added| -|
340|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED = usual.event.data.VISIBLE_ACCOUNTS_UPDATED,|Added| -|
341|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_ACCOUNT_DELETED = usual.event.data.ACCOUNT_DELETED,|Added| -|
342|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_FOUNDATION_READY = common.event.FOUNDATION_READY,|Added| -|
343|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_AIRPLANE_MODE_CHANGED = usual.event.AIRPLANE_MODE|Added| -|
344|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USB_ACCESSORY_ATTACHED = usual.event.hardware.usb.action.USB_ACCESSORY_ATTACHED,|Added| -|
345|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USB_ACCESSORY_DETACHED = usual.event.hardware.usb.action.USB_ACCESSORY_DETACHED,|Added| -|
346|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_REMOVED = usual.event.data.DISK_REMOVED,|Added| -|
347|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_UNMOUNTED = usual.event.data.DISK_UNMOUNTED,|Added| -|
348|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_MOUNTED = usual.event.data.DISK_MOUNTED,|Added| -|
349|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISK_BAD_REMOVAL = usual.event.data.DISK_BAD_REMOVAL,|Added| -|
350|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED = usual.event.nfc.action.RF_FIELD_OFF_DETECTED,|Added| -|
351|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DISCHARGING = usual.event.DISCHARGING,|Added| -|
352|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_CHARGING = usual.event.CHARGING,|Added| -|
353|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DEVICE_IDLE_MODE_CHANGED = usual.event.DEVICE_IDLE_MODE_CHANGED,|Added| -|
354|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_POWER_SAVE_MODE_CHANGED = usual.event.POWER_SAVE_MODE_CHANGED,|Added| -|
355|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_ADDED = usual.event.USER_ADDED,|Added| -|
356|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_REMOVED = usual.event.USER_REMOVED,|Added| -|
357|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_ABILITY_ADDED = common.event.ABILITY_ADDED,|Added| -|
358|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_ABILITY_REMOVED = common.event.ABILITY_REMOVED,|Added| -|
359|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_ABILITY_UPDATED = common.event.ABILITY_UPDATED,|Added| -|
360|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_LOCATION_MODE_STATE_CHANGED = usual.event.location.MODE_STATE_CHANGED,|Added| -|
361|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_IVI_SLEEP = common.event.IVI_SLEEP,|Added| -|
362|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE = usual.event.bluetooth.host.NAME_UPDATE,|Added| -|
363|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE = usual.event.bluetooth.a2dpsink.CONNECT_STATE_UPDATE,|Added| -|
364|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE = usual.event.bluetooth.a2dpsink.PLAYING_STATE_UPDATE,|Added| -|
365|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE = usual.event.bluetooth.a2dpsink.AUDIO_STATE_UPDATE,|Added| -|
366|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_NFC_ACTION_ADAPTER_STATE_CHANGED = usual.event.nfc.action.ADAPTER_STATE_CHANGED,|Added| -|
367|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED = usual.event.nfc.action.RF_FIELD_ON_DETECTED,|Added| -|
368|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE = usual.event.bluetooth.host.REQ_ENABLE,|Added| -|
369|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE = usual.event.bluetooth.host.REQ_DISABLE,|Added| -|
370|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE = usual.event.bluetooth.host.SCAN_MODE_UPDATE,|Added| -|
371|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED = usual.event.bluetooth.host.DISCOVERY_STARTED,|Added| -|
372|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED = usual.event.bluetooth.host.DISCOVERY_FINISHED,|Added| -|
373|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_CONN_STATE = usual.event.wifi.p2p.CONN_STATE_CHANGE,|Added| -|
374|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_STATE_CHANGED = usual.event.wifi.p2p.STATE_CHANGE,|Added| -|
375|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED = usual.event.wifi.p2p.DEVICES_CHANGE,|Added| -|
376|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED = usual.event.wifi.p2p.CURRENT_DEVICE_CHANGE,|Added| -|
377|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED = usual.event.wifi.p2p.GROUP_STATE_CHANGED,|Added| -|
378|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE = usual.event.bluetooth.handsfree.ag.CONNECT_STATE_UPDATE,|Added| -|
379|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE = usual.event.bluetooth.handsfree.ag.CURRENT_DEVICE_UPDATE,|Added| -|
380|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE = usual.event.bluetooth.handsfree.ag.AUDIO_STATE_UPDATE,|Added| -|
381|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE = usual.event.bluetooth.a2dpsource.CONNECT_STATE_UPDATE,|Added| -|
382|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE = usual.event.bluetooth.a2dpsource.CURRENT_DEVICE_UPDATE,|Added| -|
383|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_RSSI_VALUE = usual.event.wifi.RSSI_VALUE,|Added| -|
384|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_CONN_STATE = usual.event.wifi.CONN_STATE,|Added| -|
385|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_HOTSPOT_STATE = usual.event.wifi.HOTSPOT_STATE,|Added| -|
386|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_AP_STA_JOIN = usual.event.wifi.WIFI_HS_STA_JOIN,|Added| -|
387|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_AP_STA_LEAVE = usual.event.wifi.WIFI_HS_STA_LEAVE,|Added| -|
388|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE = usual.event.wifi.mplink.STATE_CHANGE,|Added| -|
389|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_HWID_LOGOUT = common.event.HWID_LOGOUT,|Added| -|
390|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_HWID_TOKEN_INVALID = common.event.HWID_TOKEN_INVALID,|Added| -|
391|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_HWID_LOGOFF = common.event.HWID_LOGOFF,|Added| -|
392|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_POWER_STATE = usual.event.wifi.POWER_STATE,|Added| -|
393|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_SCAN_FINISHED = usual.event.wifi.SCAN_FINISHED,|Added| -|
394|Common Event and Notification Subsystem - commonEvent|clearAbortCommonEvent(): Promise\<void>;|Added| -|
395|Common Event and Notification Subsystem - commonEvent|bundleName?: string;|Added| -|
396|Common Event and Notification Subsystem - commonEvent|code?: number;|Added| -|
397|Common Event and Notification Subsystem - commonEvent|data?: string;|Added| -|
398|Common Event and Notification Subsystem - commonEvent|subscriberPermissions?: Array\<string>;|Added| -|
399|Common Event and Notification Subsystem - commonEvent|isOrdered?: boolean;|Added| -|
400|Common Event and Notification Subsystem - commonEvent|isSticky?: boolean;|Added| -|
401|Common Event and Notification Subsystem - commonEvent|abortCommonEvent(callback: AsyncCallback\<void>): void;|Added| -|
402|Common Event and Notification Subsystem - commonEvent|abortCommonEvent(): Promise\<void>;|Added| -|
403|Common Event and Notification Subsystem - commonEvent|createSubscriber(subscribeInfo: CommonEventSubscribeInfo): Promise\<CommonEventSubscriber>;|Added| -|
404|Common Event and Notification Subsystem - commonEvent|createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallback\<CommonEventSubscriber>): void;|Added| -|
405|Common Event and Notification Subsystem - commonEvent|subscribe(subscriber: CommonEventSubscriber, callback: AsyncCallback\<CommonEventData>): void;|Added| -|
406|Common Event and Notification Subsystem - commonEvent|publish(event: string, options: CommonEventPublishData, callback: AsyncCallback\<void>): void;|Added| -|
407|Common Event and Notification Subsystem - commonEvent|isOrderedCommonEvent(callback: AsyncCallback\<boolean>): void;|Added| -|
408|Common Event and Notification Subsystem - commonEvent|isOrderedCommonEvent(): Promise\<boolean>;|Added| -|
409|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BOOT_COMPLETED = usual.event.BOOT_COMPLETED,|Added| -|
410|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_LOCKED_BOOT_COMPLETED = usual.event.LOCKED_BOOT_COMPLETED,|Added| -|
411|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_SHUTDOWN = usual.event.SHUTDOWN,|Added| -|
412|Common Event and Notification Subsystem - commonEvent|isStickyCommonEvent(): Promise\<boolean>;|Added| -|
413|Common Event and Notification Subsystem - commonEvent|getData(callback: AsyncCallback\<string>): void;|Added| -|
414|Common Event and Notification Subsystem - commonEvent|getData(): Promise\<string>;|Added| -|
415|Common Event and Notification Subsystem - commonEvent|getSubscribeInfo(callback: AsyncCallback\<CommonEventSubscribeInfo>): void;|Added| -|
416|Common Event and Notification Subsystem - commonEvent|getSubscribeInfo(): Promise\<CommonEventSubscribeInfo>;|Added| -|
417|Common Event and Notification Subsystem - commonEvent|publish(event: string, callback: AsyncCallback\<void>): void;|Added| -|
418|Common Event and Notification Subsystem - commonEvent|event: string|Added| -|
419|Common Event and Notification Subsystem - commonEvent|bundleName?: string;|Added| -|
420|Common Event and Notification Subsystem - commonEvent|code?: number;|Added| -|
421|Common Event and Notification Subsystem - commonEvent|data?: string;|Added| -|
422|Common Event and Notification Subsystem - commonEvent|setCode(code: number, callback: AsyncCallback\<void>): void;|Added| -|
423|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DRIVE_MODE = common.event.DRIVE_MODE,|Added| -|
424|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_HOME_MODE = common.event.HOME_MODE,|Added| -|
425|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_OFFICE_MODE = common.event.OFFICE_MODE,|Added| -|
426|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_STARTED = usual.event.USER_STARTED,|Added| -|
427|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_BACKGROUND = usual.event.USER_BACKGROUND,|Added| -|
428|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_FOREGROUND = usual.event.USER_FOREGROUND,|Added| -|
429|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_SWITCHED = usual.event.USER_SWITCHED,|Added| -|
430|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_STARTING = usual.event.USER_STARTING,|Added| -|
431|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_UNLOCKED = usual.event.USER_UNLOCKED,|Added| -|
432|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_STOPPING = usual.event.USER_STOPPING,|Added| -|
433|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_STOPPED = usual.event.USER_STOPPED,|Added| -|
434|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_HWID_LOGIN = common.event.HWID_LOGIN,|Added| -|
435|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_VERIFIED = usual.event.PACKAGE_VERIFIED,|Added| -|
436|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_EXTERNAL_APPLICATIONS_AVAILABLE = usual.event.EXTERNAL_APPLICATIONS_AVAILABLE,|Added| -|
437|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_EXTERNAL_APPLICATIONS_UNAVAILABLE = usual.event.EXTERNAL_APPLICATIONS_UNAVAILABLE,|Added| -|
438|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_CONFIGURATION_CHANGED = usual.event.CONFIGURATION_CHANGED,|Added| -|
439|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_LOCALE_CHANGED = usual.event.LOCALE_CHANGED,|Added| -|
440|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_MANAGE_PACKAGE_STORAGE = usual.event.MANAGE_PACKAGE_STORAGE,|Added| -|
441|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGES_UNSUSPENDED = usual.event.PACKAGES_UNSUSPENDED,|Added| -|
442|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_MY_PACKAGE_SUSPENDED = usual.event.MY_PACKAGE_SUSPENDED,|Added| -|
443|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_MY_PACKAGE_UNSUSPENDED = usual.event.MY_PACKAGE_UNSUSPENDED,|Added| -|
444|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_UID_REMOVED = usual.event.UID_REMOVED,|Added| -|
445|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_FIRST_LAUNCH = usual.event.PACKAGE_FIRST_LAUNCH,|Added| -|
446|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_NEEDS_VERIFICATION = usual.event.PACKAGE_NEEDS_VERIFICATION,|Added| -|
447|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_SCREEN_OFF = usual.event.SCREEN_OFF,|Added| -|
448|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_SCREEN_ON = usual.event.SCREEN_ON,|Added| -|
449|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_USER_PRESENT = usual.event.USER_PRESENT,|Added| -|
450|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_TIME_TICK = usual.event.TIME_TICK,|Added| -|
451|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_TIME_CHANGED = usual.event.TIME_CHANGED,|Added| -|
452|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_DATE_CHANGED = usual.event.DATE_CHANGED,|Added| -|
453|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BATTERY_CHANGED = usual.event.BATTERY_CHANGED,|Added| -|
454|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BATTERY_LOW = usual.event.BATTERY_LOW,|Added| -|
455|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BATTERY_OKAY = usual.event.BATTERY_OKAY,|Added| -|
456|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_POWER_CONNECTED = usual.event.POWER_CONNECTED,|Added| -|
457|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_POWER_DISCONNECTED = usual.event.POWER_DISCONNECTED,|Added| -|
458|Common Event and Notification Subsystem - commonEvent|unsubscribe(subscriber: CommonEventSubscriber, callback?: AsyncCallback\<void>): void;|Added| -|
459|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED = usual.event.bluetooth.remotedevice.ACL_CONNECTED,|Added| -|
460|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED = usual.event.bluetooth.remotedevice.ACL_DISCONNECTED,|Added| -|
461|Common Event and Notification Subsystem - commonEvent|getAbortCommonEvent(callback: AsyncCallback\<boolean>): void;|Added| -|
462|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE = usual.event.bluetooth.remotedevice.NAME_UPDATE,|Added| -|
463|Common Event and Notification Subsystem - commonEvent|getAbortCommonEvent(): Promise\<boolean>;|Added| -|
464|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_CONNECT_STATE_UPDATE = usual.event.bluetooth.handsfreeunit.CONNECT_STATE_UPDATE,|Added| -|
465|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE = usual.event.bluetooth.remotedevice.PAIR_STATE,|Added| -|
466|Common Event and Notification Subsystem - commonEvent|getCode(callback: AsyncCallback\<number>): void;|Added| -|
467|Common Event and Notification Subsystem - commonEvent|setCode(code: number): Promise\<void>;|Added| -|
468|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AUDIO_STATE_UPDATE = usual.event.bluetooth.handsfreeunit.AUDIO_STATE_UPDATE,|Added| -|
469|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE = usual.event.bluetooth.remotedevice.BATTERY_VALUE_UPDATE,|Added| -|
470|Common Event and Notification Subsystem - commonEvent|getCode(): Promise\<number>;|Added| -|
471|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_COMMON_EVENT = usual.event.bluetooth.handsfreeunit.AG_COMMON_EVENT,|Added| -|
472|Common Event and Notification Subsystem - commonEvent|setCodeAndData(code: number, data: string, callback: AsyncCallback\<void>): void;|Added| -|
473|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_SDP_RESULT = usual.event.bluetooth.remotedevice.SDP_RESULT,|Added| -|
474|Common Event and Notification Subsystem - commonEvent|isStickyCommonEvent(callback: AsyncCallback\<boolean>): void;|Added| -|
475|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HANDSFREEUNIT_AG_CALL_STATE_UPDATE = usual.event.bluetooth.handsfreeunit.AG_CALL_STATE_UPDATE,|Added| -|
476|Common Event and Notification Subsystem - commonEvent|setCodeAndData(code: number, data: string): Promise\<void>;|Added| -|
477|Common Event and Notification Subsystem - commonEvent|events: Array\<string>;|Added| -|
478|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE = usual.event.bluetooth.host.STATE_UPDATE,|Added| -|
479|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE = usual.event.bluetooth.a2dpsource.PLAYING_STATE_UPDATE,|Added| -|
480|Common Event and Notification Subsystem - commonEvent|setData(data: string, callback: AsyncCallback\<void>): void;|Added| -|
481|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSOURCE_AVRCP_CONNECT_STATE_UPDATE = usual.event.bluetooth.a2dpsource.AVRCP_CONNECT_STATE_UPDATE,|Added| -|
482|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_HOST_REQ_DISCOVERABLE = usual.event.bluetooth.host.REQ_DISCOVERABLE,|Added| -|
483|Common Event and Notification Subsystem - commonEvent|publisherPermission?: string;|Added| -|
484|Common Event and Notification Subsystem - commonEvent|setData(data: string): Promise\<void>;|Added| -|
485|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE = usual.event.bluetooth.remotedevice.UUID_VALUE,|Added| -|
486|Common Event and Notification Subsystem - commonEvent|publisherDeviceId?: string;|Added| -|
487|Common Event and Notification Subsystem - commonEvent|clearAbortCommonEvent(callback: AsyncCallback\<void>): void;|Added| -|
488|Common Event and Notification Subsystem - commonEvent|userId?: number;|Added| -|
489|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_TIMEZONE_CHANGED = usual.event.TIMEZONE_CHANGED,|Added| -|
490|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ = usual.event.bluetooth.remotedevice.PAIRING_REQ,|Added| -|
491|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED = usual.event.bluetooth.remotedevice.DISCOVERED,|Added| -|
492|Common Event and Notification Subsystem - commonEvent|priority?: number;|Added| -|
493|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BUNDLE_REMOVED = usual.event.BUNDLE_REMOVED,|Added| -|
494|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE = usual.event.bluetooth.remotedevice.CLASS_VALUE_UPDATE,|Added| -|
495|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_CANCEL = usual.event.bluetooth.remotedevice.PAIRING_CANCEL,|Added| -|
496|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_CLOSE_SYSTEM_DIALOGS = usual.event.CLOSE_SYSTEM_DIALOGS,|Added| -|
497|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_ADDED = usual.event.PACKAGE_ADDED,|Added| -|
498|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REQ = usual.event.bluetooth.remotedevice.CONNECT_REQ,|Added| -|
499|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_FULLY_REMOVED = usual.event.PACKAGE_FULLY_REMOVED,|Added| -|
500|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_REPLACED = usual.event.PACKAGE_REPLACED,|Added| -|
501|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_REPLY = usual.event.bluetooth.remotedevice.CONNECT_REPLY,|Added| -|
502|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_MY_PACKAGE_REPLACED = usual.event.MY_PACKAGE_REPLACED,|Added| -|
503|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_CHANGED = usual.event.PACKAGE_CHANGED,|Added| -|
504|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CONNECT_CANCEL = usual.event.bluetooth.remotedevice.CONNECT_CANCEL,|Added| -|
505|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_REMOVED = usual.event.PACKAGE_REMOVED,|Added| -|
506|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_RESTARTED = usual.event.PACKAGE_RESTARTED,|Added| -|
507|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGE_DATA_CLEARED = usual.event.PACKAGE_DATA_CLEARED,|Added| -|
508|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_PACKAGES_SUSPENDED = usual.event.PACKAGES_SUSPENDED,|Added| -|
509|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE = usual.event.bluetooth.a2dpsource.CODEC_VALUE_UPDATE,|Added| -|
510|Common Event and Notification Subsystem - commonEvent|COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED = usual.event.wifi.p2p.PEER_DISCOVERY_STATE_CHANGE,|Added| -|
511|Common Event and Notification Subsystem - notification|LEVEL_NONE = 0,|Added| -|
512|Common Event and Notification Subsystem - notification|LEVEL_MIN = 1,|Added| -|
513|Common Event and Notification Subsystem - notification|LEVEL_LOW = 2,|Added| -|
514|Common Event and Notification Subsystem - notification|LEVEL_DEFAULT = 3,|Added| -|
515|Common Event and Notification Subsystem - notification|label?: string;|Added| -|
516|Common Event and Notification Subsystem - notification|bundle: string;|Added| -|
517|Common Event and Notification Subsystem - notification|uid?: number;|Added| -|
518|Common Event and Notification Subsystem - notification|NOTIFICATION_CONTENT_MULTILINE,|Added| -|
519|Common Event and Notification Subsystem - notification|UNKNOWN_TYPE = 0,|Added| -|
520|Common Event and Notification Subsystem - notification|SOCIAL_COMMUNICATION = 1,|Added| -|
521|Common Event and Notification Subsystem - notification|LEVEL_HIGH = 4,|Added| -|
522|Common Event and Notification Subsystem - notification|NOTIFICATION_CONTENT_BASIC_TEXT,|Added| -|
523|Common Event and Notification Subsystem - notification|NOTIFICATION_CONTENT_LONG_TEXT,|Added| -|
524|Common Event and Notification Subsystem - notification|NOTIFICATION_CONTENT_PICTURE,|Added| -|
525|Common Event and Notification Subsystem - notification|isFloatingIcon?: boolean;|Added| -|
526|Common Event and Notification Subsystem - notification|label?: string;|Added| -|
527|Common Event and Notification Subsystem - notification|badgeIconStyle?: number;|Added| -|
528|Common Event and Notification Subsystem - notification|showDeliveryTime?: boolean;|Added| -|
529|Common Event and Notification Subsystem - notification|isAlertOnce?: boolean;|Added| -|
530|Common Event and Notification Subsystem - notification|getActiveNotifications(callback: AsyncCallback\<Array\<NotificationRequest>>): void;|Added| -|
531|Common Event and Notification Subsystem - notification|isStopwatch?: boolean;|Added| -|
532|Common Event and Notification Subsystem - notification|isCountDown?: boolean;|Added| -|
533|Common Event and Notification Subsystem - notification|getActiveNotifications(): Promise\<Array\<NotificationRequest>>;|Added| -|
534|Common Event and Notification Subsystem - notification|getActiveNotificationCount(callback: AsyncCallback\<number>): void;|Added| -|
535|Common Event and Notification Subsystem - notification|readonly creatorUid?: number;|Added| -|
536|Common Event and Notification Subsystem - notification|getActiveNotificationCount(): Promise\<number>;|Added| -|
537|Common Event and Notification Subsystem - notification|readonly creatorPid?: number;|Added| -|
538|Common Event and Notification Subsystem - notification|cancel(id: number, label?: string): Promise\<void>;|Added| -|
539|Common Event and Notification Subsystem - notification|classification?: string;|Added| -|
540|Common Event and Notification Subsystem - notification|readonly hashCode?: string;|Added| -|
541|Common Event and Notification Subsystem - notification|cancelAll(callback: AsyncCallback\<void>): void;|Added| -|
542|Common Event and Notification Subsystem - notification|actionButtons?: Array\<NotificationActionButton>;|Added| -|
543|Common Event and Notification Subsystem - notification|cancelAll(): Promise\<void>;|Added| -|
544|Common Event and Notification Subsystem - notification|smallIcon?: image.PixelMap;|Added| -|
545|Common Event and Notification Subsystem - notification|isUnremovable?: boolean;|Added| -|
546|Common Event and Notification Subsystem - notification|largeIcon?: image.PixelMap;|Added| -|
547|Common Event and Notification Subsystem - notification|deliveryTime?: number;|Added| -|
548|Common Event and Notification Subsystem - notification|readonly creatorBundleName?: string;|Added| -|
549|Common Event and Notification Subsystem - notification|tapDismissed?: boolean;|Added| -|
550|Common Event and Notification Subsystem - notification|publish(request: NotificationRequest): Promise\<void>;|Added| -|
551|Common Event and Notification Subsystem - notification|autoDeletedTime?: number;|Added| -|
552|Common Event and Notification Subsystem - notification|cancel(id: number, callback: AsyncCallback\<void>): void;|Added| -|
553|Common Event and Notification Subsystem - notification|content: NotificationContent;|Added| -|
554|Common Event and Notification Subsystem - notification|wantAgent?: WantAgentInfo;|Added| -|
555|Common Event and Notification Subsystem - notification|cancel(id: number, label: string, callback: AsyncCallback\<void>): void;|Added| -|
556|Common Event and Notification Subsystem - notification|getSlot(slotType: SlotType, callback: AsyncCallback\<NotificationSlot>): void;|Added| -|
557|Common Event and Notification Subsystem - notification|extraInfo?: {[key: string]: any};|Added| -|
558|Common Event and Notification Subsystem - notification|getSlot(slotType: SlotType): Promise\<NotificationSlot>;|Added| -|
559|Common Event and Notification Subsystem - notification|SERVICE_INFORMATION = 2,|Added| -|
560|Common Event and Notification Subsystem - notification|color?: number;|Added| -|
561|Common Event and Notification Subsystem - notification|id?: number;|Added| -|
562|Common Event and Notification Subsystem - notification|getSlots(callback: AsyncCallback\<Array\<NotificationSlot>>): void;|Added| -|
563|Common Event and Notification Subsystem - notification|CONTENT_INFORMATION = 3,|Added| -|
564|Common Event and Notification Subsystem - notification|slotType?: notification.SlotType;|Added| -|
565|Common Event and Notification Subsystem - notification|colorEnabled?: boolean;|Added| -|
566|Common Event and Notification Subsystem - notification|OTHER_TYPES = 0xFFFF,|Added| -|
567|Common Event and Notification Subsystem - notification|isOngoing?: boolean;|Added| -|
568|Common Event and Notification Subsystem - notification|addSlot(type: SlotType, callback: AsyncCallback\<void>): void;|Added| -|
569|Common Event and Notification Subsystem - notification|id: number;|Added| -|
570|Common Event and Notification Subsystem - notification|addSlot(type: SlotType): Promise\<void>;|Added| -|
571|Common Event and Notification Subsystem - notification|desc?: string;|Added| -|
572|Common Event and Notification Subsystem - notification|publish(request: NotificationRequest, callback: AsyncCallback\<void>): void;|Added| -|
573|Common Event and Notification Subsystem - notification|removeAllSlots(callback: AsyncCallback\<void>): void;|Added| -|
574|Common Event and Notification Subsystem - notification|removeAllSlots(): Promise\<void>;|Added| -|
575|Common Event and Notification Subsystem - notification|getSlots(): Promise\<Array\<NotificationSlot>>;|Added| -|
576|Common Event and Notification Subsystem - notification|removeSlot(slotType: SlotType, callback: AsyncCallback\<void>): void;|Added| -|
577|Common Event and Notification Subsystem - notification|removeSlot(slotType: SlotType): Promise\<void>;|Added| -|
578|Globalization Subsystem - resourceManager|getString(resId: number, callback: AsyncCallback\<string>);<br>getString(resId: number): Promise\<string>;|Added| -|
579|Globalization Subsystem - resourceManager|getStringArray(resId: number, callback: AsyncCallback\<Array\<string>>);<br>getStringArray(resId: number): Promise\<Array\<string>>;|Added| -|
580|Globalization Subsystem - resourceManager|getConfiguration(callback: AsyncCallback\<Configuration>);<br>getConfiguration(): Promise\<Configuration>;|Added| -|
581|Globalization Subsystem - resourceManager|getDeviceCapability(callback: AsyncCallback\<DeviceCapability>);<br>getDeviceCapability(): Promise\<DeviceCapability>;|Added| -|
582|Globalization Subsystem - resourceManager|getMedia(resId: number, callback: AsyncCallback\<Uint8Array>);<br>getMedia(resId: number): Promise\<Uint8Array>;<br>getMediaBase64(resId: number, callback: AsyncCallback\<string>);<br>getMediaBase64(resId: number): Promise\<string>;|Added| -|
583|Globalization Subsystem - resourceManager|"getPluralString(resId: number, num: number, callback: AsyncCallback\<string>);<br>getPluralString(resId: number, num: number): Promise\<string>;"|Added| -|
584|Globalization Subsystem - resourceManager|DeviceCapability|Added| -|
585|Globalization Subsystem - resourceManager|"getMediaBase64(resId: number, callback: AsyncCallback\<Uint8Array>);<br>getMediaBase64(resId: number): Promise\<Uint9Array>;"|Added| -|
586|Globalization Subsystem - resourceManager|"getResourceManager(callback: AsyncCallback\<ResourceManager>);<br>getResourceManager(bundleName: string, callback: AsyncCallback\<ResourceManager>);<br>getResourceManager(): Promise\<ResourceManager>;<br>getResourceManager(bundleName: string): Promise\<ResourceManager>;"|Added| -|
587|Globalization Subsystem - resourceManager|DeviceType|Added| -|
588|Globalization Subsystem - resourceManager|Direction|Added| -|
589|Globalization Subsystem - resourceManager|Configuration|Added| -|
590|Globalization Subsystem - resourceManager|ScreenDensity|Added| -|
591|Globalization Subsystem - resourceManager|deviceType|Added| -|
592|Globalization Subsystem - resourceManager|locale|Added| -|
593|Globalization Subsystem - resourceManager|direction|Added| -|
594|Globalization Subsystem - resourceManager|screenDensity|Added| -|
595|Power Management Subsystem - batteryInfo|batteryInfo:const batterySOC: number;|Added| -|
596|Power Management Subsystem - batteryInfo|batteryInfo:const technology: string;|Added| -|
597|Power Management Subsystem - batteryInfo|batteryInfo:const isBatteryPresent: boolean;|Added| -|
598|Power Management Subsystem - batteryInfo|batteryInfo:const batteryTemperature: number;|Added| -|
599|Power Management Subsystem - batteryInfo|batteryInfo:const pluggedType: BatteryPluggedType;|Added| -|
600|Power Management Subsystem - batteryInfo|batteryInfo:const chargingStatus: BatteryChargeState;|Added| -|
601|Power Management Subsystem - batteryInfo|batteryInfo:const healthStatus: BatteryHealthState;|Added| -|
602|Power Management Subsystem - batteryInfo|batteryInfo:const voltage: number;|Added| -|
603|Power Management Subsystem - batteryInfo|BatteryChargeState:NONE|Added| -|
604|Power Management Subsystem - batteryInfo|BatteryChargeState:DISABLE|Added| -|
605|Power Management Subsystem - batteryInfo|BatteryChargeState:ENABLE,|Added| -|
606|Power Management Subsystem - batteryInfo|BatteryChargeState:FULL|Added| -|
607|Power Management Subsystem - batteryInfo|BatteryHealthState:COLD|Added| -|
608|Power Management Subsystem - batteryInfo|BatteryHealthState:OVERHEAT|Added| -|
609|Power Management Subsystem - batteryInfo|BatteryHealthState:OVERVOLTAGE|Added| -|
610|Power Management Subsystem - batteryInfo|BatteryHealthState:DEAD|Added| -|
611|Power Management Subsystem - batteryInfo|BatteryHealthState:UNKNOWN|Added| -|
612|Power Management Subsystem - batteryInfo|BatteryHealthState:GOOD|Added| -|
613|Power Management Subsystem - batteryInfo|BatteryPluggedType:WIRELESS|Added| -|
614|Power Management Subsystem - batteryInfo|BatteryPluggedType:NONE|Added| -|
615|Power Management Subsystem - batteryInfo|BatteryPluggedType:AC|Added| -|
616|Power Management Subsystem - batteryInfo|BatteryPluggedType:USB|Added| -|
617|Power Management Subsystem - runningLock|RunningLock:unlock()|Added| -|
618|Power Management Subsystem - runningLock|runningLock:isRunningLockTypeSupported(type: RunningLockType, callback: AsyncCallback\<boolean>): void;|Added| -|
619|Power Management Subsystem - runningLock|runningLock:createRunningLock(name: string, type: runningLockType): RunningLock|Added| -|
620|Power Management Subsystem - runningLock|RunningLock:lock(timeout: number)|Added| -|
621|Power Management Subsystem - runningLock|RunningLock:isUsed(): boolean|Added| -|
622|Power Management Subsystem - runningLock|RunningLockType:BACKGROUND|Added| -|
623|Power Management Subsystem - runningLock|RunningLockType:PROXIMITY_SCREEN_CONTROL|Added| -|
624|Power Management Subsystem - power|power:rebootDevice(reason ?: string)|Added| -|
625|Power Management Subsystem - power|power:isScreenOn(callback: AsyncCallback\<boolean>): void;|Added| -|
626