@zimbra/api-client 80.1.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 +8 -3
- package/dist/src/batch-client/index.d.ts +1 -0
- package/dist/src/schema/generated-schema-types.d.ts +8 -2
- package/dist/zm-api-js-client.esm.js +43 -7
- 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/normalize/entities.ts +2 -1
- package/src/schema/generated-schema-types.ts +8 -2
- package/src/schema/schema.graphql +8 -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 {
|
|
@@ -1554,6 +1558,7 @@ type Document {
|
|
|
1554
1558
|
revisedCreationDate: Float #cd
|
|
1555
1559
|
lockOwnerId: ID #loid
|
|
1556
1560
|
flags: String #f
|
|
1561
|
+
permission: String #perm
|
|
1557
1562
|
docs: [Document]
|
|
1558
1563
|
}
|
|
1559
1564
|
|
|
@@ -1630,7 +1635,7 @@ type CustomMetadataAttrs {
|
|
|
1630
1635
|
}
|
|
1631
1636
|
|
|
1632
1637
|
type CustomMetadataMeta {
|
|
1633
|
-
section: String
|
|
1638
|
+
section: String
|
|
1634
1639
|
_attrs: [CustomMetadataAttrs]
|
|
1635
1640
|
}
|
|
1636
1641
|
|
|
@@ -2898,7 +2903,7 @@ input DeleteAppointmentInput {
|
|
|
2898
2903
|
input SignatureInput {
|
|
2899
2904
|
id: ID
|
|
2900
2905
|
name: String
|
|
2901
|
-
content: SignatureContentInput
|
|
2906
|
+
content: [SignatureContentInput]
|
|
2902
2907
|
contentId: String
|
|
2903
2908
|
}
|
|
2904
2909
|
|
|
@@ -3414,7 +3419,7 @@ type Mutation {
|
|
|
3414
3419
|
appointment: CalendarItemInput!
|
|
3415
3420
|
): Boolean
|
|
3416
3421
|
createAppSpecificPassword(appName: String!): CreateAppSpecificPasswordResponse
|
|
3417
|
-
createCalendar(name: String!, color: Int!, url: String): Folder
|
|
3422
|
+
createCalendar(name: String!, color: Int!, url: String, parentFolderId:ID): Folder
|
|
3418
3423
|
createContact(contact: CreateContactInput!): Contact
|
|
3419
3424
|
createContactList(contact: CreateContactInput!): Contact
|
|
3420
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';
|
|
@@ -1155,6 +1158,7 @@ export declare type Document = {
|
|
|
1155
1158
|
metadataVersion?: Maybe<Scalars['Float']>;
|
|
1156
1159
|
modifiedSequence?: Maybe<Scalars['Float']>;
|
|
1157
1160
|
name?: Maybe<Scalars['String']>;
|
|
1161
|
+
permission?: Maybe<Scalars['String']>;
|
|
1158
1162
|
revisedCreationDate?: Maybe<Scalars['Float']>;
|
|
1159
1163
|
revision?: Maybe<Scalars['Float']>;
|
|
1160
1164
|
revisonCreator?: Maybe<Scalars['String']>;
|
|
@@ -2021,6 +2025,7 @@ export declare type MessageInfo = MailItem & {
|
|
|
2021
2025
|
isEncrypted?: Maybe<Scalars['Boolean']>;
|
|
2022
2026
|
isSigned?: Maybe<Scalars['Boolean']>;
|
|
2023
2027
|
local?: Maybe<Scalars['Boolean']>;
|
|
2028
|
+
meta?: Maybe<Array<Maybe<CustomMetadataMeta>>>;
|
|
2024
2029
|
mimeParts?: Maybe<Array<Maybe<MimePart>>>;
|
|
2025
2030
|
modifiedSequence?: Maybe<Scalars['Float']>;
|
|
2026
2031
|
origId?: Maybe<Scalars['ID']>;
|
|
@@ -2326,6 +2331,7 @@ export declare type MutationCreateAppointmentExceptionArgs = {
|
|
|
2326
2331
|
export declare type MutationCreateCalendarArgs = {
|
|
2327
2332
|
color: Scalars['Int'];
|
|
2328
2333
|
name: Scalars['String'];
|
|
2334
|
+
parentFolderId?: InputMaybe<Scalars['ID']>;
|
|
2329
2335
|
url?: InputMaybe<Scalars['String']>;
|
|
2330
2336
|
};
|
|
2331
2337
|
export declare type MutationCreateContactArgs = {
|
|
@@ -3430,7 +3436,7 @@ export declare type SignatureContentInput = {
|
|
|
3430
3436
|
type?: InputMaybe<Scalars['String']>;
|
|
3431
3437
|
};
|
|
3432
3438
|
export declare type SignatureInput = {
|
|
3433
|
-
content?: InputMaybe<SignatureContentInput
|
|
3439
|
+
content?: InputMaybe<Array<InputMaybe<SignatureContentInput>>>;
|
|
3434
3440
|
contentId?: InputMaybe<Scalars['String']>;
|
|
3435
3441
|
id?: InputMaybe<Scalars['ID']>;
|
|
3436
3442
|
name?: InputMaybe<Scalars['String']>;
|