@onereach/types-contacts-api 1.37.7-beta.949.0 → 1.37.7-beta.960.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 +2 -2
- package/package.json +1 -1
package/dist/index.ts
CHANGED
|
@@ -133,7 +133,6 @@ export interface ShareContactBookParamsDto {
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
export interface SharedBookResponseDto {
|
|
136
|
-
id: string;
|
|
137
136
|
approved_by?: string;
|
|
138
137
|
status: SharedBookStatus;
|
|
139
138
|
target_account: string;
|
|
@@ -148,7 +147,8 @@ export enum SharedBookStatus {
|
|
|
148
147
|
deletedFromSource = 'deletedFromSource'
|
|
149
148
|
}
|
|
150
149
|
|
|
151
|
-
export interface FieldSchemaListParamsDto extends ListApiParams {
|
|
150
|
+
export interface FieldSchemaListParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
151
|
+
q?: string;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
export interface FieldSchemaListDto extends ListApiResponse {
|
package/package.json
CHANGED