mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Expand nodes-base formatting validation (no-changelog) (#4689)
* ⚡ Simplify `format` command * 🎨 Format more deeply nested files
This commit is contained in:
@@ -343,7 +343,8 @@ export const certificateDescription: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'Name of and, optionally, path to the X509 certificate file that is used to form the certificate-key pair. /nsconfig/ssl/ is the default path.',
|
||||
description:
|
||||
'Name of and, optionally, path to the X509 certificate file that is used to form the certificate-key pair. /nsconfig/ssl/ is the default path.',
|
||||
},
|
||||
{
|
||||
displayName: 'Private Key File Name',
|
||||
@@ -357,7 +358,8 @@ export const certificateDescription: INodeProperties[] = [
|
||||
operation: ['install'],
|
||||
},
|
||||
},
|
||||
description: 'Name of and, optionally, path to the X509 certificate file that is used to form the certificate-key pair. /nsconfig/ssl/ is the default path.',
|
||||
description:
|
||||
'Name of and, optionally, path to the X509 certificate file that is used to form the certificate-key pair. /nsconfig/ssl/ is the default path.',
|
||||
},
|
||||
{
|
||||
displayName: 'Certificate Format',
|
||||
|
||||
@@ -26,9 +26,7 @@ export const fileDescription: INodeProperties[] = [
|
||||
default: 'upload',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'file',
|
||||
],
|
||||
resource: ['file'],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -90,7 +88,7 @@ export const fileDescription: INodeProperties[] = [
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['delete', 'download' ],
|
||||
operation: ['delete', 'download'],
|
||||
resource: ['file'],
|
||||
},
|
||||
},
|
||||
@@ -105,7 +103,7 @@ export const fileDescription: INodeProperties[] = [
|
||||
description: 'Name of the file. It should not include filepath.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['delete', 'download' ],
|
||||
operation: ['delete', 'download'],
|
||||
resource: ['file'],
|
||||
},
|
||||
},
|
||||
@@ -116,11 +114,10 @@ export const fileDescription: INodeProperties[] = [
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: 'data',
|
||||
description:
|
||||
'The name of the output field to put the binary file data in',
|
||||
description: 'The name of the output field to put the binary file data in',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['download' ],
|
||||
operation: ['download'],
|
||||
resource: ['file'],
|
||||
},
|
||||
},
|
||||
|
||||
@@ -19,8 +19,7 @@ export async function citrixADCApiRequest(
|
||||
uri?: string,
|
||||
option: IDataObject = {},
|
||||
// tslint:disable-next-line:no-any
|
||||
): Promise<any> {
|
||||
|
||||
): Promise<any> {
|
||||
const { url } = (await this.getCredentials('citrixAdcApi')) as { url: string };
|
||||
|
||||
let options: OptionsWithUri = {
|
||||
|
||||
Reference in New Issue
Block a user