Как расширить декларативные схемы адаптивных диалогов? - PullRequest
1 голос
/ 06 апреля 2020

Я создал библиотеку для расширения адаптивных диалогов для доступа к базе данных.

Я пытаюсь расширить схемы для использования декларативного адаптивного диалога.

Я создал этот файл Sql .InsertRow.schema:

    "$schema": "https://raw.githubusercontent.com/microsoft/botbuilder-dotnet/master/schemas/component.schema",
    "$role": "implements(Microsoft.IDialog)",
    "type": "object",
    "title": "Sql Insert Row",
    "description": "Insert row in database.",
    "required": [
        "url",
        "method"
    ],
    "properties": {
        "id": {
            "type": "string",
            "title": "Id",
            "description": "Optional id for the dialog"
        },
        "disabled": {
            "$role": "expression",
            "type": "boolean",
            "title": "Disabled",
            "description": "Optional condition which if true will disable this action.",
            "examples": [
                "user.age > 3"
            ]
        },
        "connection": {
            "$role": "expression",
            "type": "string",
            "title": "Connection",
            "description": "Connection string.",
            "examples": [
                "Data Source=:memory:"
            ]
        },
        "providerName": {
            "$role": "expression",
            "type": "string",
            "title": "Provider Name",
            "description": "Gets or sets the provider name to use.",
            "examples": [
                "SQLite"
            ]
        },
        "table": {
            "$role": "expression",
            "type": "string",
            "title": "Table Name",
            "description": "Gets or sets the table to insert the row.",
            "examples": [
                "Customer"
            ]
        },
        "row": {
            "$role": "expression",
            "type": "object",
            "title": "Row",
            "description": "Gets or sets the row to insert.",
            "examples": [
                {
                    "id" : "1",
                    "Name": "Doe",
                    "FirtName": "John"
                }
            ]
        }
    }
}

С помощью инструмента bf-cli я пытаюсь объединить файл для создания окончательного файла схемы. Но у меня есть эта ошибка

Sql.InsertRow.schema:error: interface Microsoft.IDialog is not defined.

Как я могу сделать $ ref для ссылки sdk.schema из https://raw.githubusercontent.com/microsoft/botbuilder-dotnet/master/schemas/sdk.schema?

спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...