@arrowsphere/api-client 3.198.0-rc-bdj-1 → 3.198.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/CHANGELOG.md +10 -0
- package/build/contact/contactClient.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.198.0] - 2025.05.27
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- [contacts] add endpoint `anonymizeContacts` to anonymize contacts
|
|
11
|
+
|
|
12
|
+
### Deleted
|
|
13
|
+
|
|
14
|
+
- [partner] remove endpoint `anonymizeContacts`
|
|
15
|
+
|
|
6
16
|
## [3.197.0] - 2025.05.23
|
|
7
17
|
|
|
8
18
|
### Added
|
|
@@ -26,7 +26,7 @@ export declare enum AnonymizeContactsPayloadFields {
|
|
|
26
26
|
COLUMN_CONTACTS = "contacts"
|
|
27
27
|
}
|
|
28
28
|
export declare type AnonymizeContactsPayload = {
|
|
29
|
-
[AnonymizeContactsPayloadFields.COLUMN_PARTNER_REF]
|
|
29
|
+
[AnonymizeContactsPayloadFields.COLUMN_PARTNER_REF]?: string;
|
|
30
30
|
[AnonymizeContactsPayloadFields.COLUMN_CONTACTS]: number[];
|
|
31
31
|
};
|
|
32
32
|
export declare class ContactClient extends AbstractRestfulClient {
|
package/package.json
CHANGED