criteo-api-marketingsolutions-sdk 0.0.250811__py3-none-any.whl → 0.0.250825__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of criteo-api-marketingsolutions-sdk might be problematic. Click here for more details.

@@ -8,7 +8,7 @@
8
8
  """
9
9
 
10
10
 
11
- __version__ = "0.0.250811"
11
+ __version__ = "0.0.250825"
12
12
 
13
13
  # import ApiClient
14
14
  from criteo_api_marketingsolutions_preview.api_client import ApiClient
@@ -21,12 +21,9 @@ from criteo_api_marketingsolutions_preview.model_utils import ( # noqa: F401
21
21
  none_type,
22
22
  validate_and_convert_types
23
23
  )
24
- from criteo_api_marketingsolutions_preview.model.advertiser_creation_request import AdvertiserCreationRequest
25
- from criteo_api_marketingsolutions_preview.model.advertiser_creation_response import AdvertiserCreationResponse
26
24
  from criteo_api_marketingsolutions_preview.model.advertiser_dataset_list_response import AdvertiserDatasetListResponse
27
25
  from criteo_api_marketingsolutions_preview.model.get_portfolio_response import GetPortfolioResponse
28
26
  from criteo_api_marketingsolutions_preview.model.list_available_industries_response import ListAvailableIndustriesResponse
29
- from criteo_api_marketingsolutions_preview.model.unauthorized_response_v2 import UnauthorizedResponseV2
30
27
 
31
28
 
32
29
  class AdvertiserApi(object):
@@ -87,64 +84,6 @@ class AdvertiserApi(object):
87
84
  },
88
85
  api_client=api_client
89
86
  )
90
- self.create_advertiser_endpoint = _Endpoint(
91
- settings={
92
- 'response_type': (AdvertiserCreationResponse,),
93
- 'auth': [
94
- 'oauth',
95
- 'oauth'
96
- ],
97
- 'endpoint_path': '/preview/advertisers',
98
- 'operation_id': 'create_advertiser',
99
- 'http_method': 'POST',
100
- 'servers': None,
101
- },
102
- params_map={
103
- 'all': [
104
- 'advertiser_creation_request',
105
- ],
106
- 'required': [
107
- 'advertiser_creation_request',
108
- ],
109
- 'nullable': [
110
- ],
111
- 'enum': [
112
- ],
113
- 'validation': [
114
- ]
115
- },
116
- root_map={
117
- 'validations': {
118
- },
119
- 'allowed_values': {
120
- },
121
- 'openapi_types': {
122
- 'advertiser_creation_request':
123
- (AdvertiserCreationRequest,),
124
- },
125
- 'attribute_map': {
126
- },
127
- 'location_map': {
128
- 'advertiser_creation_request': 'body',
129
- },
130
- 'collection_format_map': {
131
- }
132
- },
133
- headers_map={
134
- 'accept': [
135
- 'application/json',
136
- 'text/plain',
137
- 'text/json'
138
- ],
139
- 'content_type': [
140
- 'application/json-patch+json',
141
- 'application/json',
142
- 'text/json',
143
- 'application/*+json'
144
- ]
145
- },
146
- api_client=api_client
147
- )
148
87
  self.get_dataset_list_endpoint = _Endpoint(
149
88
  settings={
150
89
  'response_type': (AdvertiserDatasetListResponse,),
@@ -325,89 +264,6 @@ class AdvertiserApi(object):
325
264
  kwargs['_request_auths'] = kwargs.get('_request_auths', None)
326
265
  return self.api_portfolio_get_endpoint.call_with_http_info(**kwargs)
327
266
 
328
- def create_advertiser(
329
- self,
330
- advertiser_creation_request,
331
- **kwargs
332
- ):
333
- """create_advertiser # noqa: E501
334
-
335
- Create a new advertiser based on provided parameters. This could take up to 30 seconds. # noqa: E501
336
- This method makes a synchronous HTTP request by default. To make an
337
- asynchronous HTTP request, please pass async_req=True
338
-
339
- >>> thread = api.create_advertiser(advertiser_creation_request, async_req=True)
340
- >>> result = thread.get()
341
-
342
- Args:
343
- advertiser_creation_request (AdvertiserCreationRequest):
344
-
345
- Keyword Args:
346
- _return_http_data_only (bool): response data without head status
347
- code and headers. Default is True.
348
- _preload_content (bool): if False, the urllib3.HTTPResponse object
349
- will be returned without reading/decoding response data.
350
- Default is True.
351
- _request_timeout (int/float/tuple): timeout setting for this request. If
352
- one number provided, it will be total request timeout. It can also
353
- be a pair (tuple) of (connection, read) timeouts.
354
- Default is None.
355
- _check_input_type (bool): specifies if type checking
356
- should be done one the data sent to the server.
357
- Default is True.
358
- _check_return_type (bool): specifies if type checking
359
- should be done one the data received from the server.
360
- Default is True.
361
- _spec_property_naming (bool): True if the variable names in the input data
362
- are serialized names, as specified in the OpenAPI document.
363
- False if the variable names in the input data
364
- are pythonic names, e.g. snake case (default)
365
- _content_type (str/None): force body content-type.
366
- Default is None and content-type will be predicted by allowed
367
- content-types and body.
368
- _host_index (int/None): specifies the index of the server
369
- that we want to use.
370
- Default is read from the configuration.
371
- _request_auths (list): set to override the auth_settings for an a single
372
- request; this effectively ignores the authentication
373
- in the spec for a single request.
374
- Default is None
375
- async_req (bool): execute request asynchronously
376
-
377
- Returns:
378
- AdvertiserCreationResponse
379
- If the method is called asynchronously, returns the request
380
- thread.
381
- """
382
- kwargs['async_req'] = kwargs.get(
383
- 'async_req', False
384
- )
385
- kwargs['_return_http_data_only'] = kwargs.get(
386
- '_return_http_data_only', True
387
- )
388
- kwargs['_preload_content'] = kwargs.get(
389
- '_preload_content', True
390
- )
391
- kwargs['_request_timeout'] = kwargs.get(
392
- '_request_timeout', None
393
- )
394
- kwargs['_check_input_type'] = kwargs.get(
395
- '_check_input_type', True
396
- )
397
- kwargs['_check_return_type'] = kwargs.get(
398
- '_check_return_type', True
399
- )
400
- kwargs['_spec_property_naming'] = kwargs.get(
401
- '_spec_property_naming', False
402
- )
403
- kwargs['_content_type'] = kwargs.get(
404
- '_content_type')
405
- kwargs['_host_index'] = kwargs.get('_host_index')
406
- kwargs['_request_auths'] = kwargs.get('_request_auths', None)
407
- kwargs['advertiser_creation_request'] = \
408
- advertiser_creation_request
409
- return self.create_advertiser_endpoint.call_with_http_info(**kwargs)
410
-
411
267
  def get_dataset_list(
412
268
  self,
413
269
  advertiser_id,
@@ -76,7 +76,7 @@ class ApiClient(object):
76
76
  self.default_headers[header_name] = header_value
77
77
  self.cookie = cookie
78
78
  # Set default User-Agent.
79
- self.user_agent = 'OpenAPI-Generator/0.0.250811/python'
79
+ self.user_agent = 'OpenAPI-Generator/0.0.250825/python'
80
80
 
81
81
  def __enter__(self):
82
82
  return self
@@ -395,7 +395,7 @@ class Configuration(object):
395
395
  "OS: {env}\n"\
396
396
  "Python Version: {pyversion}\n"\
397
397
  "Version of the API: Preview\n"\
398
- "SDK Package Version: 0.0.250811".\
398
+ "SDK Package Version: 0.0.250825".\
399
399
  format(env=sys.platform, pyversion=sys.version)
400
400
 
401
401
  def get_host_settings(self):
@@ -105,10 +105,10 @@ class AdaptiveAttributes(ModelNormal):
105
105
  return {
106
106
  'calls_to_action': ([str],), # noqa: E501
107
107
  'colors': (AdaptiveColors,), # noqa: E501
108
- 'description_font': (str,), # noqa: E501
109
- 'description_text': (str,), # noqa: E501
108
+ 'description_font': (str, none_type,), # noqa: E501
109
+ 'description_text': (str, none_type,), # noqa: E501
110
110
  'headline_font': (str,), # noqa: E501
111
- 'headline_text': (str,), # noqa: E501
111
+ 'headline_text': (str, none_type,), # noqa: E501
112
112
  'landing_page_url': (str,), # noqa: E501
113
113
  'layouts': ([str],), # noqa: E501
114
114
  'logos': ([ImageShape],), # noqa: E501
@@ -150,10 +150,10 @@ class AdaptiveAttributes(ModelNormal):
150
150
  Args:
151
151
  calls_to_action ([str]): A Call-to-Action (CTA) is an action-driven instruction to your audience intended to provoke an immediate response, such as “Buy now” or “Go!”.
152
152
  colors (AdaptiveColors):
153
- description_font (str): Font of the description Valid supported font like \"Arial\"
154
- description_text (str): The description text of the banner
153
+ description_font (str, none_type): Font of the description Valid supported font like \"Arial\"
154
+ description_text (str, none_type): The description text of the banner
155
155
  headline_font (str): Font of the headline Valid supported font like \"Arial\"
156
- headline_text (str): The headline text of the banner
156
+ headline_text (str, none_type): The headline text of the banner
157
157
  landing_page_url (str): Web redirection of the landing page url
158
158
  layouts ([str]): The Adaptive layouts that are enabled. It can contain any of the following values: \"Editorial\", “Montage“, \"InBannerVideo\".
159
159
  logos ([ImageShape]): Logo images uploaded on demostatic.criteo.com when deploying and then static.criteo.net
@@ -258,10 +258,10 @@ class AdaptiveAttributes(ModelNormal):
258
258
  Args:
259
259
  calls_to_action ([str]): A Call-to-Action (CTA) is an action-driven instruction to your audience intended to provoke an immediate response, such as “Buy now” or “Go!”.
260
260
  colors (AdaptiveColors):
261
- description_font (str): Font of the description Valid supported font like \"Arial\"
262
- description_text (str): The description text of the banner
261
+ description_font (str, none_type): Font of the description Valid supported font like \"Arial\"
262
+ description_text (str, none_type): The description text of the banner
263
263
  headline_font (str): Font of the headline Valid supported font like \"Arial\"
264
- headline_text (str): The headline text of the banner
264
+ headline_text (str, none_type): The headline text of the banner
265
265
  landing_page_url (str): Web redirection of the landing page url
266
266
  layouts ([str]): The Adaptive layouts that are enabled. It can contain any of the following values: \"Editorial\", “Montage“, \"InBannerVideo\".
267
267
  logos ([ImageShape]): Logo images uploaded on demostatic.criteo.com when deploying and then static.criteo.net
@@ -82,7 +82,7 @@ class EntityV2OfObject(ModelNormal):
82
82
  """
83
83
  return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
84
84
 
85
- _nullable = True
85
+ _nullable = False
86
86
 
87
87
  @cached_property
88
88
  def openapi_types():
@@ -46,9 +46,6 @@ from criteo_api_marketingsolutions_preview.model.ad_write import AdWrite
46
46
  from criteo_api_marketingsolutions_preview.model.adaptive_attributes import AdaptiveAttributes
47
47
  from criteo_api_marketingsolutions_preview.model.adaptive_colors import AdaptiveColors
48
48
  from criteo_api_marketingsolutions_preview.model.adaptive_write_attributes import AdaptiveWriteAttributes
49
- from criteo_api_marketingsolutions_preview.model.advertiser_creation_input import AdvertiserCreationInput
50
- from criteo_api_marketingsolutions_preview.model.advertiser_creation_request import AdvertiserCreationRequest
51
- from criteo_api_marketingsolutions_preview.model.advertiser_creation_response import AdvertiserCreationResponse
52
49
  from criteo_api_marketingsolutions_preview.model.advertiser_dataset_list_response import AdvertiserDatasetListResponse
53
50
  from criteo_api_marketingsolutions_preview.model.algebra_node_v1 import AlgebraNodeV1
54
51
  from criteo_api_marketingsolutions_preview.model.api_error_response import ApiErrorResponse
@@ -366,13 +363,11 @@ from criteo_api_marketingsolutions_preview.model.transparency_report import Tran
366
363
  from criteo_api_marketingsolutions_preview.model.transparency_report_file import TransparencyReportFile
367
364
  from criteo_api_marketingsolutions_preview.model.transparency_report_list_response import TransparencyReportListResponse
368
365
  from criteo_api_marketingsolutions_preview.model.transparency_report_resource import TransparencyReportResource
369
- from criteo_api_marketingsolutions_preview.model.unauthorized_response_v2 import UnauthorizedResponseV2
370
366
  from criteo_api_marketingsolutions_preview.model.update_coupon import UpdateCoupon
371
367
  from criteo_api_marketingsolutions_preview.model.user_def import UserDef
372
368
  from criteo_api_marketingsolutions_preview.model.value_resource_collection_outcome_of_product_filter_config import ValueResourceCollectionOutcomeOfProductFilterConfig
373
369
  from criteo_api_marketingsolutions_preview.model.value_resource_input_of_create_product_filter_request import ValueResourceInputOfCreateProductFilterRequest
374
370
  from criteo_api_marketingsolutions_preview.model.value_resource_input_of_create_product_set_request import ValueResourceInputOfCreateProductSetRequest
375
- from criteo_api_marketingsolutions_preview.model.value_resource_of_advertiser_creation_input import ValueResourceOfAdvertiserCreationInput
376
371
  from criteo_api_marketingsolutions_preview.model.value_resource_of_create_product_filter_request import ValueResourceOfCreateProductFilterRequest
377
372
  from criteo_api_marketingsolutions_preview.model.value_resource_of_create_product_set_request import ValueResourceOfCreateProductSetRequest
378
373
  from criteo_api_marketingsolutions_preview.model.value_resource_of_product_filter_config import ValueResourceOfProductFilterConfig
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: criteo-api-marketingsolutions-sdk
3
- Version: 0.0.250811
3
+ Version: 0.0.250825
4
4
  Summary: Criteo API SDK
5
5
  Home-page: https://github.com/criteo/criteo-api-python-sdk
6
6
  Author: Criteo
@@ -35,9 +35,9 @@ IMPORTANT: This Python package links to Criteo production environment. Any test
35
35
 
36
36
 
37
37
  ```sh
38
- pip install criteo-api-marketingsolutions-sdk==0.0.250811
38
+ pip install criteo-api-marketingsolutions-sdk==0.0.250825
39
39
  ```
40
- (you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.250811`)
40
+ (you may need to run `pip` with root permission: `sudo pip install criteo-api-marketingsolutions-sdk==0.0.250825`)
41
41
 
42
42
  Then import the package:
43
43
  ```python
@@ -1,7 +1,7 @@
1
- criteo_api_marketingsolutions_preview/__init__.py,sha256=whqXE7x-JEBNBaSWgMPNabUIIZiQ87LOLIHRR38R1QY,1107
2
- criteo_api_marketingsolutions_preview/api_client.py,sha256=3Vr7mjksYuWpoYBzt44ULG13_rPChq-kmyyHUBstPGc,39246
1
+ criteo_api_marketingsolutions_preview/__init__.py,sha256=c3aD2A8cWhOwbdxdXp5Jged9eGalRMZMRPkC-5UO_Kc,1107
2
+ criteo_api_marketingsolutions_preview/api_client.py,sha256=CHpGETXGjeTc_FX6mgiOG2dt4eAuWtRQVbRlMGrZ4bU,39246
3
3
  criteo_api_marketingsolutions_preview/api_client_builder.py,sha256=2W-j9f5re32PZooV4BngIi3AvmOOpKl7SAEQc6FXVWg,1525
4
- criteo_api_marketingsolutions_preview/configuration.py,sha256=M8BE6Xb94KpqIWIipQm5pBiEXfoy0tuBWEKTPRrZt5I,16735
4
+ criteo_api_marketingsolutions_preview/configuration.py,sha256=p6XSZBAfuL9v-nSz_Mu8kRyVURXEx0Dsh_NzT7Qxj0A,16735
5
5
  criteo_api_marketingsolutions_preview/criteo_api_client.py,sha256=4uNu3e__oYicTD-lcpFerUCXl3c3_7LEugoMFqfRTM8,666
6
6
  criteo_api_marketingsolutions_preview/criteo_auth.py,sha256=RXBNjv9iz2JSqB25me0iMWN7jfeKRYe0EF6y37hw__A,4714
7
7
  criteo_api_marketingsolutions_preview/criteo_rest.py,sha256=oIDGHdVI2kWe1st1X7IHl8OAa1zJn7g1uQUSKYWwFDc,3431
@@ -10,7 +10,7 @@ criteo_api_marketingsolutions_preview/flow_constants.py,sha256=Ib8P11y_f2GCzYFOR
10
10
  criteo_api_marketingsolutions_preview/model_utils.py,sha256=unHlrTjCtAWUa5xetk4e6oY8I8hZKt5J8IDbG3Ag0Nw,82578
11
11
  criteo_api_marketingsolutions_preview/rest.py,sha256=gXk-QrNdnVj2c-M_oZYB3_KqFfbUh7fkSuaCS_u2UJc,14255
12
12
  criteo_api_marketingsolutions_preview/api/__init__.py,sha256=pyzFTbyUcV2DhfsX0qU5ScOa78505IDsd_KbkUsVXm0,244
13
- criteo_api_marketingsolutions_preview/api/advertiser_api.py,sha256=J5tr1prB6y5iwkCqOpScsCRL0S85EmQbVx5ck9XuyIQ,21873
13
+ criteo_api_marketingsolutions_preview/api/advertiser_api.py,sha256=eVXI3mivzUvCXw9d5HhMnvKzl2np02tKFWbB1c7FqJI,16051
14
14
  criteo_api_marketingsolutions_preview/api/analytics_api.py,sha256=w-K5ikTbpOpUGvELg_Xvu4C_d_1cF1DMNUy0vuP3gXU,69693
15
15
  criteo_api_marketingsolutions_preview/api/audience_api.py,sha256=l-2pWPQqVayIPhOpkookLhA-o_7fEeXrkzFlScJIRno,109920
16
16
  criteo_api_marketingsolutions_preview/api/campaign_api.py,sha256=nnZsI1pBisutOjPnlCtIUGewPgZgKYQqlcnxHmIvHgE,216278
@@ -55,12 +55,9 @@ criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_r
55
55
  criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_set_result_resource.py,sha256=E8AYTEjOMpOjhHyB5owW_7NSNnLKBNXbZwMd8vdVZ2c,12066
56
56
  criteo_api_marketingsolutions_preview/model/ad_set_targeting_video_positioning_set_result_response.py,sha256=nBw0vi2g-853B0b15dNtWxQ2nqAq0U48RZPOR51QCDA,12775
57
57
  criteo_api_marketingsolutions_preview/model/ad_write.py,sha256=fg6Fo3fhu13dj_P8G3zGJ57NsLYQM2HKxmP0RaZACtE,14247
58
- criteo_api_marketingsolutions_preview/model/adaptive_attributes.py,sha256=btshQyHYMyiJeqsWBghpNU9s5cn-Uthm4S_BAhsbjfQ,17459
58
+ criteo_api_marketingsolutions_preview/model/adaptive_attributes.py,sha256=805LHSGnUZWnMk8zq3MRjCA3m_61XBd3WWkI8NqtuO8,17558
59
59
  criteo_api_marketingsolutions_preview/model/adaptive_colors.py,sha256=tRIXSpuRf5SK0A39Ow8QkiUj2RogwWEsfTEkpFhcOQ4,14296
60
60
  criteo_api_marketingsolutions_preview/model/adaptive_write_attributes.py,sha256=hCycLu8grA4dztSdRvIyAdMzSYSJblPMdAVaLLqNkOY,17632
61
- criteo_api_marketingsolutions_preview/model/advertiser_creation_input.py,sha256=en33n0-qJ18wvAKO6HPAMGWIGdWTZ8xx6aIpMlKP7PA,13337
62
- criteo_api_marketingsolutions_preview/model/advertiser_creation_request.py,sha256=imdw92c5EX0u9rheXBlyiUyVZeCXhDyks7zP53dss_k,11848
63
- criteo_api_marketingsolutions_preview/model/advertiser_creation_response.py,sha256=M0xe2SOLxID69L5k0fgegATcyzUl8jxOy3TrR8AOoeE,13350
64
61
  criteo_api_marketingsolutions_preview/model/advertiser_dataset_list_response.py,sha256=5lLCNaOzha-smdklFd7wnHk-rm2pixvMKiBeGv3Wqrg,13499
65
62
  criteo_api_marketingsolutions_preview/model/algebra_node_v1.py,sha256=W7PZ8q8Quq-DmoC7zH7K1swmZ0RLVVVrXu7tk1oTA8Q,12202
66
63
  criteo_api_marketingsolutions_preview/model/api_error_response.py,sha256=mmgOeR6xQfw-uu0vMRviXl2JwJf6pSJutD-JM-Qs1-8,11746
@@ -191,7 +188,7 @@ criteo_api_marketingsolutions_preview/model/dynamic_write_attributes.py,sha256=K
191
188
  criteo_api_marketingsolutions_preview/model/entity_filter.py,sha256=fXWRvR4cuIRgLa32QEmdUgB_Sq56upzmFBW10_Belew,12012
192
189
  criteo_api_marketingsolutions_preview/model/entity_of_portfolio_message.py,sha256=FpY7Lk2vtGJtCzUkDCjXm7KJ2h4P9_g7O0Q76Xe9nRA,13236
193
190
  criteo_api_marketingsolutions_preview/model/entity_v2_of_dataset.py,sha256=HN0FmyARvBH9sPVEICGf_8UuekwsnZSIhydnVRUSnO4,12960
194
- criteo_api_marketingsolutions_preview/model/entity_v2_of_object.py,sha256=GenIlvnIrYKAy5V7nfPYXL5JrR4YYcqFwHH-qvCrmUs,14157
191
+ criteo_api_marketingsolutions_preview/model/entity_v2_of_object.py,sha256=KCGnNFmDIJXStSQStNf-Q2JltOVBElUkBMJsTZ-xb4Y,14158
195
192
  criteo_api_marketingsolutions_preview/model/entity_wrapper_of_targeting_entity.py,sha256=aASW4AXAevhjQ9IZxUVeA3xqfSao8Df_JYgiu28nX6U,11938
196
193
  criteo_api_marketingsolutions_preview/model/error_code_response.py,sha256=n2tFCdMx98tHzyaEM-f_R8F0_vY1EXsKPO1dwGvhe8g,12132
197
194
  criteo_api_marketingsolutions_preview/model/error_description.py,sha256=PMC_zD9oxTNjFUb785rIFx3EKb2gUd77EjzS19u0ImQ,12333
@@ -378,13 +375,11 @@ criteo_api_marketingsolutions_preview/model/transparency_report.py,sha256=8Qe3qF
378
375
  criteo_api_marketingsolutions_preview/model/transparency_report_file.py,sha256=pJZIcJVHdRAJP9oXM4DV5wYSPIhPgFD0u82DBSZN53M,11430
379
376
  criteo_api_marketingsolutions_preview/model/transparency_report_list_response.py,sha256=qoGP2qnCBoVzK7c13PFauq1lQFQ_85xNbntUnt7WE0o,12404
380
377
  criteo_api_marketingsolutions_preview/model/transparency_report_resource.py,sha256=-Cl3Tx1Xv8hwhCgHn1N6uPkNbB_G-x0NNyXZfJSpadg,11697
381
- criteo_api_marketingsolutions_preview/model/unauthorized_response_v2.py,sha256=ZZSuORt6_xkRWZSgSZrBkDlP09syGMCZoV8OjvVf6CQ,13338
382
378
  criteo_api_marketingsolutions_preview/model/update_coupon.py,sha256=Onk9irQUHNniNl3OFKetOMxwVaYA2Wbj60ZRE3X-1No,12225
383
379
  criteo_api_marketingsolutions_preview/model/user_def.py,sha256=1aR2bT5fomM1_NpQRLHVcAH9ksjrOqU4ZdOiMBD3-J4,11956
384
380
  criteo_api_marketingsolutions_preview/model/value_resource_collection_outcome_of_product_filter_config.py,sha256=14FRJbHZF3JJwVA2hZolAXQGR0jxS-XWV3wu9RLFnqU,12663
385
381
  criteo_api_marketingsolutions_preview/model/value_resource_input_of_create_product_filter_request.py,sha256=NY4Xub7ZBdzepiMBcjCt9qyXievMC0GFk6vsQEIizH8,11933
386
382
  criteo_api_marketingsolutions_preview/model/value_resource_input_of_create_product_set_request.py,sha256=w2Y_WTRra0trLX7DxC-ewFBJNHGIQQDK-_i_hknkMSM,11903
387
- criteo_api_marketingsolutions_preview/model/value_resource_of_advertiser_creation_input.py,sha256=7ARtk-_FEMEXex7dlJsUW4gFO7guJpvi0-YmVwOQ1Ws,11987
388
383
  criteo_api_marketingsolutions_preview/model/value_resource_of_create_product_filter_request.py,sha256=ieiQ6Md1Qzt0duyAqh8XCi5RmKYxn2fzqbMWCDpIXa0,12051
389
384
  criteo_api_marketingsolutions_preview/model/value_resource_of_create_product_set_request.py,sha256=6ZcIAGZQtwj4s-_JjcyW_U-EjhOcW3pUS2_t3lg1tcg,11988
390
385
  criteo_api_marketingsolutions_preview/model/value_resource_of_product_filter_config.py,sha256=4jVZJei3RNzs1EYs6Apk1r3HjA2xXAT9ldsDiixtNKE,11979
@@ -392,8 +387,8 @@ criteo_api_marketingsolutions_preview/model/value_resource_outcome_of_product_fi
392
387
  criteo_api_marketingsolutions_preview/model/video_detail.py,sha256=i-qvnBOBpuijRhQ2bPNwU8A5pDmWSk7O1kdpZV77Vm8,12436
393
388
  criteo_api_marketingsolutions_preview/model/write_model_ad_set_id.py,sha256=AEk9Ss4tXVTbSfDxJjpDW643MJwbV5iMs_Y3BG4839I,11755
394
389
  criteo_api_marketingsolutions_preview/model/write_model_patch_ad_set_v24_q3.py,sha256=-GkiNut1VMiXMlpO4-wlbjtTXaDfvDptvzZejfkRZpg,12234
395
- criteo_api_marketingsolutions_preview/models/__init__.py,sha256=oXYdFCM-yh58_v9IsmrCAtCHDjiiLU-iKMTQnV6SLgA,42457
396
- criteo_api_marketingsolutions_sdk-0.0.250811.dist-info/METADATA,sha256=SzKFkMGoxA3_3byxmWLgvfG0Mzrtj5Y43i38IbyhdXQ,1876
397
- criteo_api_marketingsolutions_sdk-0.0.250811.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
398
- criteo_api_marketingsolutions_sdk-0.0.250811.dist-info/top_level.txt,sha256=4xVpjptYrJ_AiVXZAhkhYuSp6rJRgq_VrBDhg-Eyi5Y,38
399
- criteo_api_marketingsolutions_sdk-0.0.250811.dist-info/RECORD,,
390
+ criteo_api_marketingsolutions_preview/models/__init__.py,sha256=dla4MwuaoT_SfMz16MRVT_t631x2GfGxpQPEollnha0,41886
391
+ criteo_api_marketingsolutions_sdk-0.0.250825.dist-info/METADATA,sha256=jFZOtuuCnNZUSe2t8ydv6o2rfoTqlZ41aRaEHJKwzqc,1876
392
+ criteo_api_marketingsolutions_sdk-0.0.250825.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
393
+ criteo_api_marketingsolutions_sdk-0.0.250825.dist-info/top_level.txt,sha256=4xVpjptYrJ_AiVXZAhkhYuSp6rJRgq_VrBDhg-Eyi5Y,38
394
+ criteo_api_marketingsolutions_sdk-0.0.250825.dist-info/RECORD,,