@zimbra/api-client 88.0.0 → 89.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 +13 -4
- package/dist/src/schema/generated-schema-types.d.ts +1754 -1723
- package/dist/zm-api-js-client.esm.js +7223 -9406
- 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 +1145 -302
- package/package.json +8 -6
- package/rollup.config.js +13 -14
- package/src/schema/generated-schema-types.ts +1735 -1723
- package/src/schema/schema.graphql +13 -4
- package/src/utils/normalize-mime-parts.ts +2 -2
|
@@ -1008,8 +1008,12 @@ type ImportanceCondition {
|
|
|
1008
1008
|
negative: Boolean
|
|
1009
1009
|
}
|
|
1010
1010
|
|
|
1011
|
+
type MethodCondition {
|
|
1012
|
+
_content: String
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1011
1015
|
type InviteCondition {
|
|
1012
|
-
|
|
1016
|
+
method: [MethodCondition]
|
|
1013
1017
|
index: Int
|
|
1014
1018
|
negative: Boolean
|
|
1015
1019
|
}
|
|
@@ -1442,6 +1446,7 @@ type AccountInfoAttrs {
|
|
|
1442
1446
|
zimbraFeatureExportFolderEnabled: Boolean
|
|
1443
1447
|
zimbraFeatureGroupCalendarEnabled: Boolean
|
|
1444
1448
|
zimbraFeatureDistributionListExpandMembersEnabled: Boolean
|
|
1449
|
+
zimbraFeatureDistributionListFolderEnabled: Boolean
|
|
1445
1450
|
}
|
|
1446
1451
|
|
|
1447
1452
|
type AccountCos {
|
|
@@ -2734,9 +2739,13 @@ input ImportanceConditionInput {
|
|
|
2734
2739
|
}
|
|
2735
2740
|
|
|
2736
2741
|
input InviteConditionInput {
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2742
|
+
method: [MethodInput]
|
|
2743
|
+
index: Int
|
|
2744
|
+
negative: Boolean
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
input MethodInput {
|
|
2748
|
+
_content: String
|
|
2740
2749
|
}
|
|
2741
2750
|
|
|
2742
2751
|
input MimeHeaderConditionInput {
|
|
@@ -105,7 +105,7 @@ export function normalizeMimeParts(
|
|
|
105
105
|
type = normalizeType(part.contentType),
|
|
106
106
|
disposition = normalizeDisposition(part.contentDisposition),
|
|
107
107
|
parts = part.mimeParts,
|
|
108
|
-
content = part
|
|
108
|
+
content = part?.content || ''; //getPartContent(part);
|
|
109
109
|
|
|
110
110
|
// obey scapi's isBody flag:
|
|
111
111
|
if (isBody) acc.body = content;
|
|
@@ -127,7 +127,7 @@ export function normalizeMimeParts(
|
|
|
127
127
|
~subpart.contentType.indexOf('image/') &&
|
|
128
128
|
subpart.contentDisposition === 'attachment' &&
|
|
129
129
|
subpart.contentId &&
|
|
130
|
-
htmlPart
|
|
130
|
+
htmlPart?.content
|
|
131
131
|
) {
|
|
132
132
|
// remove angle brackets from <contentId>
|
|
133
133
|
const contentId = subpart.contentId.slice(1, -1);
|