@zimbra/api-client 86.1.0 → 87.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -410,6 +410,7 @@ type Instance {
410
410
  status: InviteCompletionStatus
411
411
  isOrganizer: Boolean # isOrg
412
412
  exceptId: [DtTimeInfo]
413
+ timezoneOffset: Int
413
414
  }
414
415
 
415
416
  type Alarm {
@@ -1332,7 +1333,7 @@ type AccountInfoAttrs {
1332
1333
  zimbraFeatureMailForwardingEnabled: Boolean
1333
1334
  zimbraFeatureMailForwardingInFiltersEnabled: Boolean
1334
1335
  zimbraFeatureRetentionPolicyEnabled: Boolean
1335
- zimbraPasswordAllowUsername: Boolean
1336
+ zimbraFeatureAllowUsernameInPassword: Boolean
1336
1337
  zimbraPasswordBlockCommonEnabled: Boolean
1337
1338
  zimbraPasswordMinAlphaChars: Int
1338
1339
  zimbraPasswordMinNumericChars: Int
@@ -2021,6 +2022,25 @@ type MimePart {
2021
2022
  messageId: ID
2022
2023
  base64: String
2023
2024
  truncated: Boolean
2025
+ attach: AttachDoc
2026
+ }
2027
+
2028
+ type AttachDoc {
2029
+ doc: [AttachDocs]
2030
+ }
2031
+
2032
+ type AttachDocs {
2033
+ path: String
2034
+ optional: Int
2035
+ }
2036
+
2037
+ input AttachDocInput {
2038
+ doc: [AttachDocsInput]
2039
+ }
2040
+
2041
+ input AttachDocsInput {
2042
+ path: String
2043
+ optional: Int
2024
2044
  }
2025
2045
 
2026
2046
  type ActionData {
@@ -2049,6 +2069,7 @@ input MimePartInput {
2049
2069
  attachments: [AttachmentInput]
2050
2070
  base64: String,
2051
2071
  truncated: Boolean
2072
+ attach: AttachDocInput
2052
2073
  }
2053
2074
 
2054
2075
  input ExistingAttachmentInput {
@@ -2058,6 +2079,8 @@ input ExistingAttachmentInput {
2058
2079
 
2059
2080
  input DocumentInput {
2060
2081
  id: ID
2082
+ path: String
2083
+ optional: Int
2061
2084
  }
2062
2085
 
2063
2086
  input EMLInput {
@@ -2069,6 +2092,8 @@ input AttachmentInput {
2069
2092
  documents: [DocumentInput]
2070
2093
  messages: [EMLInput]
2071
2094
  existingAttachments: [ExistingAttachmentInput]
2095
+ ct: String
2096
+ cd: String
2072
2097
  }
2073
2098
 
2074
2099
  type AutoCompleteResponse {
@@ -88,6 +88,7 @@ export type AccountInfoAttrs = {
88
88
  zimbraExternalSharingEnabled?: Maybe<Scalars['Boolean']>;
89
89
  zimbraFeatureAdminMailEnabled?: Maybe<Scalars['Boolean']>;
90
90
  zimbraFeatureAdminPreferencesEnabled?: Maybe<Scalars['Boolean']>;
91
+ zimbraFeatureAllowUsernameInPassword?: Maybe<Scalars['Boolean']>;
91
92
  zimbraFeatureAntispamEnabled?: Maybe<Scalars['Boolean']>;
92
93
  zimbraFeatureAppSpecificPasswordsEnabled?: Maybe<Scalars['Boolean']>;
93
94
  zimbraFeatureBriefcasesEnabled?: Maybe<Scalars['Boolean']>;
@@ -141,7 +142,6 @@ export type AccountInfoAttrs = {
141
142
  zimbraMailSignatureMaxLength?: Maybe<Scalars['Float']>;
142
143
  zimbraMailWhitelistMaxNumEntries?: Maybe<Scalars['Int']>;
143
144
  zimbraMtaMaxMessageSize?: Maybe<Scalars['Float']>;
144
- zimbraPasswordAllowUsername?: Maybe<Scalars['Boolean']>;
145
145
  zimbraPasswordAllowedChars?: Maybe<Scalars['String']>;
146
146
  zimbraPasswordAllowedPunctuationChars?: Maybe<Scalars['String']>;
147
147
  zimbraPasswordBlockCommonEnabled?: Maybe<Scalars['Boolean']>;
@@ -314,6 +314,22 @@ export type AppointmentInfo = {
314
314
  id: Scalars['ID'];
315
315
  invitations?: Maybe<Array<Maybe<Invitation>>>;
316
316
  };
317
+ export type AttachDoc = {
318
+ __typename?: 'AttachDoc';
319
+ doc?: Maybe<Array<Maybe<AttachDocs>>>;
320
+ };
321
+ export type AttachDocInput = {
322
+ doc?: InputMaybe<Array<InputMaybe<AttachDocsInput>>>;
323
+ };
324
+ export type AttachDocs = {
325
+ __typename?: 'AttachDocs';
326
+ optional?: Maybe<Scalars['Int']>;
327
+ path?: Maybe<Scalars['String']>;
328
+ };
329
+ export type AttachDocsInput = {
330
+ optional?: InputMaybe<Scalars['Int']>;
331
+ path?: InputMaybe<Scalars['String']>;
332
+ };
317
333
  export type Attachment = {
318
334
  __typename?: 'Attachment';
319
335
  content?: Maybe<Scalars['String']>;
@@ -321,6 +337,8 @@ export type Attachment = {
321
337
  };
322
338
  export type AttachmentInput = {
323
339
  attachmentId?: InputMaybe<Scalars['String']>;
340
+ cd?: InputMaybe<Scalars['String']>;
341
+ ct?: InputMaybe<Scalars['String']>;
324
342
  documents?: InputMaybe<Array<InputMaybe<DocumentInput>>>;
325
343
  existingAttachments?: InputMaybe<Array<InputMaybe<ExistingAttachmentInput>>>;
326
344
  messages?: InputMaybe<Array<InputMaybe<EmlInput>>>;
@@ -1187,6 +1205,8 @@ export type DocumentActionData = {
1187
1205
  };
1188
1206
  export type DocumentInput = {
1189
1207
  id?: InputMaybe<Scalars['ID']>;
1208
+ optional?: InputMaybe<Scalars['Int']>;
1209
+ path?: InputMaybe<Scalars['String']>;
1190
1210
  };
1191
1211
  export type DtTimeInfo = {
1192
1212
  __typename?: 'DtTimeInfo';
@@ -1778,6 +1798,7 @@ export type Instance = {
1778
1798
  revision?: Maybe<Scalars['Float']>;
1779
1799
  start?: Maybe<Scalars['Float']>;
1780
1800
  status?: Maybe<InviteCompletionStatus>;
1801
+ timezoneOffset?: Maybe<Scalars['Int']>;
1781
1802
  tzoDue?: Maybe<Scalars['Int']>;
1782
1803
  utcRecurrenceId?: Maybe<Scalars['String']>;
1783
1804
  };
@@ -2078,6 +2099,7 @@ export type MimeHeaderConditionInput = {
2078
2099
  };
2079
2100
  export type MimePart = {
2080
2101
  __typename?: 'MimePart';
2102
+ attach?: Maybe<AttachDoc>;
2081
2103
  base64?: Maybe<Scalars['String']>;
2082
2104
  body?: Maybe<Scalars['Boolean']>;
2083
2105
  content?: Maybe<Scalars['String']>;
@@ -2094,6 +2116,7 @@ export type MimePart = {
2094
2116
  url?: Maybe<Scalars['String']>;
2095
2117
  };
2096
2118
  export type MimePartInput = {
2119
+ attach?: InputMaybe<AttachDocInput>;
2097
2120
  attachments?: InputMaybe<Array<InputMaybe<AttachmentInput>>>;
2098
2121
  base64?: InputMaybe<Scalars['String']>;
2099
2122
  body?: InputMaybe<Scalars['Boolean']>;