Skip to content

Commit

Permalink
8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsakky committed Oct 17, 2018
1 parent 6e420a8 commit b65abcd
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zimbra/api-client",
"amdName": "zmApiJsClient",
"version": "8.1.0",
"version": "8.2.0",
"description": "Zimbra JS API Client and GraphQL client for making requests against the Zimbra SOAP API.",
"main": "dist/zm-api-js-client.js",
"source": "index.ts",
Expand Down
48 changes: 31 additions & 17 deletions src/schema/generated-schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export interface MailItem {
export interface Query {
accountInfo?: AccountInfo | null;
autoComplete?: AutoCompleteResponse | null;
autoCompleteGAL?: AutoCompleteGALResponse | null;
downloadMessage?: SMimeMessage | null;
freeBusy?: FreeBusy[] | null;
getContact?: Contact | null;
Expand Down Expand Up @@ -241,23 +242,8 @@ export interface AutoCompleteMatch {
fileas?: string | null;
}

export interface SMimeMessage {
id?: string | null;
content?: string | null;
}

export interface FreeBusy {
id: string;
tentative?: FreeBusyInstance[] | null;
busy?: FreeBusyInstance[] | null;
unavailable?: FreeBusyInstance[] | null;
nodata?: FreeBusyInstance[] | null;
free?: FreeBusyInstance[] | null;
}

export interface FreeBusyInstance {
start?: number | null;
end?: number | null;
export interface AutoCompleteGALResponse {
contacts?: Contact[] | null;
}

export interface Contact {
Expand Down Expand Up @@ -315,10 +301,30 @@ export interface ContactAttributes {
website?: string | null;
notes?: string | null;
userCertificate?: string | null;
zimbraCalResType?: string | null;
fileAs?: string | null /* Used for contact lists */;
type?: string | null;
}

export interface SMimeMessage {
id?: string | null;
content?: string | null;
}

export interface FreeBusy {
id: string;
tentative?: FreeBusyInstance[] | null;
busy?: FreeBusyInstance[] | null;
unavailable?: FreeBusyInstance[] | null;
nodata?: FreeBusyInstance[] | null;
free?: FreeBusyInstance[] | null;
}

export interface FreeBusyInstance {
start?: number | null;
end?: number | null;
}

export interface SearchResponse {
contacts?: Contact[] | null;
messages?: MessageInfo[] | null;
Expand Down Expand Up @@ -492,6 +498,7 @@ export interface CalendarItemAttendee {
rsvp?: boolean | null;
address?: string | null;
name?: string | null;
calendarUserType?: string | null;
}

export interface StringContent {
Expand Down Expand Up @@ -1237,6 +1244,7 @@ export interface CalendarItemAttendeesInput {
rsvp?: boolean | null;
address: string;
name?: string | null;
calendarUserType?: string | null;
}

export interface CalendarItemAlarmInput {
Expand Down Expand Up @@ -1785,6 +1793,12 @@ export interface AutoCompleteQueryArgs {
folders?: string | null;
includeGal?: boolean | null;
}
export interface AutoCompleteGalQueryArgs {
limit?: number | null;
name: string;
type?: GalSearchType | null;
needExp?: boolean | null;
}
export interface DownloadMessageQueryArgs {
id: string;
}
Expand Down

0 comments on commit b65abcd

Please sign in to comment.