File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ import {
11
11
ContactTemplate ,
12
12
ContactUpdate ,
13
13
FollowUpWithIntegrationEntities ,
14
+ IntegrationDefinedOptions ,
14
15
LabeledIntegrationEntity ,
15
16
LoggedIntegrationEntity ,
16
17
Task ,
17
- TaskMetadata ,
18
18
} from '.' ;
19
19
import { IntegrationEntityType } from './integration-entity.model' ;
20
20
import { IntegrationsEvent } from './integrations-event.model' ;
@@ -99,5 +99,5 @@ export interface Adapter {
99
99
config : Config ,
100
100
body : FollowUpWithIntegrationEntities ,
101
101
) => Promise < string > ;
102
- getTaskMetadata ?: ( config : Config ) => Promise < TaskMetadata > ;
102
+ getTaskMetadata ?: ( config : Config ) => Promise < IntegrationDefinedOptions > ;
103
103
}
Original file line number Diff line number Diff line change 1
- export type IntegrationDefinedOptionsModel = {
1
+ export type IntegrationDefinedOptions = {
2
2
label : string ;
3
3
type : string ;
4
4
options ?: {
You can’t perform that action at this time.
0 commit comments