Skip to content

Commit d1417ca

Browse files
chore: gen (generated)
Co-authored-by: shortcuts <[email protected]>
1 parent d849407 commit d1417ca

File tree

364 files changed

+364
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

364 files changed

+364
-0
lines changed

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def to_dict(self) -> Dict[str, Any]:
9191
by_alias=True,
9292
exclude={},
9393
exclude_none=True,
94+
exclude_unset=True,
9495
)
9596
_items = []
9697
if self.variants:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_test_configuration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def to_dict(self) -> Dict[str, Any]:
6262
by_alias=True,
6363
exclude={},
6464
exclude_none=True,
65+
exclude_unset=True,
6566
)
6667
if self.outliers:
6768
_dict["outliers"] = self.outliers.to_dict()

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_test_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def to_dict(self) -> Dict[str, Any]:
6060
by_alias=True,
6161
exclude={},
6262
exclude_none=True,
63+
exclude_unset=True,
6364
)
6465
return _dict
6566

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_tests_variant.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def to_dict(self) -> Dict[str, Any]:
6060
by_alias=True,
6161
exclude={},
6262
exclude_none=True,
63+
exclude_unset=True,
6364
)
6465
return _dict
6566

clients/algoliasearch-client-python/algoliasearch/abtesting/models/ab_tests_variant_search_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def to_dict(self) -> Dict[str, Any]:
6161
by_alias=True,
6262
exclude={},
6363
exclude_none=True,
64+
exclude_unset=True,
6465
)
6566
return _dict
6667

clients/algoliasearch-client-python/algoliasearch/abtesting/models/add_ab_tests_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def to_dict(self) -> Dict[str, Any]:
6161
by_alias=True,
6262
exclude={},
6363
exclude_none=True,
64+
exclude_unset=True,
6465
)
6566
_items = []
6667
if self.variants:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/currency.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def to_dict(self) -> Dict[str, Any]:
6262
by_alias=True,
6363
exclude={},
6464
exclude_none=True,
65+
exclude_unset=True,
6566
)
6667
return _dict
6768

clients/algoliasearch-client-python/algoliasearch/abtesting/models/empty_search.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
return _dict
5960

clients/algoliasearch-client-python/algoliasearch/abtesting/models/empty_search_filter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def to_dict(self) -> Dict[str, Any]:
6060
by_alias=True,
6161
exclude={},
6262
exclude_none=True,
63+
exclude_unset=True,
6364
)
6465
return _dict
6566

clients/algoliasearch-client-python/algoliasearch/abtesting/models/error_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def to_dict(self) -> Dict[str, Any]:
5656
"additional_properties",
5757
},
5858
exclude_none=True,
59+
exclude_unset=True,
5960
)
6061
# puts key-value pairs in additional_properties in the top level
6162
if self.additional_properties is not None:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/filter_effects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def to_dict(self) -> Dict[str, Any]:
5656
by_alias=True,
5757
exclude={},
5858
exclude_none=True,
59+
exclude_unset=True,
5960
)
6061
if self.outliers:
6162
_dict["outliers"] = self.outliers.to_dict()

clients/algoliasearch-client-python/algoliasearch/abtesting/models/list_ab_tests_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def to_dict(self) -> Dict[str, Any]:
5656
by_alias=True,
5757
exclude={},
5858
exclude_none=True,
59+
exclude_unset=True,
5960
)
6061
_items = []
6162
if self.abtests:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/minimum_detectable_effect.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def to_dict(self) -> Dict[str, Any]:
6363
by_alias=True,
6464
exclude={},
6565
exclude_none=True,
66+
exclude_unset=True,
6667
)
6768
return _dict
6869

clients/algoliasearch-client-python/algoliasearch/abtesting/models/outliers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
return _dict
5960

clients/algoliasearch-client-python/algoliasearch/abtesting/models/outliers_filter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def to_dict(self) -> Dict[str, Any]:
6060
by_alias=True,
6161
exclude={},
6262
exclude_none=True,
63+
exclude_unset=True,
6364
)
6465
return _dict
6566

clients/algoliasearch-client-python/algoliasearch/abtesting/models/schedule_ab_test_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def to_dict(self) -> Dict[str, Any]:
5353
by_alias=True,
5454
exclude={},
5555
exclude_none=True,
56+
exclude_unset=True,
5657
)
5758
return _dict
5859

clients/algoliasearch-client-python/algoliasearch/abtesting/models/schedule_ab_tests_request.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def to_dict(self) -> Dict[str, Any]:
6565
by_alias=True,
6666
exclude={},
6767
exclude_none=True,
68+
exclude_unset=True,
6869
)
6970
_items = []
7071
if self.variants:

clients/algoliasearch-client-python/algoliasearch/abtesting/models/variant.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def to_dict(self) -> Dict[str, Any]:
129129
by_alias=True,
130130
exclude={},
131131
exclude_none=True,
132+
exclude_unset=True,
132133
)
133134
_field_dict = {}
134135
if self.currencies:

clients/algoliasearch-client-python/algoliasearch/analytics/models/click_position.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def to_dict(self) -> Dict[str, Any]:
6161
by_alias=True,
6262
exclude={},
6363
exclude_none=True,
64+
exclude_unset=True,
6465
)
6566
return _dict
6667

clients/algoliasearch-client-python/algoliasearch/analytics/models/currency_code.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def to_dict(self) -> Dict[str, Any]:
5555
by_alias=True,
5656
exclude={},
5757
exclude_none=True,
58+
exclude_unset=True,
5859
)
5960
return _dict
6061

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_add_to_cart_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def to_dict(self) -> Dict[str, Any]:
6969
by_alias=True,
7070
exclude={},
7171
exclude_none=True,
72+
exclude_unset=True,
7273
)
7374
return _dict
7475

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_average_clicks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def to_dict(self) -> Dict[str, Any]:
6464
by_alias=True,
6565
exclude={},
6666
exclude_none=True,
67+
exclude_unset=True,
6768
)
6869
return _dict
6970

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_click_through_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def to_dict(self) -> Dict[str, Any]:
6868
by_alias=True,
6969
exclude={},
7070
exclude_none=True,
71+
exclude_unset=True,
7172
)
7273
return _dict
7374

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_conversion_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def to_dict(self) -> Dict[str, Any]:
6868
by_alias=True,
6969
exclude={},
7070
exclude_none=True,
71+
exclude_unset=True,
7172
)
7273
return _dict
7374

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_no_click_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def to_dict(self) -> Dict[str, Any]:
6666
by_alias=True,
6767
exclude={},
6868
exclude_none=True,
69+
exclude_unset=True,
6970
)
7071
return _dict
7172

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_no_results_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def to_dict(self) -> Dict[str, Any]:
6363
by_alias=True,
6464
exclude={},
6565
exclude_none=True,
66+
exclude_unset=True,
6667
)
6768
return _dict
6869

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_purchase_rates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def to_dict(self) -> Dict[str, Any]:
6868
by_alias=True,
6969
exclude={},
7070
exclude_none=True,
71+
exclude_unset=True,
7172
)
7273
return _dict
7374

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_revenue.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def to_dict(self) -> Dict[str, Any]:
5959
by_alias=True,
6060
exclude={},
6161
exclude_none=True,
62+
exclude_unset=True,
6263
)
6364
_field_dict = {}
6465
if self.currencies:

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_searches.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
return _dict
5960

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_searches_no_clicks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def to_dict(self) -> Dict[str, Any]:
5555
by_alias=True,
5656
exclude={},
5757
exclude_none=True,
58+
exclude_unset=True,
5859
)
5960
return _dict
6061

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_searches_no_results.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def to_dict(self) -> Dict[str, Any]:
5656
by_alias=True,
5757
exclude={},
5858
exclude_none=True,
59+
exclude_unset=True,
5960
)
6061
return _dict
6162

clients/algoliasearch-client-python/algoliasearch/analytics/models/daily_users.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
return _dict
5960

clients/algoliasearch-client-python/algoliasearch/analytics/models/error_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def to_dict(self) -> Dict[str, Any]:
5656
"additional_properties",
5757
},
5858
exclude_none=True,
59+
exclude_unset=True,
5960
)
6061
# puts key-value pairs in additional_properties in the top level
6162
if self.additional_properties is not None:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_add_to_cart_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def to_dict(self) -> Dict[str, Any]:
7070
by_alias=True,
7171
exclude={},
7272
exclude_none=True,
73+
exclude_unset=True,
7374
)
7475
_items = []
7576
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_average_click_position_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def to_dict(self) -> Dict[str, Any]:
6767
by_alias=True,
6868
exclude={},
6969
exclude_none=True,
70+
exclude_unset=True,
7071
)
7172
_items = []
7273
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_click_positions_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def to_dict(self) -> Dict[str, Any]:
5858
by_alias=True,
5959
exclude={},
6060
exclude_none=True,
61+
exclude_unset=True,
6162
)
6263
_items = []
6364
if self.positions:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_click_through_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def to_dict(self) -> Dict[str, Any]:
7373
by_alias=True,
7474
exclude={},
7575
exclude_none=True,
76+
exclude_unset=True,
7677
)
7778
_items = []
7879
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_conversion_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def to_dict(self) -> Dict[str, Any]:
6969
by_alias=True,
7070
exclude={},
7171
exclude_none=True,
72+
exclude_unset=True,
7273
)
7374
_items = []
7475
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_no_click_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def to_dict(self) -> Dict[str, Any]:
6767
by_alias=True,
6868
exclude={},
6969
exclude_none=True,
70+
exclude_unset=True,
7071
)
7172
_items = []
7273
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_no_results_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def to_dict(self) -> Dict[str, Any]:
6464
by_alias=True,
6565
exclude={},
6666
exclude_none=True,
67+
exclude_unset=True,
6768
)
6869
_items = []
6970
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_purchase_rate_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def to_dict(self) -> Dict[str, Any]:
6969
by_alias=True,
7070
exclude={},
7171
exclude_none=True,
72+
exclude_unset=True,
7273
)
7374
_items = []
7475
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_revenue.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def to_dict(self) -> Dict[str, Any]:
5858
by_alias=True,
5959
exclude={},
6060
exclude_none=True,
61+
exclude_unset=True,
6162
)
6263
_field_dict = {}
6364
if self.currencies:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_searches_count_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def to_dict(self) -> Dict[str, Any]:
5555
by_alias=True,
5656
exclude={},
5757
exclude_none=True,
58+
exclude_unset=True,
5859
)
5960
_items = []
6061
if self.dates:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_searches_no_clicks_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def to_dict(self) -> Dict[str, Any]:
5858
by_alias=True,
5959
exclude={},
6060
exclude_none=True,
61+
exclude_unset=True,
6162
)
6263
_items = []
6364
if self.searches:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_searches_no_results_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def to_dict(self) -> Dict[str, Any]:
5858
by_alias=True,
5959
exclude={},
6060
exclude_none=True,
61+
exclude_unset=True,
6162
)
6263
_items = []
6364
if self.searches:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_status_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
return _dict
5960

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_top_countries_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def to_dict(self) -> Dict[str, Any]:
5454
by_alias=True,
5555
exclude={},
5656
exclude_none=True,
57+
exclude_unset=True,
5758
)
5859
_items = []
5960
if self.countries:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_top_filter_attribute.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def to_dict(self) -> Dict[str, Any]:
5252
by_alias=True,
5353
exclude={},
5454
exclude_none=True,
55+
exclude_unset=True,
5556
)
5657
return _dict
5758

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_top_filter_attributes_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def to_dict(self) -> Dict[str, Any]:
5858
by_alias=True,
5959
exclude={},
6060
exclude_none=True,
61+
exclude_unset=True,
6162
)
6263
_items = []
6364
if self.attributes:

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_top_filter_for_attribute.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def to_dict(self) -> Dict[str, Any]:
5757
by_alias=True,
5858
exclude={},
5959
exclude_none=True,
60+
exclude_unset=True,
6061
)
6162
return _dict
6263

0 commit comments

Comments
 (0)