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