Zapier CLI,在创建新 Zap 时,在 inputFields 上使用选项不会在表单中显示

Zapier CLI, using choices on inputFields does not show it in the form when creating new Zap

我正在按照 zapier-platform-schema 的文档在 hook 触发器 inputFields 中设置选项,但是在创建新 Zap 时它们没有显示在表单中。

我执行以下操作:

{
    key: 'booking',
    noun: 'Booking',
    display: {
        label: 'text',
        description: 'text',
        important: true
    },
    operation: {
        type: 'hook',
        inputFields: [
            {
                key: 'action',
                required: true,
                choices:  {
                    created: 'New booking placed',
                    updated: 'Booking amendment',
                    canceled: 'Booking canceled'
                }
            }
        ],
    }
};

那我就zapier push。当我在编辑器中创建新的 Zap 时,在我 select 集成项目之后我只看到 booking 复选框而不是选择表单

我的问题解决了,Zapier 支持帮助了我。代码是正确的,我只是以错误的方式测试它。在我 select 编辑触发器之后,我在 Zap 创建页面的早期阶段寻找 select drop-down。在我将帐户连接到 Zap 后出现 drop-down 的地方。