@zimbra/api-client 101.0.1-master.1cac479.0 → 101.0.1-master.50ef899.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 -1
- package/dist/src/batch-client/index.d.ts +1 -1
- package/dist/src/batch-client/types.d.ts +1 -1
- package/dist/src/schema/generated-schema-types.d.ts +1 -1
- package/dist/zm-api-js-client.esm.js +57 -49
- package/dist/zm-api-js-client.esm.js.map +1 -1
- package/dist/zm-api-js-client.js +4 -4
- 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.json +1 -1
- package/src/batch-client/index.ts +8 -5
- package/src/batch-client/types.ts +1 -1
- package/src/schema/generated-schema-types.ts +1 -1
- package/src/schema/schema.graphql +1 -1
package/dist/schema.graphql
CHANGED
|
@@ -3648,7 +3648,7 @@ type Query {
|
|
|
3648
3648
|
getMessagesMetadata(ids: [ID!]!, isLocal: Boolean): [MessageInfo]
|
|
3649
3649
|
getRights(input: GetRightsInput!): RightsResponse
|
|
3650
3650
|
getSMimePublicCerts(
|
|
3651
|
-
contactAddr: String!
|
|
3651
|
+
contactAddr: [String]!
|
|
3652
3652
|
store: String!
|
|
3653
3653
|
): SMimePublicCertsResponse
|
|
3654
3654
|
getSMimeCertInfo(certId: String): SmimeCertInfoResponse
|
|
@@ -122,7 +122,7 @@ export declare class ZimbraBatchClient {
|
|
|
122
122
|
}>;
|
|
123
123
|
getSignatures: () => Promise<{}>;
|
|
124
124
|
getSMimeCertInfo: () => Promise<any>;
|
|
125
|
-
getSMimePublicCerts: (
|
|
125
|
+
getSMimePublicCerts: ({ contactAddr, store }: GetSMimePublicCertsOptions) => Promise<any>;
|
|
126
126
|
getTag: () => Promise<any>;
|
|
127
127
|
getTasks: (options: SearchOptions) => Promise<any>;
|
|
128
128
|
getTrustedDevices: () => Promise<any>;
|
|
@@ -259,7 +259,7 @@ export interface CreateSearchFolderOptions {
|
|
|
259
259
|
view?: string;
|
|
260
260
|
}
|
|
261
261
|
export interface GetSMimePublicCertsOptions {
|
|
262
|
-
contactAddr: string
|
|
262
|
+
contactAddr: string | Array<string>;
|
|
263
263
|
store: string;
|
|
264
264
|
}
|
|
265
265
|
export declare enum SetRecoveryAccountOpType {
|
|
@@ -3381,7 +3381,7 @@ export type QueryGetSMimeCertInfoArgs = {
|
|
|
3381
3381
|
certId?: InputMaybe<Scalars['String']['input']>;
|
|
3382
3382
|
};
|
|
3383
3383
|
export type QueryGetSMimePublicCertsArgs = {
|
|
3384
|
-
contactAddr: Scalars['String']['input']
|
|
3384
|
+
contactAddr: Array<InputMaybe<Scalars['String']['input']>>;
|
|
3385
3385
|
store: Scalars['String']['input'];
|
|
3386
3386
|
};
|
|
3387
3387
|
export type QueryGetScratchCodesArgs = {
|