From 149f05fa057e110901c5ea130b5a444e927a93db Mon Sep 17 00:00:00 2001 From: dingxiaochen Date: Tue, 20 Sep 2022 10:30:55 +0800 Subject: [PATCH 1/2] fixed 78beebd from https://gitee.com/dingxiaochen/interface_sdk-js/pulls/2765 fix js api. Signed-off-by: dingxiaochen --- api/@ohos.contact.d.ts | 2 +- api/@ohos.telephony.radio.d.ts | 76 ++++++++++++++++++++++++++++++++++ api/@ohos.telephony.sim.d.ts | 4 +- 3 files changed, 79 insertions(+), 3 deletions(-) diff --git a/api/@ohos.contact.d.ts b/api/@ohos.contact.d.ts index b286bac943..3570dc1a02 100644 --- a/api/@ohos.contact.d.ts +++ b/api/@ohos.contact.d.ts @@ -39,7 +39,7 @@ declare namespace contact { * * @return Returns the contact list which user select; * returns empty contact list if user not select. - * @syscap SystemCapability.Applications.ContactsData, SystemCapability.Applications.Contacts + * @syscap SystemCapability.Applications.ContactsData * @permission ohos.permission.READ_CONTACTS */ function selectContact(callback: AsyncCallback>): void; diff --git a/api/@ohos.telephony.radio.d.ts b/api/@ohos.telephony.radio.d.ts index 0975e3245b..618492de5f 100644 --- a/api/@ohos.telephony.radio.d.ts +++ b/api/@ohos.telephony.radio.d.ts @@ -285,6 +285,42 @@ declare namespace radio { function getPreferredNetwork(slotId: number, callback: AsyncCallback): void; function getPreferredNetwork(slotId: number): Promise; + /** + * Get the IMS registration state info of specificed IMS service type. + * + * @param slotId Indicates the card slot index number, + * ranging from 0 to the maximum card slot index number supported by the device. + * @param imsType Indicates the ims service type of the {@link ImsServiceType}. + * @param callback including an instance of the {@link ImsRegInfo} class. + * @permission ohos.permission.GET_TELEPHONY_STATE + * @systemapi Hide this for inner system use. + * @since 9 + */ + function getImsRegInfo(slotId: number, imsType: ImsServiceType, callback: AsyncCallback): void; + function getImsRegInfo(slotId: number, imsType: ImsServiceType): Promise; + + /** + * Called when the IMS registration state of specificed IMS service type corresponding + * to a monitored {@code slotId} updates. + * + * @param slotId Indicates the card slot index number, + * ranging from 0 to the maximum card slot index number supported by the device. + * @param imsType Indicates the ims service type of the {@link ImsServiceType}. + * @param callback including an instance of the {@link ImsRegInfo} class. + * @permission ohos.permission.GET_TELEPHONY_STATE + * @systemapi Hide this for inner system use. + * @since 9 + */ + function on(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback: Callback): void; + + + /** + * @permission ohos.permission.GET_TELEPHONY_STATE + * @systemapi Hide this for inner system use. + * @since 9 + */ + function off(type: 'imsRegStateChange', slotId: number, imsType: ImsServiceType, callback?: Callback): void; + /** * @systemapi Hide this for inner system use. * @since 8 @@ -778,6 +814,46 @@ declare namespace radio { /** Manual network selection modes. */ NETWORK_SELECTION_MANUAL } + + /** + * @systemapi Hide this for inner system use. + * @since 9 + */ + export enum ImsRegState { + IMS_UNREGISTERED, + IMS_REGISTERED, + } + + /** + * @systemapi Hide this for inner system use. + * @since 9 + */ + export enum ImsRegTech { + REGISTRATION_TECH_NONE, + REGISTRATION_TECH_LTE, + REGISTRATION_TECH_IWLAN, + REGISTRATION_TECH_NR, + } + + /** + * @systemapi Hide this for inner system use. + * @since 9 + */ + export interface ImsRegInfo { + imsRegState: ImsRegState; + imsRegTech: ImsRegTech; + } + + /** + * @systemapi Hide this for inner system use. + * @since 9 + */ + export enum ImsServiceType { + TYPE_VOICE, + TYPE_VIDEO, + TYPE_UT, + TYPE_SMS, + } } export default radio; \ No newline at end of file diff --git a/api/@ohos.telephony.sim.d.ts b/api/@ohos.telephony.sim.d.ts index 475772a1af..7e3d87ff68 100644 --- a/api/@ohos.telephony.sim.d.ts +++ b/api/@ohos.telephony.sim.d.ts @@ -434,7 +434,7 @@ declare namespace sim { * * @param slotId Indicates the card slot index number, * ranging from 0 to the maximum card slot index number supported by the device. - * @return Returns the opkey; returns "-1" if no SIM card is inserted or + * @return Returns the opkey; returns an empty string if no SIM card is inserted or * no opkey matched. * @since 9 */ @@ -446,7 +446,7 @@ declare namespace sim { * * @param slotId Indicates the card slot index number, * ranging from 0 to the maximum card slot index number supported by the device. - * @return Returns the opname; returns null if no SIM card is inserted or + * @return Returns the opname; returns an empty string if no SIM card is inserted or * no opname matched. * @since 9 */ -- Gitee From 868d25d4f990497e05d8a2600114195ed52291fc Mon Sep 17 00:00:00 2001 From: dingxiaochen Date: Tue, 20 Sep 2022 07:28:37 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20api/?= =?UTF-8?q?@ohos.contact.d.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/@ohos.contact.d.ts | 1030 ---------------------------------------- 1 file changed, 1030 deletions(-) delete mode 100644 api/@ohos.contact.d.ts diff --git a/api/@ohos.contact.d.ts b/api/@ohos.contact.d.ts deleted file mode 100644 index 3570dc1a02..0000000000 --- a/api/@ohos.contact.d.ts +++ /dev/null @@ -1,1030 +0,0 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { AsyncCallback } from './basic'; - -/** - * Contains variety of system contact, provides functions for adding, updating and deleting these system contact - * and provides methods for querying the information of contact. - * - * @since 7 - * @syscap SystemCapability.Applications.ContactsData - */ -declare namespace contact { - /** - * Creates a contact. - * - * @param contact Indicates the contact information. - * @return Returns the contact ID (which can be obtained by {@link Contact#getId()}) if the creation is successful; - * returns {@link Contact#INVALID_CONTACT_ID} if the creation fails. - * @permission ohos.permission.WRITE_CONTACTS - */ - function addContact(contact: Contact, callback: AsyncCallback): void; - function addContact(contact: Contact): Promise; - - /** - * Select contact. - * - * @return Returns the contact list which user select; - * returns empty contact list if user not select. - * @syscap SystemCapability.Applications.ContactsData - * @permission ohos.permission.READ_CONTACTS - */ - function selectContact(callback: AsyncCallback>): void; - function selectContact(): Promise>; - - /** - * Deletes a specified contact. - * - * @param key Indicates the unique query key of a contact to delete. - * @return Returns {@code true} if the contact is deleted; returns {@code false} otherwise. - * @permission ohos.permission.WRITE_CONTACTS - */ - function deleteContact(key: string, callback: AsyncCallback): void; - function deleteContact(key: string): Promise; - - /** - * Queries a specified contact of specified attributes. - * - * @param key Indicates the unique query key of a contact. - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @param attrs Indicates the contact attributes. If this parameter is null, all attributes are used for matching. - * @return Returns the specified contact. - * @permission ohos.permission.READ_CONTACTS - */ - function queryContact(key: string, callback: AsyncCallback): void; - function queryContact(key: string, holder: Holder, callback: AsyncCallback): void; - function queryContact(key: string, attrs: ContactAttributes, callback: AsyncCallback): void; - function queryContact(key: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback): void; - function queryContact(key: string, holder?: Holder, attrs?: ContactAttributes): Promise; - - /** - * Queries contacts with query conditions. - * - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @param attrs Indicates the contact attributes. If this parameter is null, all attributes are used for matching. - * @return Returns the {@code Contact} list object. - * @permission ohos.permission.READ_CONTACTS - */ - function queryContacts(callback: AsyncCallback>): void; - function queryContacts(holder: Holder, callback: AsyncCallback>): void; - function queryContacts(attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContacts(holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContacts(holder?: Holder, attrs?: ContactAttributes): Promise>; - - /** - * Queries contacts by a specified email address, contact holder, and contact attributes. - * - * @param email Indicates the email address. - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @param attrs Indicates the contact attributes. If this parameter is null, all attributes are used for matching. - * @return Returns a {@code Contact} list object. - * @permission ohos.permission.READ_CONTACTS - */ - function queryContactsByEmail(email: string, callback: AsyncCallback>): void; - function queryContactsByEmail(email: string, holder: Holder, callback: AsyncCallback>): void; - function queryContactsByEmail(email: string, attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContactsByEmail(email: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContactsByEmail(email: string, holder?: Holder, attrs?: ContactAttributes): Promise>; - - /** - * Queries contacts by a phone number, holder, and contact attribute. - * - * @param phoneNumber Indicates the phone number. Only full match is supported, and wildcards are not supported. - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @param attrs Indicates the contact attribute. If this parameter is null, - * all attributes will be used for matching. - * @return Returns the {@code Contact} list object. - * @permission ohos.permission.READ_CONTACTS - */ - function queryContactsByPhoneNumber(phoneNumber: string, callback: AsyncCallback>): void; - function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, callback: AsyncCallback>): void; - function queryContactsByPhoneNumber(phoneNumber: string, attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContactsByPhoneNumber(phoneNumber: string, holder: Holder, attrs: ContactAttributes, callback: AsyncCallback>): void; - function queryContactsByPhoneNumber(phoneNumber: string, holder?: Holder, attrs?: ContactAttributes): Promise>; - - /** - * Queries contact groups. - * - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @return Returns the contact group list. - * @permission ohos.permission.READ_CONTACTS - */ - function queryGroups(callback: AsyncCallback>): void; - function queryGroups(holder: Holder, callback: AsyncCallback>): void; - function queryGroups(holder?: Holder): Promise>; - - /** - * Queries contact holders. - * - * @return Returns the {@code Holder} list object. - * @permission ohos.permission.READ_CONTACTS - */ - function queryHolders(callback: AsyncCallback>): void; - function queryHolders(): Promise>; - - /** - * Obtains the query key of a contact based on a specified ID and holder. - * - * @param id Indicates the contact ID. - * @param holder Indicates the contact holder. If this parameter is null, the default holder is used for matching. - * @return Returns the query key of the contact. - * @permission ohos.permission.READ_CONTACTS - */ - function queryKey(id: number, callback: AsyncCallback): void; - function queryKey(id: number, holder: Holder, callback: AsyncCallback): void; - function queryKey(id: number, holder?: Holder): Promise; - - /** - * Queries information about "my card". - * - * @param attrs Indicates the contact attributes. If this parameter is null, all attributes are used for matching. - * @return Returns information about "my card". - * @permission ohos.permission.READ_CONTACTS - */ - function queryMyCard(callback: AsyncCallback): void; - function queryMyCard(attrs: ContactAttributes, callback: AsyncCallback): void; - function queryMyCard(attrs?: ContactAttributes): Promise; - - /** - * Updates specified attributes of a contact. - * - * @param contact Indicates the contact whose information is to update. - * @param attrs Indicates the contact attributes to update. If this parameter is null, - * all available attributes will be updated. - * @return Returns {@code true} if the update is successful; returns {@code false} otherwise. - * @permission ohos.permission.WRITE_CONTACTS - */ - function updateContact(contact: Contact, callback: AsyncCallback): void; - function updateContact(contact: Contact, attrs: ContactAttributes, callback: AsyncCallback): void; - function updateContact(contact: Contact, attrs?: ContactAttributes): Promise; - - /** - * Checks whether the contact ID is in the local phone book. - * - * @param id Indicates the contact ID. - * @return Returns {@code true} if the contact ID is in the local phone book; returns {@code false} otherwise. - * @permission ohos.permission.READ_CONTACTS - */ - function isLocalContact(id: number, callback: AsyncCallback): void; - function isLocalContact(id: number): Promise; - - /** - * Checks whether the contact ID is of "my card". - * - * @param id Indicates the contact ID. - * @return Returns {@code true} if the contact ID is of "my card"; returns {@code false} otherwise. - * @permission ohos.permission.READ_CONTACTS - */ - function isMyCard(id: number, callback: AsyncCallback): void; - function isMyCard(id: number): Promise; - - /** - * Provides methods for contact information - */ - class Contact { - /** - * Indicates the contact ID. - */ - static readonly INVALID_CONTACT_ID: -1 - - /** - * Indicates the contact ID. - */ - readonly id?: number - - /** - * Indicates the query key that identifies the contact. - */ - readonly key?: string - - /** - * Indicates the contact attributes. - */ - contactAttributes?: ContactAttributes - - /** - * Indicates an email address of the contact. - */ - emails?: Email[] - - /** - * Indicates an event (special date) of the contact. - */ - events?: Event[] - - /** - * Indicates a group of the contact. - */ - groups?: Group[] - - /** - * Indicates an IM address of the contact. - */ - imAddresses?: ImAddress[] - - /** - * Indicates a phone number of the contact. - */ - phoneNumbers?: PhoneNumber[] - - /** - * Indicates the contact portrait. - */ - portrait?: Portrait - - /** - * Indicates a postal address of the contact. - */ - postalAddresses?: PostalAddress[] - - /** - * Indicates a relation of the contact. - */ - relations?: Relation[] - - /** - * Indicates a Session Initiation Protocol (SIP) address of the contact. - */ - sipAddresses?: SipAddress[] - - /** - * Indicates a website of the contact. - */ - websites?: Website[] - - /** - * Indicates the contact name. - */ - name?: Name - - /** - * Indicates the contact nickname. - */ - nickName?: NickName - - /** - * Indicates the contact note. - */ - note?: Note - - /** - * Indicates organization information about the contact. - */ - organization?: Organization - } - - /** - * Provides methods for contact attributes information - */ - class ContactAttributes { - /** - * Indicates the contact attributes. - */ - attributes: Attribute[] - } - - /** - * Provides methods for attribute information - */ - enum Attribute { - /** - * Indicates the contact event. - */ - ATTR_CONTACT_EVENT, - - /** - * Indicates the email address. - */ - ATTR_EMAIL, - - /** - * Indicates the contact group. - */ - ATTR_GROUP_MEMBERSHIP, - - /** - * Indicates the instant messaging (IM) address. - */ - ATTR_IM, - - /** - * Indicates the name. - */ - ATTR_NAME, - - /** - * Indicates the nickname. - */ - ATTR_NICKNAME, - - /** - * Indicates the note. - */ - ATTR_NOTE, - - /** - * Indicates the organization. - */ - ATTR_ORGANIZATION, - - /** - * Indicates the phone number. - */ - ATTR_PHONE, - - /** - * Indicates the portrait. - */ - ATTR_PORTRAIT, - - /** - * Indicates the postal address. - */ - ATTR_POSTAL_ADDRESS, - - /** - * Indicates the relation. - */ - ATTR_RELATION, - - /** - * Indicates the Session Initiation Protocol (SIP) address. - */ - ATTR_SIP_ADDRESS, - - /** - * Indicates the website. - */ - ATTR_WEBSITE - } - - /** - * Provides methods for email information - */ - class Email { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates a home email. - */ - static readonly EMAIL_HOME: 1 - - /** - * Indicates a work email. - */ - static readonly EMAIL_WORK: 2 - - /** - * Indicates an email of the OTHER type. - */ - static readonly EMAIL_OTHER: 3 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the email address. - */ - email: string - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the displayed email name. - */ - displayName?: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for event information - */ - class Event { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates an anniversary event. - */ - static readonly EVENT_ANNIVERSARY: 1 - - /** - * Indicates an event of the OTHER type. - */ - static readonly EVENT_OTHER: 2 - - /** - * Indicates an birthday event. - */ - static readonly EVENT_BIRTHDAY: 3 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the event date. - */ - eventDate: string - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for group information - */ - class Group { - /** - * Indicates the contact group ID. - */ - groupId?: number - - /** - * Indicates the contact group title. - */ - title: string - } - - /** - * Provides methods for holder information - */ - class Holder { - /** - * Indicates the bundle name of a contact holder. - */ - readonly bundleName: string - - /** - * Indicates the displayed name of a contact holder. - */ - readonly displayName?: string - - /** - * Indicates the holder ID. - */ - holderId?: number - } - - /** - * Provides methods for ImAddress information - */ - class ImAddress { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: -1 - - /** - * Indicates an AIM instant message. - */ - static readonly IM_AIM: 0 - - /** - * Indicates a Windows Live instant message. - */ - static readonly IM_MSN: 1 - - /** - * Indicates a Yahoo instant message. - */ - static readonly IM_YAHOO: 2 - - /** - * Indicates a Skype instant message. - */ - static readonly IM_SKYPE: 3 - - /** - * Indicates a QQ instant message. - */ - static readonly IM_QQ: 4 - - /** - * Indicates an ICQ instant message. - */ - static readonly IM_ICQ: 6 - - /** - * Indicates a Jabber instant message. - */ - static readonly IM_JABBER: 7 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -2 - - /** - * Indicates the IM address. - */ - imAddress: string - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for name information - */ - class Name { - /** - * Indicates the family name of the contact. - */ - familyName?: string - - /** - * Indicates the phonetic family name of the contact. - */ - familyNamePhonetic?: string - - /** - * Indicates the full name of the contact. - */ - fullName: string - - /** - * Indicates the given name of the contact. - */ - givenName?: string - - /** - * Indicates the phonetic given name of the contact. - */ - givenNamePhonetic?: string - - /** - * Indicates the middle name of the contact. - */ - middleName?: string - - /** - * Indicates the phonetic middle name of the contact. - */ - middleNamePhonetic?: string - - /** - * Indicates the prefix of the contact name. - */ - namePrefix?: string - - /** - * Indicates the suffix of this contact name. - */ - nameSuffix?: string - } - - /** - * Provides methods for nick name information - */ - class NickName { - /** - * Indicates the nickname of the contact. - */ - nickName: string - } - - /** - * Provides methods for note information - */ - class Note { - /** - * Indicates the note content. - */ - noteContent: string - } - - /** - * Provides methods for organization information - */ - class Organization { - /** - * Indicates the name of the organization to which the contact belongs. - */ - name: string - - /** - * Indicates the title of the organization. - */ - title?: string - } - - /** - * Provides methods for phone number information - */ - class PhoneNumber { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates a home number. - */ - static readonly NUM_HOME: 1 - - /** - * Indicates a mobile phone number. - */ - static readonly NUM_MOBILE: 2 - - /** - * Indicates a work number. - */ - static readonly NUM_WORK: 3 - - /** - * Indicates a work fax number. - */ - static readonly NUM_FAX_WORK: 4 - - /** - * Indicates a home fax number. - */ - static readonly NUM_FAX_HOME: 5 - - /** - * Indicates a pager number. - */ - static readonly NUM_PAGER: 6 - - /** - * Indicates a number of the OTHER type. - */ - static readonly NUM_OTHER: 7 - - /** - * Indicates a callback number. - */ - static readonly NUM_CALLBACK: 8 - - /** - * Indicates a car number. - */ - static readonly NUM_CAR: 9 - - /** - * Indicates a company director number. - */ - static readonly NUM_COMPANY_MAIN: 10 - - /** - * Indicates an Integrated Services Digital Network (ISDN) number. - */ - static readonly NUM_ISDN: 11 - - /** - * Indicates a main number. - */ - static readonly NUM_MAIN: 12 - - /** - * Indicates a number of the OTHER_FAX type. - */ - static readonly NUM_OTHER_FAX: 13 - - /** - * Indicates a radio number. - */ - static readonly NUM_RADIO: 14 - - /** - * Indicates a telex number. - */ - static readonly NUM_TELEX: 15 - - /** - * Indicates a teletypewriter (TTY) or test-driven development (TDD) number. - */ - static readonly NUM_TTY_TDD: 16 - - /** - * Indicates a work mobile phone number. - */ - static readonly NUM_WORK_MOBILE: 17 - - /** - * Indicates a work pager number. - */ - static readonly NUM_WORK_PAGER: 18 - - /** - * Indicates an assistant number. - */ - static readonly NUM_ASSISTANT: 19 - - /** - * Indicates an MMS number. - */ - static readonly NUM_MMS: 20 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the phone number of the contact. - */ - phoneNumber: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for portrait information - */ - class Portrait { - /** - * Indicates the uri of the contact portrait. - */ - uri: string - } - - /** - * Provides methods for postal address information - */ - class PostalAddress { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates a home address. - */ - static readonly ADDR_HOME: 1 - - /** - * Indicates a work address. - */ - static readonly ADDR_WORK: 2 - - /** - * Indicates an address of the OTHER type. - */ - static readonly ADDR_OTHER: 3 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the city where this contact is located. - */ - city?: string - - /** - * Indicates the country/region where this contact is located. - */ - country?: string - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the neighborhood where this contact is located. - */ - neighborhood?: string - - /** - * Indicates the post box of this contact. - */ - pobox?: string - - /** - * Indicates the postal address of this contact. - */ - postalAddress: string - - /** - * Indicates the postal code of this contact. - */ - postcode?: string - - /** - * Indicates the area where this contact is located. - */ - region?: string - - /** - * Indicates the street where this contact is located. - */ - street?: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for relation information - */ - class Relation { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates an assistant. - */ - static readonly RELATION_ASSISTANT: 1 - - /** - * Indicates a brother. - */ - static readonly RELATION_BROTHER: 2 - - /** - * Indicates a child. - */ - static readonly RELATION_CHILD: 3 - - /** - * Indicates a domestic partner. - */ - static readonly RELATION_DOMESTIC_PARTNER: 4 - - /** - * Indicates a father. - */ - static readonly RELATION_FATHER: 5 - - /** - * Indicates a friend. - */ - static readonly RELATION_FRIEND: 6 - - /** - * Indicates a manager. - */ - static readonly RELATION_MANAGER: 7 - - /** - * Indicates a mother. - */ - static readonly RELATION_MOTHER: 8 - - /** - * Indicates a parent. - */ - static readonly RELATION_PARENT: 9 - - /** - * Indicates a partner. - */ - static readonly RELATION_PARTNER: 10 - - /** - * Indicates a referrer. - */ - static readonly RELATION_REFERRED_BY: 11 - - /** - * Indicates a relative. - */ - static readonly RELATION_RELATIVE: 12 - - /** - * Indicates a sister. - */ - static readonly RELATION_SISTER: 13 - - /** - * Indicates a spouse. - */ - static readonly RELATION_SPOUSE: 14 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the relation name. - */ - relationName: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for sip address information - */ - class SipAddress { - /** - * Indicates a custom label. - */ - static readonly CUSTOM_LABEL: 0 - - /** - * Indicates a home SIP address. - */ - static readonly SIP_HOME: 1 - - /** - * Indicates a work SIP address. - */ - static readonly SIP_WORK: 2 - - /** - * Indicates an SIP address of the OTHER type. - */ - static readonly SIP_OTHER: 3 - - /** - * Indicates an invalid label ID. - */ - static readonly INVALID_LABEL_ID: -1 - - /** - * Indicates the label name of an attribute. - */ - labelName?: string - - /** - * Indicates the SIP address. - */ - sipAddress: string - - /** - * Indicates the label id. - */ - labelId?: number - } - - /** - * Provides methods for website information - */ - class Website { - /** - * Indicates the website. - */ - website: string - } -} - -export default contact; \ No newline at end of file -- Gitee