You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated `automation.actions.definitions_api.create()` method to accept `public_action_definition_egg` instead of `extension_action_definition_input` and returned `PublicActionDefinition` instead `ExtensionActionDefinition`.
14
15
- Updated `automation.actions.definitions_api.get_by_id()` method to return `PublicActionDefinition` instead of `ExtensionActionDefinition`.
15
16
- Updated `automation.actions.definitions_api.get_page()` method to return `CollectionResponsePublicActionDefinitionForwardPaging` instead of `CollectionResponseExtensionActionDefinitionForwardPaging`.
@@ -25,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
26
- Added new param `automation_field_type` to `automation.actions.models.InputFieldDefinition`.
-Update params to `automation.actions.models.FieldTypeDefinition`:
29
+
-Added new params to `automation.actions.models.FieldTypeDefinition`:
29
30
30
31
```python
31
32
{
@@ -43,15 +44,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
44
}
44
45
```
45
46
46
-
### Changes in CMS Clients:
47
+
### CMS clients
48
+
47
49
- Changed `attach_to_lang_group()`, `detach_from_lang_group()` and `update_langs()` methods of all Api clients(`cms.blogs.authors.blog_authors_api`, `cms.blogs.blog_posts.blog_posts_api` and `cms.blogs.tags.blog_tags_api`) return `None` instead of `Error`.
48
50
- Added new param `_property` to `cms.blogs.authors.blog_authors_api.get_by_id()` and `cms.blogs.authors.blog_authors_api.get_page()`.
49
51
- Renamed `cms.source_code.content_api.get()` method to `cms.source_code.content_api.download()`.
50
52
- Renamed `cms.source_code.content_api.replace()` method to `cms.source_code.content_api.create_or_update()`.
51
53
- Added new param `hash` to `cms.source_code.models.AssetFileMetadata`.
52
54
- Added new param `properties` to `cms.source_code.metadata_api.get()`.
53
55
54
-
### Changes in CRM Associations Clients:
56
+
### CRM Associations and Objects clients
57
+
58
+
> [!NOTE]
59
+
> Please note that CRM Objects includes: companies, contacts, deals, line items, all CRM objects `crm.objects`, products, quotes and tickets
60
+
55
61
- Changed the type of parameter `category` from `ErrorCategory` to `string` in `crm.associations.models.StandardError`.
56
62
- Renamed `crm.associations.v4.schema.definitions_api.delete()` method to `crm.associations.v4.schema.definitions_api.archive()`.
57
63
- Changed the type of parameters `object_id` and `crm.associations.v4.basic_api.to_object_id` in `crm.associations.v4.basic_api.archive()`, `crm.associations.v4.basic_api.create()` and `crm.associations.v4.basic_api.create_default()` methods from `string` to `int`.
@@ -61,8 +67,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
61
67
- Changed the type of property `category` in `ErrorCategory` to `string` in `crm.associations.v4.models.StandardError`.
62
68
- Changed the type of property `errors` in `crm.associations.v4.models.BatchResponsePublicDefaultAssociation` from `StandardError1[]` to `StandardError[]`.
63
69
- Added parameter `inverse_label` to `crm.associations.v4.models.PublicAssociationDefinitionCreateRequest` and `crm.associations.v4.models.PublicAssociationDefinitionUpdateRequest`.
70
+
- Updated `crm.time_line.events_api.create_batch()` method to return `None` insted `BatchResponseTimelineEventResponse`.
71
+
- Changed the type of parameter `category` from `ErrorCategory` to `string` in `crm.time_line.models.StandardError`.
72
+
- Removed `crm.objects.associations_api`.
73
+
- Renamed param `postal_mail` to `postal_mail_id` in `crm.objects.postal_mail.basic_api()`.
74
+
- Changed the type of parameter `after` from `int` to `string` in all CRM models `PublicObjectSearchRequest`.
75
+
- Added new param `id_property` in all CRM models `SimplePublicObjectBatchInput`.
76
+
77
+
### CRM Extensions client
64
78
65
-
### Changes in CRM Extensions Client:
66
79
- Changed parameter order in `crm.extinsions.cards_api.archive()` method from `(app_id, card_id)` to `(card_id, app_id)`.
67
80
- Updated `crm.extinsions.cards_api.create()` method to return `PublicCardResponse` instead `CardResponse`.
68
81
- Updated `crm.extinsions.cards_api.get_all()` method to return `PublicCardListResponse` instead `CardListResponse`.
@@ -75,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
75
88
- Added new param `fetch_accounts_uri` to `crm.extinsions.videoconferencing.models.ExternalSettings`.
76
89
- Marked `CRM Extensions Accounting Apis` as deprecated.
77
90
78
-
### Changes in CRM Clients:
91
+
### CRM clients
92
+
79
93
- Added `import_template` and `import_source` params to `crm.imports.models.PublicImportResponse`.
80
94
- Renamed Api client from `crm.lists.memberships_api()` to `crm.lists.list_app_membership_api()`.
81
95
- Renamed Api client from `crm.lists.lists_api()` to `crm.lists.list_app_api()`.
@@ -90,14 +104,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
90
104
- Added `description` param to `crm.schemas.models.ObjectTypeDefinitionPatch`.
91
105
- Added new params: `option_sort_strategy`, `show_currency_symbol`, `form_field`, `referenced_object_type`, `text_display_hint`, `searchable_in_global_search`
92
106
and `number_display_hint` to `crm.schemas.models.ObjectTypePropertyCreate`.
93
-
- Updated `crm.time_line.events_api.create_batch()` method to return `None` insted `BatchResponseTimelineEventResponse`.
94
-
- Changed the type of parameter `category` from `ErrorCategory` to `string` in `crm.time_line.models.StandardError`.
95
-
- Removed `crm.objects.associations_api`.
96
-
- Renamed param `postal_mail` to `postal_mail_id` in `crm.objects.postal_mail.basic_api()`.
97
-
- Changed the type of parameter `after` from `int` to `string` in all CRM models `PublicObjectSearchRequest`.
98
-
- Added new param `id_property` in all CRM models `SimplePublicObjectBatchInput`.
99
107
100
-
### Changes in Marketing Client:
108
+
### Marketing client
109
+
101
110
- Moved methods `archive()`, `create()`, `do_cancel()`, `get_by_id()`, `replace()` and `update()` from `marketing.events.marketing_events_external_api()` to `marketing.events.basic_api`.
102
111
- Moved method `do_upsert()` from `marketing.events.marketing_events_external_api()` to `marketing.events.batch_api()`.
103
112
- Moved and renamed method `archive_batch()` to `archive()` from `marketing.events.marketing_events_external_api.archive_batch()` to `marketing.events.batch_api.archive()`.
@@ -111,23 +120,27 @@ and `number_display_hint` to `crm.schemas.models.ObjectTypePropertyCreate`.
111
120
- Renamed `marketing.forms.models.HubSpotFormDefinitionPatchRequestLegalConsentOptions` to `marketing.forms.models.HubSpotFormDefinitionAllOfLegalConsentOptions`.
112
121
- Added new parameter `other` to `allowed_values` in `marketing.forms.models`.
113
122
114
-
### Changes in Files client:
123
+
### Files client
124
+
115
125
- Moved client from `files.files` to `files`.
116
126
- Added new method `files.files_api.get_metadata()`.
117
127
- Added new param `expires_at` to `files.models.File` and `files.models.FileUpdateInput`.
118
128
- Changed the type of parameter `category` from `ErrorCategory` to `string` in `files.models.StandardError`.
119
129
120
-
### Changes in Events Client:
130
+
### Events сlient
131
+
121
132
- Added new query params: `index_table_name`, `index_table_name`,`object_property_propname`, `property_propname` and `id` to `get_page()` method.
122
133
- Renamed `events.send_api.behavioral_events_tracking_api()` to `events.send_api.custom_event_data_api()`.
123
134
- Added new param `prev` to `events.models.Paging`.
124
135
125
-
### Changes in other Models:
136
+
### Other models
137
+
126
138
- Changed the type of parameter `after` from `int` to `string` in all models `PublicObjectSearchRequest`.
127
139
- Added new param `id_property` in all models `SimplePublicObjectBatchInput`.
128
140
- Removed params `scope_to_scope_group_pks, trial_scopes, trial_scope_to_scope_group_pks` from `oauth.models.AccessTokenInfoResponse`.
0 commit comments