@@ -6,17 +6,17 @@ Embedded accounting integrations for POS and eCommerce platforms.
66## SDK Installation
77
88``` bash
9- pip install codat-synccommerce
9+ pip install codat-sync-for-commerce
1010```
1111<!-- End SDK Installation -->
1212
1313## SDK Example Usage
1414<!-- Start SDK Example Usage -->
1515``` python
16- import codat
17- from codat .models import operations, shared
16+ import codatsynccommerce
17+ from codatsynccommerce .models import shared
1818
19- s = codat.Codat (
19+ s = codatsynccommerce.CodatSyncCommerce (
2020 security = shared.Security(
2121 auth_header = " YOUR_API_KEY_HERE" ,
2222 ),
@@ -26,7 +26,7 @@ s = codat.Codat(
2626req = shared.CreateCompany(
2727 name = " Bob's Burgers" ,
2828)
29-
29+
3030res = s.company_management.create_company(req)
3131
3232if res.company is not None :
@@ -38,37 +38,37 @@ if res.company is not None:
3838## Available Resources and Operations
3939
4040
41- ### company_management
41+ ### [ company_management] ( docs/companymanagement/README.md )
4242
43- * ` create_company ` - Create a sync for commerce company
44- * ` create_connection ` - Create a data connection
45- * ` list_companies ` - List companies
46- * ` list_connections ` - List data connections
47- * ` update_connection ` - Update data connection
43+ * [ create_company] ( docs/companymanagement/README.md#create_company ) - Create Sync for Commerce company
44+ * [ create_connection] ( docs/companymanagement/README.md#create_connection ) - Create connection
45+ * [ list_companies] ( docs/companymanagement/README.md#list_companies ) - List companies
46+ * [ list_connections] ( docs/companymanagement/README.md#list_connections ) - List data connections
47+ * [ update_connection] ( docs/companymanagement/README.md#update_connection ) - Update data connection
4848
49- ### configuration
49+ ### [ configuration] ( docs/configuration/README.md )
5050
51- * ` get_configuration ` - Retrieve config preferences set for a company.
52- * ` get_sync_status ` - Get status for a company's syncs
53- * ` set_configuration ` - Create or update configuration.
51+ * [ get_configuration] ( docs/configuration/README.md#get_configuration ) - Retrieve config preferences set for a company.
52+ * [ get_sync_status] ( docs/configuration/README.md#get_sync_status ) - Get status for a company's syncs
53+ * [ set_configuration] ( docs/configuration/README.md#set_configuration ) - Create or update configuration.
5454
55- ### integrations
55+ ### [ integrations] ( docs/integrations/README.md )
5656
57- * ` get_integration_branding ` - Get branding for an integration
58- * ` list_integrations ` - List information on Codat's supported integrations
57+ * [ get_integration_branding] ( docs/integrations/README.md#get_integration_branding ) - Get branding for an integration
58+ * [ list_integrations] ( docs/integrations/README.md#list_integrations ) - List information on Codat's supported integrations
5959
60- ### sync
60+ ### [ sync] ( docs/sync/README.md )
6161
62- * ` request_sync ` - Run a Commerce sync from the last successful sync
63- * ` request_sync_for_date_range ` - Run a Commerce sync from a given date range
62+ * [ request_sync] ( docs/sync/README.md#request_sync ) - Run a Commerce sync from the last successful sync
63+ * [ request_sync_for_date_range] ( docs/sync/README.md#request_sync_for_date_range ) - Run a Commerce sync from a given date range
6464
65- ### sync_flow_preferences
65+ ### [ sync_flow_preferences] ( docs/syncflowpreferences/README.md )
6666
67- * ` get_config_text_sync_flow ` - Retrieve preferences for text fields on Sync Flow
68- * ` get_sync_flow_url ` - Retrieve sync flow url
69- * ` get_visible_accounts ` - List visible accounts
70- * ` update_config_text_sync_flow ` - Update preferences for text fields on sync flow
71- * ` update_visible_accounts_sync_flow ` - Update the visible accounts on Sync Flow
67+ * [ get_config_text_sync_flow] ( docs/syncflowpreferences/README.md#get_config_text_sync_flow ) - Retrieve preferences for text fields on Sync Flow
68+ * [ get_sync_flow_url] ( docs/syncflowpreferences/README.md#get_sync_flow_url ) - Retrieve sync flow url
69+ * [ get_visible_accounts] ( docs/syncflowpreferences/README.md#get_visible_accounts ) - List visible accounts
70+ * [ update_config_text_sync_flow] ( docs/syncflowpreferences/README.md#update_config_text_sync_flow ) - Update preferences for text fields on sync flow
71+ * [ update_visible_accounts_sync_flow] ( docs/syncflowpreferences/README.md#update_visible_accounts_sync_flow ) - Update the visible accounts on Sync Flow
7272<!-- End SDK Available Operations -->
7373
7474### SDK Generated by [ Speakeasy] ( https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks )
0 commit comments