Skip to content

Commit

Permalink
Commit generated file
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsakky committed Aug 31, 2018
1 parent 5b7c3c8 commit be737af
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions src/schema/generated-schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export interface Query {
getTask?: boolean | null;
noop?: boolean | null;
preferences?: Preferences | null;
recoverAccount?: RecoverAccount | null;
relatedContacts?: RelatedContacts | null;
shareInfos?: ShareInfo[] | null;
recoverAccount?: RecoverAccount | null;
search?: SearchResponse | null /* Perform a search for a variety types using a flexible query interface.[[SOAP Search API Documentation]](https://files.zimbra.com/docs/soap_api/8.7.11/api-reference/zimbraMail/Search.html)[[Query Tips]](https://wiki.zimbra.com/wiki/Zimbra_Web_Client_Search_Tips) */;
taskFolders?: Folder[] | null;
}
Expand Down Expand Up @@ -889,6 +889,11 @@ export interface SMimePublicCert {
_content?: string | null;
}

export interface RecoverAccount {
recoveryAccount?: string | null;
recoveryAttemptsLeft?: number | null;
}

export interface RelatedContacts {
relatedContacts?: RelatedContact[] | null;
}
Expand All @@ -913,11 +918,6 @@ export interface ShareInfo {
view?: FolderView | null;
}

export interface RecoverAccount {
recoveryAccount?: string | null;
recoveryAttemptsLeft?: string | null;
}

export interface Mutation {
action?: boolean | null;
addExternalAccount?: string | null;
Expand Down Expand Up @@ -958,6 +958,8 @@ export interface Mutation {
prefOutOfOfficeFromDate?: string | null;
prefOutOfOfficeReply?: string | null;
prefOutOfOfficeUntilDate?: string | null;
recoverAccount?: RecoverAccount | null;
resetPassword?: string | null;
saveDraft?: SaveDraftResponse | null;
sendMessage?: SendMessageResponse | null;
sendInviteReply?: InviteReplyResponse | null;
Expand Down Expand Up @@ -1632,17 +1634,17 @@ export interface GetSMimePublicCertsQueryArgs {
export interface GetTaskQueryArgs {
inviteId: string;
}
export interface RecoverAccountQueryArgs {
op: RecoverAccountOp;
email: string;
channel: SetRecoveryAccountChannel;
}
export interface RelatedContactsQueryArgs {
email: string;
}
export interface ShareInfosQueryArgs {
addresses?: string[] | null;
}
export interface RecoverAccountQueryArgs {
op: RecoverAccountOp;
email: string;
channel: SetRecoveryAccountChannel;
}
export interface SearchQueryArgs {
contact?: string | null;
cursor?: Cursor | null;
Expand Down Expand Up @@ -1764,7 +1766,8 @@ export interface ItemActionMutationArgs {
}
export interface LoginMutationArgs {
username: string;
password: string;
password?: string | null;
recoveryCode?: string | null;
}
export interface MessageActionMutationArgs {
ids: string[];
Expand Down Expand Up @@ -1820,6 +1823,14 @@ export interface PrefOutOfOfficeReplyMutationArgs {
export interface PrefOutOfOfficeUntilDateMutationArgs {
value: string;
}
export interface RecoverAccountMutationArgs {
op: RecoverAccountOp;
email: string;
channel: SetRecoveryAccountChannel;
}
export interface ResetPasswordMutationArgs {
password: string;
}
export interface SaveDraftMutationArgs {
message: SendMessageInput;
}
Expand Down Expand Up @@ -2027,6 +2038,10 @@ export enum RecoverAccountOp {
sendRecoveryCode = 'sendRecoveryCode'
}

export enum SetRecoveryAccountChannel {
email = 'email'
}

export enum SortBy {
none = 'none',
dateAsc = 'dateAsc',
Expand Down Expand Up @@ -2103,10 +2118,6 @@ export enum InviteReplyVerb {
TENTATIVE = 'TENTATIVE'
}

export enum SetRecoveryAccountChannel {
email = 'email'
}

export enum SetRecoveryAccountOp {
sendCode = 'sendCode',
validateCode = 'validateCode',
Expand Down

0 comments on commit be737af

Please sign in to comment.