From b65abcd6d28b079008ec8b82cc18009d291b7136 Mon Sep 17 00:00:00 2001 From: Saket Patel Date: Wed, 17 Oct 2018 17:26:22 +0530 Subject: [PATCH] 8.2.0 --- package-lock.json | 2 +- package.json | 2 +- src/schema/generated-schema-types.ts | 48 ++++++++++++++++++---------- 3 files changed, 33 insertions(+), 19 deletions(-) diff --git a/package-lock.json b/package-lock.json index 096abf45b..a0cd813c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@zimbra/api-client", - "version": "8.0.0", + "version": "8.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 111308a5c..5c00fdd92 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/schema/generated-schema-types.ts b/src/schema/generated-schema-types.ts index c27a353ef..618fde359 100644 --- a/src/schema/generated-schema-types.ts +++ b/src/schema/generated-schema-types.ts @@ -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; @@ -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 { @@ -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; @@ -492,6 +498,7 @@ export interface CalendarItemAttendee { rsvp?: boolean | null; address?: string | null; name?: string | null; + calendarUserType?: string | null; } export interface StringContent { @@ -1237,6 +1244,7 @@ export interface CalendarItemAttendeesInput { rsvp?: boolean | null; address: string; name?: string | null; + calendarUserType?: string | null; } export interface CalendarItemAlarmInput { @@ -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; }