@zimbra/api-client 85.0.3 → 86.1.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.
@@ -1331,6 +1331,7 @@ type AccountInfoAttrs {
1331
1331
  zimbraFeatureRelatedContactsEnabled: Boolean
1332
1332
  zimbraFeatureMailForwardingEnabled: Boolean
1333
1333
  zimbraFeatureMailForwardingInFiltersEnabled: Boolean
1334
+ zimbraFeatureRetentionPolicyEnabled: Boolean
1334
1335
  zimbraPasswordAllowUsername: Boolean
1335
1336
  zimbraPasswordBlockCommonEnabled: Boolean
1336
1337
  zimbraPasswordMinAlphaChars: Int
@@ -4,14 +4,14 @@ export interface OfflineQueueLinkOptions {
4
4
  storage: StorageProvider;
5
5
  storeKey?: string;
6
6
  }
7
- export declare type OperationEntry = {
7
+ export type OperationEntry = {
8
8
  cancelQuery?: string;
9
9
  forward: NextLink;
10
10
  observer: Observer<FetchResult>;
11
11
  offlineQuery?: string;
12
12
  operation: Operation;
13
13
  };
14
- export declare type OfflineOperationEntry = {
14
+ export type OfflineOperationEntry = {
15
15
  variables: any;
16
16
  [key: string]: any;
17
17
  };
@@ -29,14 +29,14 @@ export interface Notification {
29
29
  modified?: any;
30
30
  seq?: number;
31
31
  }
32
- export declare type NotificationHandler = (notificaton: Notification) => void;
33
- export declare type UserAgent = {
32
+ export type NotificationHandler = (notificaton: Notification) => void;
33
+ export type UserAgent = {
34
34
  name: string;
35
35
  version: string;
36
36
  };
37
- export declare type writeSessionId = (sessionId: string) => void;
38
- export declare type readSessionId = () => string;
39
- export declare type SessionHandler = {
37
+ export type writeSessionId = (sessionId: string) => void;
38
+ export type readSessionId = () => string;
39
+ export type SessionHandler = {
40
40
  readSessionId: readSessionId;
41
41
  writeSessionId: writeSessionId;
42
42
  };
@@ -1,7 +1,7 @@
1
1
  import { Entity } from '.';
2
- export declare type RenamedKey = string;
3
- export declare type RenamedEntity = [string, Entity];
4
- export declare type EntityMappingValue = RenamedKey | RenamedEntity | Entity | {};
2
+ export type RenamedKey = string;
3
+ export type RenamedEntity = [string, Entity];
4
+ export type EntityMappingValue = RenamedKey | RenamedEntity | Entity | {};
5
5
  export interface EntityMapping {
6
6
  [key: string]: EntityMappingValue;
7
7
  }
@@ -5,8 +5,8 @@ export declare enum Namespace {
5
5
  All = "urn:zimbra",
6
6
  Sync = "urn:zimbraSync"
7
7
  }
8
- export declare type SessionId = string;
9
- export declare type SessionSeq = number;
8
+ export type SessionId = string;
9
+ export type SessionSeq = number;
10
10
  export interface UserAgent {
11
11
  name?: string;
12
12
  version?: string;
@@ -50,7 +50,7 @@ export interface RequestError {
50
50
  error: any;
51
51
  originalResponse: Response;
52
52
  }
53
- export declare type RequestBody = any;
53
+ export type RequestBody = any;
54
54
  export interface SingleBatchRequestResponse {
55
55
  body?: RequestBody;
56
56
  errors?: any;