@zimbra/api-client 67.0.0 → 68.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.
@@ -490,6 +490,8 @@ type ClientInfoType {
490
490
  attributes: ClientInfoAttributes
491
491
  }
492
492
 
493
+ # whenever change/remove key then update the object accordingly in zm-x-web/src/notifications/messages.js on emptyMessage object.
494
+ # otherwise notification will be failed.
493
495
  type MessageInfo implements MailItem {
494
496
  id: ID
495
497
  size: Float # s
@@ -14,13 +14,13 @@ export declare class OfflineQueueLink extends ApolloLink {
14
14
  handleCancelAndOfflineQueue: (entry: OperationEntry) => void;
15
15
  open: ({ apolloClient }?: {
16
16
  apolloClient?: any;
17
- }) => Promise<unknown> | undefined;
17
+ }) => Promise<void> | undefined;
18
18
  persist: () => Promise<any>;
19
19
  purge: () => Promise<any>;
20
20
  request(operation: Operation, forward: NextLink): Observable<FetchResult<{
21
21
  [key: string]: any;
22
22
  }, Record<string, any>, Record<string, any>>>;
23
- retry: () => Promise<unknown>;
23
+ retry: () => Promise<void>;
24
24
  sync: ({ apolloClient }: {
25
25
  apolloClient?: any;
26
26
  }) => Promise<void | undefined> | undefined;
@@ -35,7 +35,7 @@ export interface RequestOptions {
35
35
  export interface JsonRequestOptions extends BaseRequestOptions, RequestOptions {
36
36
  }
37
37
  export interface BatchRequestOptions extends BaseRequestOptions {
38
- requests: Array<RequestOptions>;
38
+ requests: ReadonlyArray<RequestOptions>;
39
39
  }
40
40
  export interface RequestResponse {
41
41
  body?: any;