@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
package/dist/schema.graphql
CHANGED
|
@@ -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 {
|