@zimbra/api-client 92.0.0 → 93.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 +12 -2
- package/dist/src/schema/generated-schema-types.d.ts +13 -3
- package/dist/zm-api-js-client.esm.js +10 -5
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +4 -4
- package/dist/zm-api-js-client.js.map +1 -1
- package/dist/zm-api-js-client.umd.js +7 -7
- package/dist/zm-api-js-client.umd.js.map +1 -1
- package/package-lock.json +7 -7
- package/package.json +1 -1
- package/src/apollo/zimbra-in-memory-cache.ts +4 -2
- package/src/normalize/entities.ts +1 -1
- package/src/schema/generated-schema-types.ts +13 -3
- package/src/schema/schema.graphql +12 -2
package/dist/schema.graphql
CHANGED
|
@@ -274,6 +274,12 @@ enum LicenseStatus {
|
|
|
274
274
|
INVALID
|
|
275
275
|
LICENSE_GRACE_PERIOD
|
|
276
276
|
ACTIVATION_GRACE_PERIOD
|
|
277
|
+
INVALID_LICENSE
|
|
278
|
+
TRIAL_HAS_EXPIRED
|
|
279
|
+
INVALID_LICENSE_USAGE_LIMIT
|
|
280
|
+
NUMBER_OF_ACTIVATIONS_EXCEED
|
|
281
|
+
LICENSE_ACTIVATION_RESTRICTED
|
|
282
|
+
LICENSE_INVALID_SUPPORT_END_DATE
|
|
277
283
|
}
|
|
278
284
|
|
|
279
285
|
enum SetRecoveryAccountOp {
|
|
@@ -2110,6 +2116,8 @@ type MailboxMetadataAttrs {
|
|
|
2110
2116
|
zimbraPrefSMIMEDefaultSetting: String
|
|
2111
2117
|
zimbraPrefSMIMELastOperation: String
|
|
2112
2118
|
zimbraPrefContactSourceFolderID: String
|
|
2119
|
+
zimbraPrefHideMuteConvModal: Boolean
|
|
2120
|
+
zimbraPrefColorMode: String
|
|
2113
2121
|
}
|
|
2114
2122
|
|
|
2115
2123
|
type MailboxMetadataMeta {
|
|
@@ -2143,6 +2151,8 @@ input MailboxMetadataSectionAttrsInput {
|
|
|
2143
2151
|
zimbraPrefSMIMEDefaultSetting: String
|
|
2144
2152
|
zimbraPrefSMIMELastOperation: String
|
|
2145
2153
|
zimbraPrefContactSourceFolderID: String
|
|
2154
|
+
zimbraPrefHideMuteConvModal: Boolean
|
|
2155
|
+
zimbraPrefColorMode: String
|
|
2146
2156
|
}
|
|
2147
2157
|
|
|
2148
2158
|
type MimePart {
|
|
@@ -2284,7 +2294,7 @@ input CalendarItemMessageInput {
|
|
|
2284
2294
|
}
|
|
2285
2295
|
|
|
2286
2296
|
input CounterAppointmentInput {
|
|
2287
|
-
id: ID
|
|
2297
|
+
id: ID
|
|
2288
2298
|
modifiedSequence: Float
|
|
2289
2299
|
revision: Float
|
|
2290
2300
|
componentNum: Int # comp
|
|
@@ -2413,7 +2423,7 @@ type CalendarItemAttendee {
|
|
|
2413
2423
|
|
|
2414
2424
|
type CalendarItemReply {
|
|
2415
2425
|
participationStatus: ParticipationStatus
|
|
2416
|
-
|
|
2426
|
+
address: String
|
|
2417
2427
|
}
|
|
2418
2428
|
|
|
2419
2429
|
input CalendarItemAttendeesInput {
|
|
@@ -756,7 +756,7 @@ export type CalendarItemRecurrenceRuleInput = {
|
|
|
756
756
|
};
|
|
757
757
|
export type CalendarItemReply = {
|
|
758
758
|
__typename?: 'CalendarItemReply';
|
|
759
|
-
|
|
759
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
760
760
|
participationStatus?: Maybe<ParticipationStatus>;
|
|
761
761
|
};
|
|
762
762
|
export type CalendarOptionalItemDateTimeInput = {
|
|
@@ -1051,7 +1051,7 @@ export type ConversationConditionInput = {
|
|
|
1051
1051
|
};
|
|
1052
1052
|
export type CounterAppointmentInput = {
|
|
1053
1053
|
componentNum?: InputMaybe<Scalars['Int']['input']>;
|
|
1054
|
-
id
|
|
1054
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1055
1055
|
message: CounterAppointmentMessageInput;
|
|
1056
1056
|
modifiedSequence?: InputMaybe<Scalars['Float']['input']>;
|
|
1057
1057
|
revision?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -2105,11 +2105,17 @@ export declare enum LicenseStatus {
|
|
|
2105
2105
|
ActivationGracePeriod = "ACTIVATION_GRACE_PERIOD",
|
|
2106
2106
|
Expired = "EXPIRED",
|
|
2107
2107
|
Invalid = "INVALID",
|
|
2108
|
+
InvalidLicense = "INVALID_LICENSE",
|
|
2109
|
+
InvalidLicenseUsageLimit = "INVALID_LICENSE_USAGE_LIMIT",
|
|
2108
2110
|
InFuture = "IN_FUTURE",
|
|
2111
|
+
LicenseActivationRestricted = "LICENSE_ACTIVATION_RESTRICTED",
|
|
2109
2112
|
LicenseGracePeriod = "LICENSE_GRACE_PERIOD",
|
|
2113
|
+
LicenseInvalidSupportEndDate = "LICENSE_INVALID_SUPPORT_END_DATE",
|
|
2110
2114
|
NotActivated = "NOT_ACTIVATED",
|
|
2111
2115
|
NotInstalled = "NOT_INSTALLED",
|
|
2112
|
-
|
|
2116
|
+
NumberOfActivationsExceed = "NUMBER_OF_ACTIVATIONS_EXCEED",
|
|
2117
|
+
Ok = "OK",
|
|
2118
|
+
TrialHasExpired = "TRIAL_HAS_EXPIRED"
|
|
2113
2119
|
}
|
|
2114
2120
|
export type Locale = {
|
|
2115
2121
|
__typename?: 'Locale';
|
|
@@ -2156,6 +2162,7 @@ export type MailboxMetadataAttrs = {
|
|
|
2156
2162
|
archivedFolder?: Maybe<Scalars['String']['output']>;
|
|
2157
2163
|
privacyOverlayPrefs_showOverlay?: Maybe<Scalars['Boolean']['output']>;
|
|
2158
2164
|
privacyOverlayPrefs_timeOut?: Maybe<Scalars['Int']['output']>;
|
|
2165
|
+
zimbraPrefColorMode?: Maybe<Scalars['String']['output']>;
|
|
2159
2166
|
zimbraPrefContactSourceFolderID?: Maybe<Scalars['String']['output']>;
|
|
2160
2167
|
zimbraPrefCustomFolderTreeOpen?: Maybe<Scalars['Boolean']['output']>;
|
|
2161
2168
|
zimbraPrefDateFormat?: Maybe<Scalars['String']['output']>;
|
|
@@ -2163,6 +2170,7 @@ export type MailboxMetadataAttrs = {
|
|
|
2163
2170
|
zimbraPrefFoldersExpanded?: Maybe<Scalars['String']['output']>;
|
|
2164
2171
|
zimbraPrefGenerateLinkPreviews?: Maybe<Scalars['Boolean']['output']>;
|
|
2165
2172
|
zimbraPrefGroupByList?: Maybe<Scalars['String']['output']>;
|
|
2173
|
+
zimbraPrefHideMuteConvModal?: Maybe<Scalars['Boolean']['output']>;
|
|
2166
2174
|
zimbraPrefMessageListDensity?: Maybe<Scalars['String']['output']>;
|
|
2167
2175
|
zimbraPrefMultitasking?: Maybe<Scalars['String']['output']>;
|
|
2168
2176
|
zimbraPrefReadingPaneSashHorizontal?: Maybe<Scalars['Int']['output']>;
|
|
@@ -2184,6 +2192,7 @@ export type MailboxMetadataSectionAttrsInput = {
|
|
|
2184
2192
|
archivedFolder?: InputMaybe<Scalars['String']['input']>;
|
|
2185
2193
|
privacyOverlayPrefs_showOverlay?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2186
2194
|
privacyOverlayPrefs_timeOut?: InputMaybe<Scalars['Int']['input']>;
|
|
2195
|
+
zimbraPrefColorMode?: InputMaybe<Scalars['String']['input']>;
|
|
2187
2196
|
zimbraPrefContactSourceFolderID?: InputMaybe<Scalars['String']['input']>;
|
|
2188
2197
|
zimbraPrefCustomFolderTreeOpen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2189
2198
|
zimbraPrefDateFormat?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2191,6 +2200,7 @@ export type MailboxMetadataSectionAttrsInput = {
|
|
|
2191
2200
|
zimbraPrefFoldersExpanded?: InputMaybe<Scalars['String']['input']>;
|
|
2192
2201
|
zimbraPrefGenerateLinkPreviews?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2193
2202
|
zimbraPrefGroupByList?: InputMaybe<Scalars['String']['input']>;
|
|
2203
|
+
zimbraPrefHideMuteConvModal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2194
2204
|
zimbraPrefMessageListDensity?: InputMaybe<Scalars['String']['input']>;
|
|
2195
2205
|
zimbraPrefMultitasking?: InputMaybe<Scalars['String']['input']>;
|
|
2196
2206
|
zimbraPrefReadingPaneSashHorizontal?: InputMaybe<Scalars['Int']['input']>;
|