@onereach/types-contacts-api 1.37.6-beta.849.0 → 1.37.6-beta.853.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/index.ts +5 -1
- package/package.json +1 -1
package/dist/index.ts
CHANGED
|
@@ -99,7 +99,6 @@ export interface ContactBookResponseDto extends CreateContactBookDto {
|
|
|
99
99
|
updated_at: Date;
|
|
100
100
|
contactsCount: number;
|
|
101
101
|
status?: SharedBookStatus;
|
|
102
|
-
sharedBy?: string;
|
|
103
102
|
}
|
|
104
103
|
|
|
105
104
|
export interface CreateContactBookDto {
|
|
@@ -124,6 +123,11 @@ export interface ShareContactBookParamsDto {
|
|
|
124
123
|
targetAccountId: string;
|
|
125
124
|
}
|
|
126
125
|
|
|
126
|
+
export interface SharedBookMetaParamsDto {
|
|
127
|
+
accountId: string;
|
|
128
|
+
bookIds: string;
|
|
129
|
+
}
|
|
130
|
+
|
|
127
131
|
export interface SharedBookResponseDto {
|
|
128
132
|
approved_by?: string;
|
|
129
133
|
status: SharedBookStatus;
|
package/package.json
CHANGED