Skip to content

Commit fabbf07

Browse files
committed
Fix types
1 parent 2574779 commit fabbf07

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

x-pack/plugins/ingest_manager/common/types/models/agent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ interface AgentBase {
7373
type: AgentType;
7474
active: boolean;
7575
enrolled_at: string;
76-
unenrolled_at: string;
77-
unenrollement_started_at: string;
76+
unenrolled_at?: string;
77+
unenrollement_started_at?: string;
7878
shared_id?: string;
7979
access_api_key_id?: string;
8080
default_api_key?: string;

x-pack/test/api_integration/apis/fleet/agent_flow.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ export default function (providerContext: FtrProviderContext) {
152152
.post(`/api/ingest_manager/fleet/agents/${enrollmentResponse.item.id}/acks`)
153153
.set('Authorization', `ApiKey ${agentAccessAPIKey}`)
154154
.set('kbn-xsrf', 'xx')
155-
156155
.send({
157156
events: [
158157
{

0 commit comments

Comments
 (0)