/** * Bitly Node - Version 1 * Discriminator: resource=link, operation=update */ interface Credentials { bitlyApi: CredentialReference; bitlyOAuth2Api: CredentialReference; } /** Update a link */ export type BitlyV1LinkUpdateParams = { resource: 'link'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Bitlink */ id?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Archived * @default false */ archived?: boolean | Expression; /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ group?: string | Expression; /** Long URL */ longUrl?: string | Expression | PlaceholderValue; /** Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default [] */ tags?: string[]; /** Title */ title?: string | Expression | PlaceholderValue; }; /** * Deeplinks * @default {} */ deeplink?: { /** Deep Link */ deeplinkUi?: Array<{ /** App ID */ appId?: string | Expression | PlaceholderValue; /** App URI Path */ appUriPath?: string | Expression | PlaceholderValue; /** Install Type */ installType?: string | Expression | PlaceholderValue; /** Install URL */ installUrl?: string | Expression | PlaceholderValue; }>; }; }; export type BitlyV1LinkUpdateNode = { type: 'n8n-nodes-base.bitly'; version: 1; credentials?: Credentials; config: NodeConfig; };