@zimbra/api-client 81.0.0 → 82.0.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.
- package/dist/schema.graphql +7 -3
- package/dist/src/batch-client/index.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +7 -2
- package/dist/zm-api-js-client.esm.js +41 -6
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +1 -1
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +1 -1
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +563 -252
- package/package.json +1 -1
- package/src/batch-client/index.ts +30 -2
- package/src/schema/generated-schema-types.ts +7 -2
- package/src/schema/schema.graphql +7 -3
- package/src/schema/schema.ts +3 -2
package/dist/schema.graphql
CHANGED
|
@@ -487,6 +487,7 @@ type ClientInfoAttributes {
|
|
|
487
487
|
zimbraWebClientLogoutURL: String
|
|
488
488
|
zimbraWebClientSkipLogoff: Boolean
|
|
489
489
|
zimbraFeatureResetPasswordStatus: ResetPasswordStatus
|
|
490
|
+
zimbraHelpModernURL: String
|
|
490
491
|
}
|
|
491
492
|
|
|
492
493
|
type ClientInfoType {
|
|
@@ -535,6 +536,7 @@ type MessageInfo implements MailItem {
|
|
|
535
536
|
autoSendTime: Float
|
|
536
537
|
local: Boolean
|
|
537
538
|
part: String
|
|
539
|
+
meta: [CustomMetadataMeta]
|
|
538
540
|
}
|
|
539
541
|
|
|
540
542
|
type Conversation implements MailItem {
|
|
@@ -561,6 +563,7 @@ type Conversation implements MailItem {
|
|
|
561
563
|
unread: Float # u
|
|
562
564
|
share: [ShareNotification] # shr
|
|
563
565
|
replyType: String #rt
|
|
566
|
+
meta: [CustomMetadataMeta]
|
|
564
567
|
}
|
|
565
568
|
|
|
566
569
|
type MsgWithGroupInfo implements MailItem {
|
|
@@ -1369,6 +1372,7 @@ type AccountInfoAttrs {
|
|
|
1369
1372
|
zimbraTrialExpirationDate: String
|
|
1370
1373
|
zimbraTrialConvertAtExpiration: Boolean
|
|
1371
1374
|
zimbraHierarchicalAddressBookRoot: String
|
|
1375
|
+
zimbraBlockEmailSendFromImapPop: Boolean
|
|
1372
1376
|
}
|
|
1373
1377
|
|
|
1374
1378
|
type AccountCos {
|
|
@@ -1631,7 +1635,7 @@ type CustomMetadataAttrs {
|
|
|
1631
1635
|
}
|
|
1632
1636
|
|
|
1633
1637
|
type CustomMetadataMeta {
|
|
1634
|
-
section: String
|
|
1638
|
+
section: String
|
|
1635
1639
|
_attrs: [CustomMetadataAttrs]
|
|
1636
1640
|
}
|
|
1637
1641
|
|
|
@@ -2899,7 +2903,7 @@ input DeleteAppointmentInput {
|
|
|
2899
2903
|
input SignatureInput {
|
|
2900
2904
|
id: ID
|
|
2901
2905
|
name: String
|
|
2902
|
-
content: SignatureContentInput
|
|
2906
|
+
content: [SignatureContentInput]
|
|
2903
2907
|
contentId: String
|
|
2904
2908
|
}
|
|
2905
2909
|
|
|
@@ -3415,7 +3419,7 @@ type Mutation {
|
|
|
3415
3419
|
appointment: CalendarItemInput!
|
|
3416
3420
|
): Boolean
|
|
3417
3421
|
createAppSpecificPassword(appName: String!): CreateAppSpecificPasswordResponse
|
|
3418
|
-
createCalendar(name: String!, color: Int!, url: String): Folder
|
|
3422
|
+
createCalendar(name: String!, color: Int!, url: String, parentFolderId:ID): Folder
|
|
3419
3423
|
createContact(contact: CreateContactInput!): Contact
|
|
3420
3424
|
createContactList(contact: CreateContactInput!): Contact
|
|
3421
3425
|
modifyContact(contact: ModifyContactInput!): Contact
|
|
@@ -79,6 +79,7 @@ export declare type AccountInfo = {
|
|
|
79
79
|
export declare type AccountInfoAttrs = {
|
|
80
80
|
__typename?: 'AccountInfoAttrs';
|
|
81
81
|
displayName?: Maybe<Scalars['String']>;
|
|
82
|
+
zimbraBlockEmailSendFromImapPop?: Maybe<Scalars['Boolean']>;
|
|
82
83
|
zimbraBrandingFolderName?: Maybe<Scalars['String']>;
|
|
83
84
|
zimbraDomainTrialConvertAtExpiration?: Maybe<Scalars['Boolean']>;
|
|
84
85
|
zimbraDomainTrialExpirationDate?: Maybe<Scalars['String']>;
|
|
@@ -710,6 +711,7 @@ export declare type CancelRuleInfo = {
|
|
|
710
711
|
export declare type ClientInfoAttributes = {
|
|
711
712
|
__typename?: 'ClientInfoAttributes';
|
|
712
713
|
zimbraFeatureResetPasswordStatus?: Maybe<ResetPasswordStatus>;
|
|
714
|
+
zimbraHelpModernURL?: Maybe<Scalars['String']>;
|
|
713
715
|
zimbraWebClientLoginURL?: Maybe<Scalars['String']>;
|
|
714
716
|
zimbraWebClientLogoutURL?: Maybe<Scalars['String']>;
|
|
715
717
|
zimbraWebClientSkipLogoff?: Maybe<Scalars['Boolean']>;
|
|
@@ -954,6 +956,7 @@ export declare type Conversation = MailItem & {
|
|
|
954
956
|
invitations?: Maybe<Array<Maybe<InviteInfo>>>;
|
|
955
957
|
messages?: Maybe<Array<Maybe<MessageInfo>>>;
|
|
956
958
|
messagesMetaData?: Maybe<Array<Maybe<MessageInfo>>>;
|
|
959
|
+
meta?: Maybe<Array<Maybe<CustomMetadataMeta>>>;
|
|
957
960
|
modifiedSequence?: Maybe<Scalars['Float']>;
|
|
958
961
|
numMessages?: Maybe<Scalars['Float']>;
|
|
959
962
|
replyType?: Maybe<Scalars['String']>;
|
|
@@ -1046,7 +1049,7 @@ export declare type CustomMetadataInput = {
|
|
|
1046
1049
|
export declare type CustomMetadataMeta = {
|
|
1047
1050
|
__typename?: 'CustomMetadataMeta';
|
|
1048
1051
|
_attrs?: Maybe<Array<Maybe<CustomMetadataAttrs>>>;
|
|
1049
|
-
section
|
|
1052
|
+
section?: Maybe<Scalars['String']>;
|
|
1050
1053
|
};
|
|
1051
1054
|
export declare type DataSource = {
|
|
1052
1055
|
__typename?: 'DataSource';
|
|
@@ -2022,6 +2025,7 @@ export declare type MessageInfo = MailItem & {
|
|
|
2022
2025
|
isEncrypted?: Maybe<Scalars['Boolean']>;
|
|
2023
2026
|
isSigned?: Maybe<Scalars['Boolean']>;
|
|
2024
2027
|
local?: Maybe<Scalars['Boolean']>;
|
|
2028
|
+
meta?: Maybe<Array<Maybe<CustomMetadataMeta>>>;
|
|
2025
2029
|
mimeParts?: Maybe<Array<Maybe<MimePart>>>;
|
|
2026
2030
|
modifiedSequence?: Maybe<Scalars['Float']>;
|
|
2027
2031
|
origId?: Maybe<Scalars['ID']>;
|
|
@@ -2327,6 +2331,7 @@ export declare type MutationCreateAppointmentExceptionArgs = {
|
|
|
2327
2331
|
export declare type MutationCreateCalendarArgs = {
|
|
2328
2332
|
color: Scalars['Int'];
|
|
2329
2333
|
name: Scalars['String'];
|
|
2334
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2330
2335
|
url?: InputMaybe<Scalars['String']>;
|
|
2331
2336
|
};
|
|
2332
2337
|
export declare type MutationCreateContactArgs = {
|
|
@@ -3431,7 +3436,7 @@ export declare type SignatureContentInput = {
|
|
|
3431
3436
|
type?: InputMaybe<Scalars['String']>;
|
|
3432
3437
|
};
|
|
3433
3438
|
export declare type SignatureInput = {
|
|
3434
|
-
content?: InputMaybe<SignatureContentInput
|
|
3439
|
+
content?: InputMaybe<Array<InputMaybe<SignatureContentInput>>>;
|
|
3435
3440
|
contentId?: InputMaybe<Scalars['String']>;
|
|
3436
3441
|
id?: InputMaybe<Scalars['ID']>;
|
|
3437
3442
|
name?: InputMaybe<Scalars['String']>;
|