@@ -65,9 +65,9 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
6565 config_revision : { type : 'integer' } ,
6666 config_newest_revision : { type : 'integer' } ,
6767 default_api_key_id : { type : 'keyword' } ,
68- default_api_key : { type : 'keyword' } ,
68+ default_api_key : { type : 'binary' , index : false } ,
6969 updated_at : { type : 'date' } ,
70- current_error_events : { type : 'text' } ,
70+ current_error_events : { type : 'text' , index : false } ,
7171 packages : { type : 'keyword' } ,
7272 } ,
7373 } ,
@@ -83,7 +83,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
8383 properties : {
8484 agent_id : { type : 'keyword' } ,
8585 type : { type : 'keyword' } ,
86- data : { type : 'binary' } ,
86+ data : { type : 'binary' , index : false } ,
8787 sent_at : { type : 'date' } ,
8888 created_at : { type : 'date' } ,
8989 } ,
@@ -130,7 +130,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
130130 updated_at : { type : 'date' } ,
131131 updated_by : { type : 'keyword' } ,
132132 revision : { type : 'integer' } ,
133- monitoring_enabled : { type : 'keyword' } ,
133+ monitoring_enabled : { type : 'keyword' , index : false } ,
134134 } ,
135135 } ,
136136 migrations : {
@@ -148,7 +148,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
148148 properties : {
149149 name : { type : 'keyword' } ,
150150 type : { type : 'keyword' } ,
151- api_key : { type : 'binary' } ,
151+ api_key : { type : 'binary' , index : false } ,
152152 api_key_id : { type : 'keyword' } ,
153153 config_id : { type : 'keyword' } ,
154154 created_at : { type : 'date' } ,
@@ -171,9 +171,9 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
171171 type : { type : 'keyword' } ,
172172 is_default : { type : 'boolean' } ,
173173 hosts : { type : 'keyword' } ,
174- ca_sha256 : { type : 'keyword' } ,
175- fleet_enroll_username : { type : 'binary' } ,
176- fleet_enroll_password : { type : 'binary' } ,
174+ ca_sha256 : { type : 'keyword' , index : false } ,
175+ fleet_enroll_username : { type : 'binary' , index : false } ,
176+ fleet_enroll_password : { type : 'binary' , index : false } ,
177177 config : { type : 'flattened' } ,
178178 } ,
179179 } ,
@@ -202,6 +202,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
202202 output_id : { type : 'keyword' } ,
203203 inputs : {
204204 type : 'nested' ,
205+ enabled : false ,
205206 properties : {
206207 type : { type : 'keyword' } ,
207208 enabled : { type : 'boolean' } ,
0 commit comments