v0.1
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
const showOnlyForDistributionContentBookMetaV1 = {
|
||||
operation: ['contentBookMetaV1'],
|
||||
resource: ['distribution'],
|
||||
};
|
||||
|
||||
export const contentBookMetaV1Description: INodeProperties[] = [
|
||||
{
|
||||
displayName: '书籍 ID',
|
||||
name: 'bookId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: showOnlyForDistributionContentBookMetaV1,
|
||||
},
|
||||
routing: {
|
||||
send: {
|
||||
type: 'query',
|
||||
property: 'book_id',
|
||||
},
|
||||
},
|
||||
description: '要查询信息的书籍 ID',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user