@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.
- package/dist/schema.graphql +2 -4
- 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 +1062 -1066
- package/dist/zm-api-js-client.esm.js +1088 -1075
- 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 +3 -3
- package/src/request/index.ts +2 -2
- package/src/request/types.ts +1 -1
- package/src/schema/generated-schema-types.ts +1108 -1112
- package/src/schema/schema.graphql +2 -4
- package/src/utils/normalize-otherAttribute-contact.ts +0 -2
|
@@ -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
|