@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.
- package/dist/schema.graphql +2 -0
- package/dist/src/apollo/offline-queue-link/index.d.ts +2 -2
- package/dist/src/request/types.d.ts +1 -1
- package/dist/src/schema/generated-schema-types.d.ts +1066 -1066
- package/dist/zm-api-js-client.esm.js +1086 -1072
- 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 +2402 -5603
- package/package.json +29 -29
- package/src/apollo/offline-queue-link/index.ts +1 -1
- package/src/apollo/zimbra-in-memory-cache.ts +33 -0
- package/src/batch-client/index.ts +2 -2
- package/src/request/index.ts +2 -2
- package/src/request/types.ts +1 -1
- package/src/schema/generated-schema-types.ts +1113 -1113
- package/src/schema/schema.graphql +2 -0
package/dist/schema.graphql
CHANGED
|
@@ -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<
|
|
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<
|
|
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:
|
|
38
|
+
requests: ReadonlyArray<RequestOptions>;
|
|
39
39
|
}
|
|
40
40
|
export interface RequestResponse {
|
|
41
41
|
body?: any;
|