Coverage for mindsdb / integrations / handlers / bigcommerce_handler / connection_args.py: 0%
4 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from collections import OrderedDict
3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE
6connection_args = OrderedDict(
7 api_base={
8 "type": ARG_TYPE.URL,
9 "description": "The base URL of the BigCommerce instance/server.",
10 "label": "Base URL",
11 "required": True,
12 },
13 access_token={
14 "type": ARG_TYPE.STR,
15 "description": "The API token for the BigCommerce account.",
16 "label": "Access Token",
17 "required": True,
18 "secret": True,
19 },
20)
22connection_args_example = OrderedDict(
23 api_base="https://api.bigcommerce.com/stores/0fh0fh0fh0/v3/",
24 access_token="h0fhag1nyqag1ezme1nyqa",
25)