fix: Expand nodes-base formatting validation (no-changelog) (#4689)

*  Simplify `format` command

* 🎨 Format more deeply nested files
This commit is contained in:
Iván Ovejero
2022-11-22 13:43:28 +01:00
committed by GitHub
parent ad6c6f60a1
commit eafef019d7
39 changed files with 8225 additions and 374 deletions

View File

@@ -46,7 +46,8 @@ export async function elasticsearchApiRequestAllItems(
indexId: string,
body: IDataObject = {},
qs: IDataObject = {},
): Promise<any> { //tslint:disable-line:no-any
// tslint:disable-next-line:no-any
): Promise<any> {
//https://www.elastic.co/guide/en/elasticsearch/reference/7.16/paginate-search-results.html#search-after
try {
//create a point in time (PIT) to preserve the current index state over your searches

View File

@@ -195,21 +195,16 @@ export const documentFields: INodeProperties[] = [
},
},
{
displayName: 'By default, you cannot page through more than 10,000 hits. To page through more hits, add "Sort" from options.',
displayName:
'By default, you cannot page through more than 10,000 hits. To page through more hits, add "Sort" from options.',
name: 'paginateNotice',
type: 'notice',
default: '',
displayOptions: {
show: {
resource: [
'document',
],
operation: [
'getAll',
],
returnAll: [
true,
],
resource: ['document'],
operation: ['getAll'],
returnAll: [true],
},
},
},