@@ -12,7 +12,7 @@ pip install codat-common
1212<!-- Start SDK Example Usage -->
1313``` python
1414import codatcommon
15- from codatcommon.models import operations, shared
15+ from codatcommon.models import shared
1616
1717s = codatcommon.CodatCommon(
1818 security = shared.Security(
@@ -25,8 +25,8 @@ req = shared.CompanyRequestBody(
2525 description = " corrupti" ,
2626 name = " Kelvin Sporer" ,
2727)
28-
29- res = s.companies.create_company (req)
28+
29+ res = s.companies.create (req)
3030
3131if res.company is not None :
3232 # handle response
@@ -37,58 +37,57 @@ if res.company is not None:
3737## Available Resources and Operations
3838
3939
40- ### companies
40+ ### [ companies] ( docs/companies/README.md )
4141
42- * ` create_company ` - Create company
43- * ` delete_company ` - Delete a company
44- * ` get_company ` - Get company
45- * ` list_companies ` - List companies
46- * ` update_company ` - Update company
42+ * [ create ] ( docs/companies/README.md#create ) - Create company
43+ * [ delete ] ( docs/companies/README.md#delete ) - Delete a company
44+ * [ get ] ( docs/companies/README.md#get ) - Get company
45+ * [ list ] ( docs/companies/README.md#list ) - List companies
46+ * [ update ] ( docs/companies/README.md#update ) - Update company
4747
48- ### connections
48+ ### [ connections] ( docs/connections/README.md )
4949
50- * ` create_data_connection ` - Create a data connection
51- * ` delete_company_connection ` - Delete connection
52- * ` get_company_connection ` - Get connection
53- * ` list_company_connections ` - List connections
54- * ` unlink_company_connection ` - Unlink connection
55- * ` update_connection_authorization ` - Update authorization
50+ * [ create ] ( docs/connections/README.md#create ) - Create connection
51+ * [ delete ] ( docs/connections/README.md#delete ) - Delete connection
52+ * [ get ] ( docs/connections/README.md#get ) - Get connection
53+ * [ list ] ( docs/connections/README.md#list ) - List connections
54+ * [ unlink_connection ] ( docs/connections/README.md#unlink_connection ) - Unlink connection
55+ * [ update_authorization ] ( docs/connections/README.md#update_authorization ) - Update authorization
5656
57- ### data_status
57+ ### [ data_status] ( docs/datastatus/README.md )
5858
59- * ` get_company_data_history ` - Get pull operations
60- * ` get_company_data_status ` - Get data status
61- * ` get_pull_operation ` - Get pull operation
59+ * [ get ] ( docs/datastatus/README.md#get ) - Get data status
60+ * [ get_pull_operation ] ( docs/datastatus/README.md#get_pull_operation ) - Get pull operation
61+ * [ list_pull_operations ] ( docs/datastatus/README.md#list_pull_operations ) - Get pull operations
6262
63- ### integrations
63+ ### [ integrations] ( docs/integrations/README.md )
6464
65- * ` get_integration ` - Get integration
66- * ` get_integrations_branding ` - Get branding
67- * ` list_integrations ` - List integrations
65+ * [ get ] ( docs/integrations/README.md#get ) - Get integration
66+ * [ get_branding ] ( docs/integrations/README.md#get_branding ) - Get branding
67+ * [ list ] ( docs/integrations/README.md#list ) - List integrations
6868
69- ### push_data
69+ ### [ push_data] ( docs/pushdata/README.md )
7070
71- * ` get_company_push_history ` - List push operations
72- * ` get_create_update_model_options_by_data_type ` - List push options
73- * ` get_push_operation ` - Get push operation
71+ * [ get_model_options ] ( docs/pushdata/README.md#get_model_options ) - Get push options
72+ * [ get_operation ] ( docs/pushdata/README.md#get_operation ) - Get push operation
73+ * [ list_operations ] ( docs/pushdata/README.md#list_operations ) - List push operations
7474
75- ### refresh_data
75+ ### [ refresh_data] ( docs/refreshdata/README.md )
7676
77- * ` create_pull_operation ` - Queue pull operation
78- * ` refresh_company_data ` - Queue pull operations
77+ * [ all ] ( docs/refreshdata/README.md#all ) - Queue pull operations
78+ * [ by_data_type ] ( docs/refreshdata/README.md#by_data_type ) - Queue pull operation
7979
80- ### settings
80+ ### [ settings] ( docs/settings/README.md )
8181
82- * ` get_profile ` - Get profile
83- * ` get_profile_sync_settings ` - Get sync settings
84- * ` update_profile ` - Update profile
85- * ` update_sync_settings ` - Update all sync settings
82+ * [ get_profile] ( docs/settings/README.md#get_profile ) - Get profile
83+ * [ get_sync_settings] ( docs/settings/README.md#get_sync_settings ) - Update all sync settings
84+ * [ update_profile] ( docs/settings/README.md#update_profile ) - Update profile
8685
87- ### webhooks
86+ ### [ webhooks] ( docs/webhooks/README.md )
8887
89- * ` create_rule ` - Create webhook
90- * ` get_webhook ` - Get webhook
91- * ` list_rules ` - List webhooks
88+ * [ create ] ( docs/webhooks/README.md#create ) - Create webhook
89+ * [ get ] ( docs/webhooks/README.md#get ) - Get webhook
90+ * [ list ] ( docs/webhooks/README.md#list ) - List webhooks
9291<!-- End SDK Available Operations -->
9392
9493### SDK Generated by [ Speakeasy] ( https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks )
0 commit comments