1| Change Type | Old Version | New Version | d.ts File |
2| ---- | ------ | ------ | -------- |
3|Added|NA|Class name: calendarManager;<br>Method or attribute name: function getCalendarManager(context: Context) : CalendarManager;|@ohos.calendarManager.d.ts|
4|Added|NA|Class name: CalendarManager;<br>Method or attribute name: createCalendar(calendarAccount: CalendarAccount): Promise\<Calendar>;|@ohos.calendarManager.d.ts|
5|Added|NA|Class name: CalendarManager;<br>Method or attribute name: createCalendar(calendarAccount: CalendarAccount, callback: AsyncCallback\<Calendar>): void;|@ohos.calendarManager.d.ts|
6|Added|NA|Class name: CalendarManager;<br>Method or attribute name: deleteCalendar(calendar: Calendar): Promise\<void>;|@ohos.calendarManager.d.ts|
7|Added|NA|Class name: CalendarManager;<br>Method or attribute name: deleteCalendar(calendar: Calendar, callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
8|Added|NA|Class name: CalendarManager;<br>Method or attribute name: getCalendar(calendarAccount?: CalendarAccount): Promise\<Calendar>;|@ohos.calendarManager.d.ts|
9|Added|NA|Class name: CalendarManager;<br>Method or attribute name: getCalendar(calendarAccount: CalendarAccount, callback: AsyncCallback\<Calendar>): void;|@ohos.calendarManager.d.ts|
10|Added|NA|Class name: CalendarManager;<br>Method or attribute name: getCalendar(callback: AsyncCallback\<Calendar>): void;|@ohos.calendarManager.d.ts|
11|Added|NA|Class name: CalendarManager;<br>Method or attribute name: getAllCalendars(): Promise\<Calendar[]>;|@ohos.calendarManager.d.ts|
12|Added|NA|Class name: CalendarManager;<br>Method or attribute name: getAllCalendars(callback: AsyncCallback\<Calendar[]>): void;|@ohos.calendarManager.d.ts|
13|Added|NA|Class name: Calendar;<br>Method or attribute name: readonly id: number|@ohos.calendarManager.d.ts|
14|Added|NA|Class name: Calendar;<br>Method or attribute name: addEvent(event: Event): Promise\<number>;|@ohos.calendarManager.d.ts|
15|Added|NA|Class name: Calendar;<br>Method or attribute name: addEvent(event: Event, callback: AsyncCallback\<number>): void;|@ohos.calendarManager.d.ts|
16|Added|NA|Class name: Calendar;<br>Method or attribute name: addEvents(events: Event[]): Promise\<void>;|@ohos.calendarManager.d.ts|
17|Added|NA|Class name: Calendar;<br>Method or attribute name: addEvents(events: Event[], callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
18|Added|NA|Class name: Calendar;<br>Method or attribute name: deleteEvent(id: number): Promise\<void>;|@ohos.calendarManager.d.ts|
19|Added|NA|Class name: Calendar;<br>Method or attribute name: deleteEvent(id: number, callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
20|Added|NA|Class name: Calendar;<br>Method or attribute name: deleteEvents(ids: number[]): Promise\<void>;|@ohos.calendarManager.d.ts|
21|Added|NA|Class name: Calendar;<br>Method or attribute name: deleteEvents(ids: number[], callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
22|Added|NA|Class name: Calendar;<br>Method or attribute name: updateEvent(event: Event): Promise\<void>;|@ohos.calendarManager.d.ts|
23|Added|NA|Class name: Calendar;<br>Method or attribute name: updateEvent(event: Event, callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
24|Added|NA|Class name: Calendar;<br>Method or attribute name: getEvents(eventFilter?: EventFilter, eventKey?: (keyof Event)[]): Promise\<Event[]>;|@ohos.calendarManager.d.ts|
25|Added|NA|Class name: Calendar;<br>Method or attribute name: getEvents(eventFilter: EventFilter, eventKey: (keyof Event)[], callback: AsyncCallback\<Event[]>):void;|@ohos.calendarManager.d.ts|
26|Added|NA|Class name: Calendar;<br>Method or attribute name: getEvents(callback: AsyncCallback\<Event[]>):void;|@ohos.calendarManager.d.ts|
27|Added|NA|Class name: Calendar;<br>Method or attribute name: getConfig(): CalendarConfig;|@ohos.calendarManager.d.ts|
28|Added|NA|Class name: Calendar;<br>Method or attribute name: setConfig(config: CalendarConfig): Promise\<void>;|@ohos.calendarManager.d.ts|
29|Added|NA|Class name: Calendar;<br>Method or attribute name: setConfig(config: CalendarConfig, callback: AsyncCallback\<void>): void;|@ohos.calendarManager.d.ts|
30|Added|NA|Class name: Calendar;<br>Method or attribute name: getAccount(): CalendarAccount;|@ohos.calendarManager.d.ts|
31|Added|NA|Class name: CalendarAccount;<br>Method or attribute name: readonly name: string;|@ohos.calendarManager.d.ts|
32|Added|NA|Class name: CalendarAccount;<br>Method or attribute name: type: CalendarType;|@ohos.calendarManager.d.ts|
33|Added|NA|Class name: CalendarAccount;<br>Method or attribute name: displayName?: string|@ohos.calendarManager.d.ts|
34|Added|NA|Class name: CalendarConfig;<br>Method or attribute name: enableReminder?: boolean;|@ohos.calendarManager.d.ts|
35|Added|NA|Class name: CalendarConfig;<br>Method or attribute name: color?: (number \| string);|@ohos.calendarManager.d.ts|
36|Added|NA|Class name: Event;<br>Method or attribute name: id?: number;|@ohos.calendarManager.d.ts|
37|Added|NA|Class name: Event;<br>Method or attribute name: type: EventType;|@ohos.calendarManager.d.ts|
38|Added|NA|Class name: Event;<br>Method or attribute name: title?: string;|@ohos.calendarManager.d.ts|
39|Added|NA|Class name: Event;<br>Method or attribute name: location?: Location;|@ohos.calendarManager.d.ts|
40|Added|NA|Class name: Event;<br>Method or attribute name: startTime: number;|@ohos.calendarManager.d.ts|
41|Added|NA|Class name: Event;<br>Method or attribute name: endTime: number;|@ohos.calendarManager.d.ts|
42|Added|NA|Class name: Event;<br>Method or attribute name: isAllDay?: boolean;|@ohos.calendarManager.d.ts|
43|Added|NA|Class name: Event;<br>Method or attribute name: attendee?: Attendee[];|@ohos.calendarManager.d.ts|
44|Added|NA|Class name: Event;<br>Method or attribute name: timeZone?: string;|@ohos.calendarManager.d.ts|
45|Added|NA|Class name: Event;<br>Method or attribute name: reminderTime?: number[];|@ohos.calendarManager.d.ts|
46|Added|NA|Class name: Event;<br>Method or attribute name: recurrenceRule?: RecurrenceRule;|@ohos.calendarManager.d.ts|
47|Added|NA|Class name: Event;<br>Method or attribute name: description?: string;|@ohos.calendarManager.d.ts|
48|Added|NA|Class name: EventService;<br>Method or attribute name: description?: string;|@ohos.calendarManager.d.ts|
49|Added|NA|Class name: Event;<br>Method or attribute name: service?: EventService;|@ohos.calendarManager.d.ts|
50|Added|NA|Class name: CalendarType;<br>Method or attribute name: LOCAL = 'local'|@ohos.calendarManager.d.ts|
51|Added|NA|Class name: CalendarType;<br>Method or attribute name: EMAIL = 'email'|@ohos.calendarManager.d.ts|
52|Added|NA|Class name: CalendarType;<br>Method or attribute name: BIRTHDAY = 'birthday'|@ohos.calendarManager.d.ts|
53|Added|NA|Class name: CalendarType;<br>Method or attribute name: CALDAV = 'caldav'|@ohos.calendarManager.d.ts|
54|Added|NA|Class name: CalendarType;<br>Method or attribute name: SUBSCRIBED = 'subscribed'|@ohos.calendarManager.d.ts|
55|Added|NA|Class name: Location;<br>Method or attribute name: location?: string;|@ohos.calendarManager.d.ts|
56|Added|NA|Class name: Location;<br>Method or attribute name: longitude?: number;|@ohos.calendarManager.d.ts|
57|Added|NA|Class name: Location;<br>Method or attribute name: latitude?: number;|@ohos.calendarManager.d.ts|
58|Added|NA|Class name: EventFilter;<br>Method or attribute name: static filterById(ids: number[]): EventFilter;|@ohos.calendarManager.d.ts|
59|Added|NA|Class name: EventFilter;<br>Method or attribute name: static filterByTime(start: number, end: number): EventFilter;|@ohos.calendarManager.d.ts|
60|Added|NA|Class name: EventFilter;<br>Method or attribute name: static filterByTitle(title: string): EventFilter;|@ohos.calendarManager.d.ts|
61|Added|NA|Class name: EventType;<br>Method or attribute name: NORMAL = 0|@ohos.calendarManager.d.ts|
62|Added|NA|Class name: EventType;<br>Method or attribute name: IMPORTANT = 1|@ohos.calendarManager.d.ts|
63|Added|NA|Class name: RecurrenceRule;<br>Method or attribute name: recurrenceFrequency: RecurrenceFrequency;|@ohos.calendarManager.d.ts|
64|Added|NA|Class name: RecurrenceRule;<br>Method or attribute name: expire?: number;|@ohos.calendarManager.d.ts|
65|Added|NA|Class name: RecurrenceFrequency;<br>Method or attribute name: YEARLY = 0|@ohos.calendarManager.d.ts|
66|Added|NA|Class name: RecurrenceFrequency;<br>Method or attribute name: MONTHLY = 1|@ohos.calendarManager.d.ts|
67|Added|NA|Class name: RecurrenceFrequency;<br>Method or attribute name: WEEKLY = 2|@ohos.calendarManager.d.ts|
68|Added|NA|Class name: RecurrenceFrequency;<br>Method or attribute name: DAILY = 3|@ohos.calendarManager.d.ts|
69|Added|NA|Class name: Attendee;<br>Method or attribute name: name: string;|@ohos.calendarManager.d.ts|
70|Added|NA|Class name: Attendee;<br>Method or attribute name: email: string;|@ohos.calendarManager.d.ts|
71|Added|NA|Class name: EventService;<br>Method or attribute name: type: ServiceType;|@ohos.calendarManager.d.ts|
72|Added|NA|Class name: EventService;<br>Method or attribute name: uri: string;|@ohos.calendarManager.d.ts|
73|Added|NA|Class name: ServiceType;<br>Method or attribute name: MEETING = 'Meeting'|@ohos.calendarManager.d.ts|
74|Added|NA|Class name: ServiceType;<br>Method or attribute name: WATCHING = 'Watching'|@ohos.calendarManager.d.ts|
75|Added|NA|Class name: ServiceType;<br>Method or attribute name: REPAYMENT = 'Repayment'|@ohos.calendarManager.d.ts|
76|Added|NA|Class name: ServiceType;<br>Method or attribute name: LIVE = 'Live'|@ohos.calendarManager.d.ts|
77|Added|NA|Class name: ServiceType;<br>Method or attribute name: SHOPPING = 'Shopping'|@ohos.calendarManager.d.ts|
78|Added|NA|Class name: ServiceType;<br>Method or attribute name: TRIP = 'Trip'|@ohos.calendarManager.d.ts|
79|Added|NA|Class name: ServiceType;<br>Method or attribute name: CLASS = 'Class'|@ohos.calendarManager.d.ts|
80|Added|NA|Class name: ServiceType;<br>Method or attribute name: SPORTS_EVENTS = 'SportsEvents'|@ohos.calendarManager.d.ts|
81|Added|NA|Class name: ServiceType;<br>Method or attribute name: SPORTS_EXERCISE = 'SportsExercise'|@ohos.calendarManager.d.ts|
82|Added|NA|Class name: contact;<br>Method or attribute name: function addContact(context: Context, contact: Contact, callback: AsyncCallback\<number>): void;|@ohos.contact.d.ts|
83|Added|NA|Class name: contact;<br>Method or attribute name: function addContact(context: Context, contact: Contact): Promise\<number>;|@ohos.contact.d.ts|
84|Added|NA|Class name: contact;<br>Method or attribute name: function selectContacts(callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
85|Added|NA|Class name: contact;<br>Method or attribute name: function selectContacts(): Promise\<Array\<Contact>>;|@ohos.contact.d.ts|
86|Added|NA|Class name: contact;<br>Method or attribute name: function selectContacts(options: ContactSelectionOptions, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
87|Added|NA|Class name: contact;<br>Method or attribute name: function selectContacts(options: ContactSelectionOptions): Promise\<Array\<Contact>>;|@ohos.contact.d.ts|
88|Added|NA|Class name: contact;<br>Method or attribute name: function deleteContact(context: Context, key: string, callback: AsyncCallback\<void>): void;|@ohos.contact.d.ts|
89|Added|NA|Class name: contact;<br>Method or attribute name: function deleteContact(context: Context, key: string): Promise\<void>;|@ohos.contact.d.ts|
90|Added|NA|Class name: contact;<br>Method or attribute name: function queryContact(context: Context, key: string, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
91|Added|NA|Class name: contact;<br>Method or attribute name: function queryContact(context: Context, key: string, holder: Holder, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
92|Added|NA|Class name: contact;<br>Method or attribute name: function queryContact(context: Context, key: string, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
93|Added|NA|Class name: contact;<br>Method or attribute name: function queryContact(context: Context, key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
94|Added|NA|Class name: contact;<br>Method or attribute name: function queryContact(context: Context, key: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Contact>;|@ohos.contact.d.ts|
95|Added|NA|Class name: contact;<br>Method or attribute name: function queryContacts(context: Context, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
96|Added|NA|Class name: contact;<br>Method or attribute name: function queryContacts(context: Context, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
97|Added|NA|Class name: contact;<br>Method or attribute name: function queryContacts(context: Context, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
98|Added|NA|Class name: contact;<br>Method or attribute name: function queryContacts(context: Context, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
99|Added|NA|Class name: contact;<br>Method or attribute name: function queryContacts(context: Context, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;|@ohos.contact.d.ts|
100|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(context: Context, email: string, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
101|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(context: Context, email: string, holder: Holder,<br>    callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
102|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(context: Context, email: string, attrs: ContactAttributes,<br>    callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
103|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(context: Context, email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
104|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(context: Context, email: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;|@ohos.contact.d.ts|
105|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(context: Context, phoneNumber: string, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
106|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
107|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(context: Context, phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
108|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder: Holder, attrs: ContactAttributes,<br>    callback: AsyncCallback\<Array\<Contact>>): void;|@ohos.contact.d.ts|
109|Added|NA|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(context: Context, phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;|@ohos.contact.d.ts|
110|Added|NA|Class name: contact;<br>Method or attribute name: function queryGroups(context: Context, callback: AsyncCallback\<Array\<Group>>): void;|@ohos.contact.d.ts|
111|Added|NA|Class name: contact;<br>Method or attribute name: function queryGroups(context: Context, holder: Holder, callback: AsyncCallback\<Array\<Group>>): void;|@ohos.contact.d.ts|
112|Added|NA|Class name: contact;<br>Method or attribute name: function queryGroups(context: Context, holder?: Holder): Promise\<Array\<Group>>;|@ohos.contact.d.ts|
113|Added|NA|Class name: contact;<br>Method or attribute name: function queryHolders(context: Context, callback: AsyncCallback\<Array\<Holder>>): void;|@ohos.contact.d.ts|
114|Added|NA|Class name: contact;<br>Method or attribute name: function queryHolders(context: Context): Promise\<Array\<Holder>>;|@ohos.contact.d.ts|
115|Added|NA|Class name: contact;<br>Method or attribute name: function queryKey(context: Context, id: number, callback: AsyncCallback\<string>): void;|@ohos.contact.d.ts|
116|Added|NA|Class name: contact;<br>Method or attribute name: function queryKey(context: Context, id: number, holder: Holder, callback: AsyncCallback\<string>): void;|@ohos.contact.d.ts|
117|Added|NA|Class name: contact;<br>Method or attribute name: function queryKey(context: Context, id: number, holder?: Holder): Promise\<string>;|@ohos.contact.d.ts|
118|Added|NA|Class name: contact;<br>Method or attribute name: function queryMyCard(context: Context, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
119|Added|NA|Class name: contact;<br>Method or attribute name: function queryMyCard(context: Context, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;|@ohos.contact.d.ts|
120|Added|NA|Class name: contact;<br>Method or attribute name: function queryMyCard(context: Context, attrs?: ContactAttributes): Promise\<Contact>;|@ohos.contact.d.ts|
121|Added|NA|Class name: contact;<br>Method or attribute name: function updateContact(context: Context, contact: Contact, callback: AsyncCallback\<void>): void;|@ohos.contact.d.ts|
122|Added|NA|Class name: contact;<br>Method or attribute name: function updateContact(context: Context, contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\<void>): void;|@ohos.contact.d.ts|
123|Added|NA|Class name: contact;<br>Method or attribute name: function updateContact(context: Context, contact: Contact, attrs?: ContactAttributes): Promise\<void>;|@ohos.contact.d.ts|
124|Added|NA|Class name: contact;<br>Method or attribute name: function isLocalContact(context: Context, id: number, callback: AsyncCallback\<boolean>): void;|@ohos.contact.d.ts|
125|Added|NA|Class name: contact;<br>Method or attribute name: function isLocalContact(context: Context, id: number): Promise\<boolean>;|@ohos.contact.d.ts|
126|Added|NA|Class name: contact;<br>Method or attribute name: function isMyCard(context: Context, id: number, callback: AsyncCallback\<boolean>): void;|@ohos.contact.d.ts|
127|Added|NA|Class name: contact;<br>Method or attribute name: function isMyCard(context: Context, id: number): Promise\<boolean>;|@ohos.contact.d.ts|
128|Added|NA|Class name: ContactSelectionOptions;<br>Method or attribute name: isMultiSelect?: boolean;|@ohos.contact.d.ts|
129|Added|NA|Class name: settings;<br>Method or attribute name: function getValue(context: Context, name: string, callback: AsyncCallback\<string>): void;|@ohos.settings.d.ts|
130|Added|NA|Class name: settings;<br>Method or attribute name: function getValue(context: Context, name: string): Promise\<string>;|@ohos.settings.d.ts|
131|Added|NA|Class name: settings;<br>Method or attribute name: function setValue(context: Context, name: string, value: string, callback: AsyncCallback\<boolean>): void;|@ohos.settings.d.ts|
132|Added|NA|Class name: settings;<br>Method or attribute name: function setValue(context: Context, name: string, value: string): Promise\<boolean>;|@ohos.settings.d.ts|
133|Added|NA|Class name: settings;<br>Method or attribute name: function getValueSync(context: Context, name: string, defValue: string): string;|@ohos.settings.d.ts|
134|Added|NA|Class name: settings;<br>Method or attribute name: function setValueSync(context: Context, name: string, value: string): boolean;|@ohos.settings.d.ts|
135|Deprecated version changed|Class name: contact;<br>Method or attribute name: function addContact(contact: Contact, callback: AsyncCallback\<number>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function addContact(contact: Contact, callback: AsyncCallback\<number>): void;<br>New version information: 10<br>Substitute API: contact.addContact#addContact|@ohos.contact.d.ts|
136|Deprecated version changed|Class name: contact;<br>Method or attribute name: function addContact(contact: Contact): Promise\<number>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function addContact(contact: Contact): Promise\<number>;<br>New version information: 10<br>Substitute API: contact.addContact#addContact|@ohos.contact.d.ts|
137|Deprecated version changed|Class name: contact;<br>Method or attribute name: function selectContact(callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function selectContact(callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.selectContact#selectContacts|@ohos.contact.d.ts|
138|Deprecated version changed|Class name: contact;<br>Method or attribute name: function selectContact(): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function selectContact(): Promise\<Array\<Contact>>;<br>New version information: 10<br>Substitute API: contact.selectContact#selectContacts|@ohos.contact.d.ts|
139|Deprecated version changed|Class name: contact;<br>Method or attribute name: function deleteContact(key: string, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function deleteContact(key: string, callback: AsyncCallback\<void>): void;<br>New version information: 10<br>Substitute API: contact.deleteContact#deleteContact|@ohos.contact.d.ts|
140|Deprecated version changed|Class name: contact;<br>Method or attribute name: function deleteContact(key: string): Promise\<void>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function deleteContact(key: string): Promise\<void>;<br>New version information: 10<br>Substitute API: contact.deleteContact#deleteContact|@ohos.contact.d.ts|
141|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryContact#queryContact|@ohos.contact.d.ts|
142|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryContact#queryContact|@ohos.contact.d.ts|
143|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryContact#queryContact|@ohos.contact.d.ts|
144|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryContact#queryContact|@ohos.contact.d.ts|
145|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Contact>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Contact>;<br>New version information: 10<br>Substitute API: contact.queryContact#queryContact|@ohos.contact.d.ts|
146|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContacts(callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContacts#queryContacts|@ohos.contact.d.ts|
147|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContacts#queryContacts|@ohos.contact.d.ts|
148|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContacts(attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContacts#queryContacts|@ohos.contact.d.ts|
149|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContacts#queryContacts|@ohos.contact.d.ts|
150|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: 10<br>Substitute API: contact.queryContacts#queryContacts|@ohos.contact.d.ts|
151|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByEmail#queryContactsByEmail|@ohos.contact.d.ts|
152|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByEmail#queryContactsByEmail|@ohos.contact.d.ts|
153|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByEmail#queryContactsByEmail|@ohos.contact.d.ts|
154|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByEmail#queryContactsByEmail|@ohos.contact.d.ts|
155|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: 10<br>Substitute API: contact.queryContactsByEmail#queryContactsByEmail|@ohos.contact.d.ts|
156|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByPhoneNumber#queryContactsByPhoneNumber|@ohos.contact.d.ts|
157|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByPhoneNumber#queryContactsByPhoneNumber|@ohos.contact.d.ts|
158|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByPhoneNumber#queryContactsByPhoneNumber|@ohos.contact.d.ts|
159|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: 10<br>Substitute API: contact.queryContactsByPhoneNumber#queryContactsByPhoneNumber|@ohos.contact.d.ts|
160|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: 10<br>Substitute API: contact.queryContactsByPhoneNumber#queryContactsByPhoneNumber|@ohos.contact.d.ts|
161|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryGroups(callback: AsyncCallback\<Array\<Group>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryGroups(callback: AsyncCallback\<Array\<Group>>): void;<br>New version information: 10<br>Substitute API: contact.queryGroups#queryGroups|@ohos.contact.d.ts|
162|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryGroups(holder: Holder, callback: AsyncCallback\<Array\<Group>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryGroups(holder: Holder, callback: AsyncCallback\<Array\<Group>>): void;<br>New version information: 10<br>Substitute API: contact.queryGroups#queryGroups|@ohos.contact.d.ts|
163|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryGroups(holder?: Holder): Promise\<Array\<Group>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryGroups(holder?: Holder): Promise\<Array\<Group>>;<br>New version information: 10<br>Substitute API: contact.queryGroups#queryGroups|@ohos.contact.d.ts|
164|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryHolders(callback: AsyncCallback\<Array\<Holder>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryHolders(callback: AsyncCallback\<Array\<Holder>>): void;<br>New version information: 10<br>Substitute API: contact.queryHolders#queryHolders|@ohos.contact.d.ts|
165|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryHolders(): Promise\<Array\<Holder>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryHolders(): Promise\<Array\<Holder>>;<br>New version information: 10<br>Substitute API: contact.queryHolders#queryHolders|@ohos.contact.d.ts|
166|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryKey(id: number, callback: AsyncCallback\<string>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryKey(id: number, callback: AsyncCallback\<string>): void;<br>New version information: 10<br>Substitute API: contact.queryKey#queryKey|@ohos.contact.d.ts|
167|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder: Holder, callback: AsyncCallback\<string>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder: Holder, callback: AsyncCallback\<string>): void;<br>New version information: 10<br>Substitute API: contact.queryKey#queryKey|@ohos.contact.d.ts|
168|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder?: Holder): Promise\<string>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder?: Holder): Promise\<string>;<br>New version information: 10<br>Substitute API: contact.queryKey#queryKey|@ohos.contact.d.ts|
169|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryMyCard(callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryMyCard(callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryMyCard#queryMyCard|@ohos.contact.d.ts|
170|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: 10<br>Substitute API: contact.queryMyCard#queryMyCard|@ohos.contact.d.ts|
171|Deprecated version changed|Class name: contact;<br>Method or attribute name: function queryMyCard(attrs?: ContactAttributes): Promise\<Contact>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryMyCard(attrs?: ContactAttributes): Promise\<Contact>;<br>New version information: 10<br>Substitute API: contact.queryMyCard#queryMyCard|@ohos.contact.d.ts|
172|Deprecated version changed|Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, callback: AsyncCallback\<void>): void;<br>New version information: 10<br>Substitute API: contact.updateContact#updateContact|@ohos.contact.d.ts|
173|Deprecated version changed|Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\<void>): void;<br>New version information: 10<br>Substitute API: contact.updateContact#updateContact|@ohos.contact.d.ts|
174|Deprecated version changed|Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\<void>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\<void>;<br>New version information: 10<br>Substitute API: contact.updateContact#updateContact|@ohos.contact.d.ts|
175|Deprecated version changed|Class name: contact;<br>Method or attribute name: function isLocalContact(id: number, callback: AsyncCallback\<boolean>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isLocalContact(id: number, callback: AsyncCallback\<boolean>): void;<br>New version information: 10<br>Substitute API: contact.isLocalContact#isLocalContact|@ohos.contact.d.ts|
176|Deprecated version changed|Class name: contact;<br>Method or attribute name: function isLocalContact(id: number): Promise\<boolean>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isLocalContact(id: number): Promise\<boolean>;<br>New version information: 10<br>Substitute API: contact.isLocalContact#isLocalContact|@ohos.contact.d.ts|
177|Deprecated version changed|Class name: contact;<br>Method or attribute name: function isMyCard(id: number, callback: AsyncCallback\<boolean>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isMyCard(id: number, callback: AsyncCallback\<boolean>): void;<br>New version information: 10<br>Substitute API: contact.deleteContact#deleteContact|@ohos.contact.d.ts|
178|Deprecated version changed|Class name: contact;<br>Method or attribute name: function isMyCard(id: number): Promise\<boolean>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isMyCard(id: number): Promise\<boolean>;<br>New version information: 10<br>Substitute API: contact.isMyCard#isMyCard|@ohos.contact.d.ts|
179|Deprecated version changed|Class name: settings;<br>Method or attribute name: function getURI(name: string): Promise\<object>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function getURI(name: string): Promise\<object>;<br>New version information: 9<br>Substitute API: |@ohos.settings.d.ts|
180|Deprecated version changed|Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\<object>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\<object>;<br>New version information: 9<br>Substitute API: ohos.settings#getValue|@ohos.settings.d.ts|
181|Deprecated version changed|Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>New version information: 9<br>Substitute API: ohos.settings#setValue|@ohos.settings.d.ts|
182|Error code added|Class name: call;<br>Method or attribute name: function makeCall(phoneNumber: string): Promise\<void>;<br>Old version information: |Class name: call;<br>Method or attribute name: function makeCall(phoneNumber: string): Promise\<void>;<br>New version information: 401,8300001,8300002,8300003,8300999|@ohos.telephony.call.d.ts|
183|Access level changed|Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>New version information: systemapi|@ohos.settings.d.ts|
184|Permission changed|Class name: contact;<br>Method or attribute name: function addContact(contact: Contact): Promise\<number>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function addContact(contact: Contact): Promise\<number>;<br>New version information: ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts|
185|Permission changed|Class name: contact;<br>Method or attribute name: function selectContact(): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function selectContact(): Promise\<Array\<Contact>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
186|Permission changed|Class name: contact;<br>Method or attribute name: function deleteContact(key: string): Promise\<void>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function deleteContact(key: string): Promise\<void>;<br>New version information: ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts|
187|Permission changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, callback: AsyncCallback\<Contact>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
188|Permission changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
189|Permission changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
190|Permission changed|Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Contact>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Contact>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
191|Permission changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
192|Permission changed|Class name: contact;<br>Method or attribute name: function queryContacts(attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
193|Permission changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
194|Permission changed|Class name: contact;<br>Method or attribute name: function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
195|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
196|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
197|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
198|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
199|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
200|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
201|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback\<Array\<Contact>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
202|Permission changed|Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise\<Array\<Contact>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
203|Permission changed|Class name: contact;<br>Method or attribute name: function queryGroups(holder: Holder, callback: AsyncCallback\<Array\<Group>>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryGroups(holder: Holder, callback: AsyncCallback\<Array\<Group>>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
204|Permission changed|Class name: contact;<br>Method or attribute name: function queryGroups(holder?: Holder): Promise\<Array\<Group>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryGroups(holder?: Holder): Promise\<Array\<Group>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
205|Permission changed|Class name: contact;<br>Method or attribute name: function queryHolders(): Promise\<Array\<Holder>>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryHolders(): Promise\<Array\<Holder>>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
206|Permission changed|Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder: Holder, callback: AsyncCallback\<string>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder: Holder, callback: AsyncCallback\<string>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
207|Permission changed|Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder?: Holder): Promise\<string>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryKey(id: number, holder?: Holder): Promise\<string>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
208|Permission changed|Class name: contact;<br>Method or attribute name: function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback\<Contact>): void;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
209|Permission changed|Class name: contact;<br>Method or attribute name: function queryMyCard(attrs?: ContactAttributes): Promise\<Contact>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function queryMyCard(attrs?: ContactAttributes): Promise\<Contact>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
210|Permission changed|Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\<void>): void;<br>Old version information: |Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback\<void>): void;<br>New version information: ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts|
211|Permission changed|Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\<void>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function updateContact(contact: Contact, attrs?: ContactAttributes): Promise\<void>;<br>New version information: ohos.permission.WRITE_CONTACTS|@ohos.contact.d.ts|
212|Permission changed|Class name: contact;<br>Method or attribute name: function isLocalContact(id: number): Promise\<boolean>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isLocalContact(id: number): Promise\<boolean>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
213|Permission changed|Class name: contact;<br>Method or attribute name: function isMyCard(id: number): Promise\<boolean>;<br>Old version information: |Class name: contact;<br>Method or attribute name: function isMyCard(id: number): Promise\<boolean>;<br>New version information: ohos.permission.READ_CONTACTS|@ohos.contact.d.ts|
214|Model changed|Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\<object>): void;<br>Old version information: FAModelOnly|Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string, callback: AsyncCallback\<object>): void;<br>New version information: famodelonly|@ohos.settings.d.ts|
215|Model changed|Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\<object>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function getValue(dataAbilityHelper: DataAbilityHelper, name: string): Promise\<object>;<br>New version information: famodelonly|@ohos.settings.d.ts|
216|Model changed|Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\<boolean>): void;<br>Old version information: FAModelOnly|Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object, callback: AsyncCallback\<boolean>): void;<br>New version information: famodelonly|@ohos.settings.d.ts|
217|Model changed|Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>Old version information: |Class name: settings;<br>Method or attribute name: function setValue(dataAbilityHelper: DataAbilityHelper, name: string, value: object): Promise\<boolean>;<br>New version information: famodelonly|@ohos.settings.d.ts|
218|Model changed|Class name: settings;<br>Method or attribute name: function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;<br>Old version information: FAModelOnly|Class name: settings;<br>Method or attribute name: function getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string;<br>New version information: famodelonly|@ohos.settings.d.ts|
219|Model changed|Class name: settings;<br>Method or attribute name: function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;<br>Old version information: FAModelOnly|Class name: settings;<br>Method or attribute name: function setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean;<br>New version information: famodelonly|@ohos.settings.d.ts|
220|Type changed|Class name: Contact;<br>Method or attribute name: readonly id?: number<br>Old version information: |Class name: Contact;<br>Method or attribute name: readonly id?: number<br>New version information: ?number|@ohos.contact.d.ts|
221|Type changed|Class name: Contact;<br>Method or attribute name: readonly key?: string<br>Old version information: |Class name: Contact;<br>Method or attribute name: readonly key?: string<br>New version information: ?string|@ohos.contact.d.ts|
222|Type changed|Class name: Contact;<br>Method or attribute name: contactAttributes?: ContactAttributes<br>Old version information: |Class name: Contact;<br>Method or attribute name: contactAttributes?: ContactAttributes<br>New version information: ?ContactAttributes|@ohos.contact.d.ts|
223|Type changed|Class name: Contact;<br>Method or attribute name: emails?: Email[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: emails?: Email[]<br>New version information: ?Email[]|@ohos.contact.d.ts|
224|Type changed|Class name: Contact;<br>Method or attribute name: events?: Event[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: events?: Event[]<br>New version information: ?Event[]|@ohos.contact.d.ts|
225|Type changed|Class name: Contact;<br>Method or attribute name: groups?: Group[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: groups?: Group[]<br>New version information: ?Group[]|@ohos.contact.d.ts|
226|Type changed|Class name: Contact;<br>Method or attribute name: imAddresses?: ImAddress[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: imAddresses?: ImAddress[]<br>New version information: ?ImAddress[]|@ohos.contact.d.ts|
227|Type changed|Class name: Contact;<br>Method or attribute name: phoneNumbers?: PhoneNumber[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: phoneNumbers?: PhoneNumber[]<br>New version information: ?PhoneNumber[]|@ohos.contact.d.ts|
228|Type changed|Class name: Contact;<br>Method or attribute name: portrait?: Portrait<br>Old version information: |Class name: Contact;<br>Method or attribute name: portrait?: Portrait<br>New version information: ?Portrait|@ohos.contact.d.ts|
229|Type changed|Class name: Contact;<br>Method or attribute name: postalAddresses?: PostalAddress[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: postalAddresses?: PostalAddress[]<br>New version information: ?PostalAddress[]|@ohos.contact.d.ts|
230|Type changed|Class name: Contact;<br>Method or attribute name: relations?: Relation[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: relations?: Relation[]<br>New version information: ?Relation[]|@ohos.contact.d.ts|
231|Type changed|Class name: Contact;<br>Method or attribute name: sipAddresses?: SipAddress[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: sipAddresses?: SipAddress[]<br>New version information: ?SipAddress[]|@ohos.contact.d.ts|
232|Type changed|Class name: Contact;<br>Method or attribute name: websites?: Website[]<br>Old version information: |Class name: Contact;<br>Method or attribute name: websites?: Website[]<br>New version information: ?Website[]|@ohos.contact.d.ts|
233|Type changed|Class name: Contact;<br>Method or attribute name: name?: Name<br>Old version information: |Class name: Contact;<br>Method or attribute name: name?: Name<br>New version information: ?Name|@ohos.contact.d.ts|
234|Type changed|Class name: Contact;<br>Method or attribute name: nickName?: NickName<br>Old version information: |Class name: Contact;<br>Method or attribute name: nickName?: NickName<br>New version information: ?NickName|@ohos.contact.d.ts|
235|Type changed|Class name: Contact;<br>Method or attribute name: note?: Note<br>Old version information: |Class name: Contact;<br>Method or attribute name: note?: Note<br>New version information: ?Note|@ohos.contact.d.ts|
236|Type changed|Class name: Contact;<br>Method or attribute name: organization?: Organization<br>Old version information: |Class name: Contact;<br>Method or attribute name: organization?: Organization<br>New version information: ?Organization|@ohos.contact.d.ts|
237|Type changed|Class name: ContactAttributes;<br>Method or attribute name: attributes: Attribute[]<br>Old version information: |Class name: ContactAttributes;<br>Method or attribute name: attributes: Attribute[]<br>New version information: Attribute[]|@ohos.contact.d.ts|
238|Type changed|Class name: Email;<br>Method or attribute name: email: string<br>Old version information: |Class name: Email;<br>Method or attribute name: email: string<br>New version information: string|@ohos.contact.d.ts|
239|Type changed|Class name: Email;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: Email;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
240|Type changed|Class name: Event;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: Event;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
241|Type changed|Class name: ImAddress;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: ImAddress;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
242|Type changed|Class name: PhoneNumber;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: PhoneNumber;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
243|Type changed|Class name: PostalAddress;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
244|Type changed|Class name: Relation;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: Relation;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
245|Type changed|Class name: SipAddress;<br>Method or attribute name: labelName?: string<br>Old version information: |Class name: SipAddress;<br>Method or attribute name: labelName?: string<br>New version information: ?string|@ohos.contact.d.ts|
246|Type changed|Class name: Email;<br>Method or attribute name: displayName?: string<br>Old version information: |Class name: Email;<br>Method or attribute name: displayName?: string<br>New version information: ?string|@ohos.contact.d.ts|
247|Type changed|Class name: Email;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: Email;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
248|Type changed|Class name: Event;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: Event;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
249|Type changed|Class name: ImAddress;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: ImAddress;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
250|Type changed|Class name: PhoneNumber;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: PhoneNumber;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
251|Type changed|Class name: PostalAddress;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
252|Type changed|Class name: Relation;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: Relation;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
253|Type changed|Class name: SipAddress;<br>Method or attribute name: labelId?: number<br>Old version information: |Class name: SipAddress;<br>Method or attribute name: labelId?: number<br>New version information: ?number|@ohos.contact.d.ts|
254|Type changed|Class name: Event;<br>Method or attribute name: eventDate: string<br>Old version information: |Class name: Event;<br>Method or attribute name: eventDate: string<br>New version information: string|@ohos.contact.d.ts|
255|Type changed|Class name: Group;<br>Method or attribute name: groupId?: number<br>Old version information: |Class name: Group;<br>Method or attribute name: groupId?: number<br>New version information: ?number|@ohos.contact.d.ts|
256|Type changed|Class name: Group;<br>Method or attribute name: title: string<br>Old version information: |Class name: Group;<br>Method or attribute name: title: string<br>New version information: string|@ohos.contact.d.ts|
257|Type changed|Class name: Holder;<br>Method or attribute name: readonly bundleName: string<br>Old version information: |Class name: Holder;<br>Method or attribute name: readonly bundleName: string<br>New version information: string|@ohos.contact.d.ts|
258|Type changed|Class name: Holder;<br>Method or attribute name: readonly displayName?: string<br>Old version information: |Class name: Holder;<br>Method or attribute name: readonly displayName?: string<br>New version information: ?string|@ohos.contact.d.ts|
259|Type changed|Class name: Holder;<br>Method or attribute name: holderId?: number<br>Old version information: |Class name: Holder;<br>Method or attribute name: holderId?: number<br>New version information: ?number|@ohos.contact.d.ts|
260|Type changed|Class name: ImAddress;<br>Method or attribute name: imAddress: string<br>Old version information: |Class name: ImAddress;<br>Method or attribute name: imAddress: string<br>New version information: string|@ohos.contact.d.ts|
261|Type changed|Class name: Name;<br>Method or attribute name: familyName?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: familyName?: string<br>New version information: ?string|@ohos.contact.d.ts|
262|Type changed|Class name: Name;<br>Method or attribute name: familyNamePhonetic?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: familyNamePhonetic?: string<br>New version information: ?string|@ohos.contact.d.ts|
263|Type changed|Class name: Name;<br>Method or attribute name: fullName: string<br>Old version information: |Class name: Name;<br>Method or attribute name: fullName: string<br>New version information: string|@ohos.contact.d.ts|
264|Type changed|Class name: Name;<br>Method or attribute name: givenName?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: givenName?: string<br>New version information: ?string|@ohos.contact.d.ts|
265|Type changed|Class name: Name;<br>Method or attribute name: givenNamePhonetic?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: givenNamePhonetic?: string<br>New version information: ?string|@ohos.contact.d.ts|
266|Type changed|Class name: Name;<br>Method or attribute name: middleName?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: middleName?: string<br>New version information: ?string|@ohos.contact.d.ts|
267|Type changed|Class name: Name;<br>Method or attribute name: middleNamePhonetic?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: middleNamePhonetic?: string<br>New version information: ?string|@ohos.contact.d.ts|
268|Type changed|Class name: Name;<br>Method or attribute name: namePrefix?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: namePrefix?: string<br>New version information: ?string|@ohos.contact.d.ts|
269|Type changed|Class name: Name;<br>Method or attribute name: nameSuffix?: string<br>Old version information: |Class name: Name;<br>Method or attribute name: nameSuffix?: string<br>New version information: ?string|@ohos.contact.d.ts|
270|Type changed|Class name: NickName;<br>Method or attribute name: nickName: string<br>Old version information: |Class name: NickName;<br>Method or attribute name: nickName: string<br>New version information: string|@ohos.contact.d.ts|
271|Type changed|Class name: Note;<br>Method or attribute name: noteContent: string<br>Old version information: |Class name: Note;<br>Method or attribute name: noteContent: string<br>New version information: string|@ohos.contact.d.ts|
272|Type changed|Class name: Organization;<br>Method or attribute name: name: string<br>Old version information: |Class name: Organization;<br>Method or attribute name: name: string<br>New version information: string|@ohos.contact.d.ts|
273|Type changed|Class name: Organization;<br>Method or attribute name: title?: string<br>Old version information: |Class name: Organization;<br>Method or attribute name: title?: string<br>New version information: ?string|@ohos.contact.d.ts|
274|Type changed|Class name: PhoneNumber;<br>Method or attribute name: phoneNumber: string<br>Old version information: |Class name: PhoneNumber;<br>Method or attribute name: phoneNumber: string<br>New version information: string|@ohos.contact.d.ts|
275|Type changed|Class name: Portrait;<br>Method or attribute name: uri: string<br>Old version information: |Class name: Portrait;<br>Method or attribute name: uri: string<br>New version information: string|@ohos.contact.d.ts|
276|Type changed|Class name: PostalAddress;<br>Method or attribute name: city?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: city?: string<br>New version information: ?string|@ohos.contact.d.ts|
277|Type changed|Class name: PostalAddress;<br>Method or attribute name: country?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: country?: string<br>New version information: ?string|@ohos.contact.d.ts|
278|Type changed|Class name: PostalAddress;<br>Method or attribute name: neighborhood?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: neighborhood?: string<br>New version information: ?string|@ohos.contact.d.ts|
279|Type changed|Class name: PostalAddress;<br>Method or attribute name: pobox?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: pobox?: string<br>New version information: ?string|@ohos.contact.d.ts|
280|Type changed|Class name: PostalAddress;<br>Method or attribute name: postalAddress: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: postalAddress: string<br>New version information: string|@ohos.contact.d.ts|
281|Type changed|Class name: PostalAddress;<br>Method or attribute name: postcode?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: postcode?: string<br>New version information: ?string|@ohos.contact.d.ts|
282|Type changed|Class name: PostalAddress;<br>Method or attribute name: region?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: region?: string<br>New version information: ?string|@ohos.contact.d.ts|
283|Type changed|Class name: PostalAddress;<br>Method or attribute name: street?: string<br>Old version information: |Class name: PostalAddress;<br>Method or attribute name: street?: string<br>New version information: ?string|@ohos.contact.d.ts|
284|Type changed|Class name: Relation;<br>Method or attribute name: relationName: string<br>Old version information: |Class name: Relation;<br>Method or attribute name: relationName: string<br>New version information: string|@ohos.contact.d.ts|
285|Type changed|Class name: SipAddress;<br>Method or attribute name: sipAddress: string<br>Old version information: |Class name: SipAddress;<br>Method or attribute name: sipAddress: string<br>New version information: string|@ohos.contact.d.ts|
286|Type changed|Class name: Website;<br>Method or attribute name: website: string<br>Old version information: |Class name: Website;<br>Method or attribute name: website: string<br>New version information: string|@ohos.contact.d.ts|
287