/** * Strapi Node - Version 1 * Discriminator: resource=entry, operation=create */ interface Credentials { strapiApi: CredentialReference; strapiTokenApi: CredentialReference; } /** Create an entry */ export type StrapiV1EntryCreateParams = { resource: 'entry'; operation: 'create'; authentication?: 'password' | 'token' | Expression; /** * Name of the content type */ contentType?: string | Expression | PlaceholderValue; /** * Comma-separated list of the properties which should used as columns for the new rows */ columns?: string | Expression | PlaceholderValue; }; export type StrapiV1EntryCreateNode = { type: 'n8n-nodes-base.strapi'; version: 1; credentials?: Credentials; config: NodeConfig; };