@zimbra/api-client 67.0.0 → 69.0.1

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
@@ -1653,8 +1655,6 @@ type ContactAttributes {
1653
1655
  workEmail2: String
1654
1656
  homeEmail: String
1655
1657
  homeEmail2: String
1656
- phone: String
1657
- phone2: String
1658
1658
  companyPhone: String
1659
1659
  companyPhone2: String
1660
1660
  otherPhone: String
@@ -1759,8 +1759,6 @@ input ContactAttrsInput {
1759
1759
  workEmail2: String
1760
1760
  homeEmail: String
1761
1761
  homeEmail2: String
1762
- phone: String
1763
- phone2: String
1764
1762
  companyPhone: String
1765
1763
  companyPhone2: String
1766
1764
  otherPhone: String
@@ -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;