@zimbra/api-client 78.0.0 → 79.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 +1 -0
- package/dist/src/apollo/local-batch-link.d.ts +1 -1
- package/dist/src/apollo/offline-queue-link/index.d.ts +1 -1
- package/dist/src/apollo/offline-queue-link/types.d.ts +1 -2
- package/dist/src/apollo/offline-queue-link/util.d.ts +1 -1
- package/dist/src/apollo/zimbra-in-memory-cache.d.ts +1 -1
- package/dist/src/batch-client/index.d.ts +1 -1
- package/dist/src/schema/generated-schema-types.d.ts +1 -0
- package/dist/zm-api-js-client.esm.js +5603 -1269
- 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 +97 -94
- package/package.json +6 -6
- package/src/apollo/local-batch-link.ts +1 -1
- package/src/apollo/offline-queue-link/index.ts +8 -1
- package/src/apollo/offline-queue-link/types.ts +1 -2
- package/src/apollo/offline-queue-link/util.ts +1 -1
- package/src/apollo/zimbra-in-memory-cache.ts +1 -1
- package/src/batch-client/index.ts +2 -3
- package/src/schema/generated-schema-types.ts +1 -0
- package/src/schema/schema.graphql +1 -0
- package/src/schema/session-handler.ts +1 -1
- package/.tmp/introspected-schema.json +0 -31072
package/dist/schema.graphql
CHANGED
|
@@ -1310,6 +1310,7 @@ type AccountInfoAttrs {
|
|
|
1310
1310
|
zimbraFeatureMobileSyncEnabled: Boolean
|
|
1311
1311
|
zimbraFeatureRelatedContactsEnabled: Boolean
|
|
1312
1312
|
zimbraFeatureMailForwardingInFiltersEnabled: Boolean
|
|
1313
|
+
zimbraPasswordAllowUsername: Boolean
|
|
1313
1314
|
zimbraPasswordBlockCommonEnabled: Boolean
|
|
1314
1315
|
zimbraPasswordMinAlphaChars: Int
|
|
1315
1316
|
zimbraPasswordMinNumericChars: Int
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="zen-observable" />
|
|
2
|
-
import { ApolloLink, FetchResult, Observable, Operation } from '@apollo/client';
|
|
2
|
+
import { ApolloLink, FetchResult, Observable, Operation } from '@apollo/client/core';
|
|
3
3
|
import { LocalBatchLinkOptions } from './types';
|
|
4
4
|
export declare class LocalBatchLink extends ApolloLink {
|
|
5
5
|
off: any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="zen-observable" />
|
|
2
|
-
import { ApolloLink, FetchResult, NextLink, Observable, Operation } from '@apollo/client';
|
|
2
|
+
import { ApolloLink, FetchResult, NextLink, Observable, Operation } from '@apollo/client/core';
|
|
3
3
|
import { OfflineQueueLinkOptions, OperationEntry, StorageProvider } from './types';
|
|
4
4
|
export declare class OfflineQueueLink extends ApolloLink {
|
|
5
5
|
isOpen: boolean;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { FetchResult, NextLink, Operation } from '@apollo/client';
|
|
2
|
-
import { Observer } from '@apollo/client';
|
|
1
|
+
import { FetchResult, NextLink, Observer, Operation } from '@apollo/client/core';
|
|
3
2
|
export interface OfflineQueueLinkOptions {
|
|
4
3
|
isOpen?: boolean;
|
|
5
4
|
storage: StorageProvider;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Operation } from '@apollo/client';
|
|
1
|
+
import { Operation } from '@apollo/client/core';
|
|
2
2
|
import { OfflineOperationEntry, OperationEntry } from './types';
|
|
3
3
|
export declare function hasSensitiveVariables(operation: Operation): boolean;
|
|
4
4
|
export declare function isMutationOperation({ query }: Operation): boolean;
|
|
@@ -147,7 +147,7 @@ export declare class ZimbraBatchClient {
|
|
|
147
147
|
relatedContacts: ({ email }: RelatedContactsOptions) => Promise<any>;
|
|
148
148
|
remoteWipeSync: (deviceId: String) => Promise<any>;
|
|
149
149
|
removeDeviceSync: (deviceId: String) => Promise<any>;
|
|
150
|
-
resetPassword: ({ password, dryRun, getPasswordRules, cancelResetPassword }: ResetPasswordOptions) => Promise<
|
|
150
|
+
resetPassword: ({ password, dryRun, getPasswordRules, cancelResetPassword }: ResetPasswordOptions) => Promise<{}>;
|
|
151
151
|
resolve: (path: string) => string;
|
|
152
152
|
revokeAppSpecificPassword: (appName: string) => Promise<boolean>;
|
|
153
153
|
revokeOtherTrustedDevices: () => Promise<boolean>;
|
|
@@ -128,6 +128,7 @@ export declare type AccountInfoAttrs = {
|
|
|
128
128
|
zimbraMailBlacklistMaxNumEntries?: Maybe<Scalars['Int']>;
|
|
129
129
|
zimbraMailQuota?: Maybe<Scalars['String']>;
|
|
130
130
|
zimbraMtaMaxMessageSize?: Maybe<Scalars['Float']>;
|
|
131
|
+
zimbraPasswordAllowUsername?: Maybe<Scalars['Boolean']>;
|
|
131
132
|
zimbraPasswordAllowedChars?: Maybe<Scalars['String']>;
|
|
132
133
|
zimbraPasswordAllowedPunctuationChars?: Maybe<Scalars['String']>;
|
|
133
134
|
zimbraPasswordBlockCommonEnabled?: Maybe<Scalars['Boolean']>;
|