Skip to content

Commit 056f7b8

Browse files
author
PureCloud Jenkins
committed
258.0.0
1 parent f80f2db commit 056f7b8

6,525 files changed

Lines changed: 28437 additions & 8813 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Documentation can be found at https://mypurecloud.github.io/platform-client-sdk-python/
77

8-
Documentation version PureCloudPlatformClientV2 257.1.0
8+
Documentation version PureCloudPlatformClientV2 258.0.0
99

1010
## Preview APIs
1111

build/.openapi-generator/FILES

Lines changed: 156 additions & 19 deletions
Large diffs are not rendered by default.

build/APIData.json

Lines changed: 530 additions & 150 deletions
Large diffs are not rendered by default.

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 66 additions & 6 deletions
Large diffs are not rendered by default.

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def __call_api(self, resource_path, method,
420420
header_params['Cookie'] = self.cookie
421421
if header_params:
422422
header_params = self.sanitize_params_for_serialization(header_params)
423-
header_params['purecloud-sdk'] = '257.1.0'
423+
header_params['purecloud-sdk'] = '258.0.0'
424424

425425
# path parameters
426426
if path_params:

build/PureCloudPlatformClientV2/apis/agent_assistants_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,12 +932,13 @@ def get_assistants_agentchecklists(self, **kwargs) -> 'AgentChecklistListing':
932932
:param str language: The agent checklist language filter applied to the listing.
933933
:param str sort_order: The sort order for the listing
934934
:param str sort_by: The field to sort by for the listing.
935+
:param list[str] agent_checklist_ids: Agent checklist IDs (repeat param or comma-separated). Do not use with other optional filters.
935936
:return: AgentChecklistListing
936937
If the method is called asynchronously,
937938
returns the request thread.
938939
"""
939940

940-
all_params = ['before', 'after', 'page_size', 'name_prefix', 'language', 'sort_order', 'sort_by']
941+
all_params = ['before', 'after', 'page_size', 'name_prefix', 'language', 'sort_order', 'sort_by', 'agent_checklist_ids']
941942
all_params.append('callback')
942943

943944
params = locals()
@@ -974,6 +975,8 @@ def get_assistants_agentchecklists(self, **kwargs) -> 'AgentChecklistListing':
974975
query_params['sortOrder'] = params['sort_order']
975976
if 'sort_by' in params:
976977
query_params['sortBy'] = params['sort_by']
978+
if 'agent_checklist_ids' in params:
979+
query_params['agentChecklistIds'] = params['agent_checklist_ids']
977980

978981
header_params = {}
979982

build/PureCloudPlatformClientV2/apis/ai_studio_api.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -325,18 +325,18 @@ def get_conversations_summaries_settings(self, **kwargs) -> 'SummarySettingEntit
325325
326326
:param callback function: The callback function
327327
for asynchronous request. (optional)
328-
:param str language: Filter by matching language - case insensitive.
329-
:param str name: Filter by partially matching name - case insensitive.
330-
:param str sort_by: Sort by. Default value dateModified.
331-
:param str sort_order: Sort Order. Default value desc.
332328
:param int page_number: Page number.
333329
:param int page_size: Page size. The maximum page size is 100.
330+
:param str name: Filter by partially matching name - case insensitive.
331+
:param str sort_order: Sort Order. Default value desc.
332+
:param str language: Filter by matching language - case insensitive.
333+
:param str sort_by: Sort by. Default value dateModified.
334334
:return: SummarySettingEntityListing
335335
If the method is called asynchronously,
336336
returns the request thread.
337337
"""
338338

339-
all_params = ['language', 'name', 'sort_by', 'sort_order', 'page_number', 'page_size']
339+
all_params = ['page_number', 'page_size', 'name', 'sort_order', 'language', 'sort_by']
340340
all_params.append('callback')
341341

342342
params = locals()
@@ -361,18 +361,18 @@ def get_conversations_summaries_settings(self, **kwargs) -> 'SummarySettingEntit
361361
path_params = {}
362362

363363
query_params = {}
364-
if 'language' in params:
365-
query_params['language'] = params['language']
366-
if 'name' in params:
367-
query_params['name'] = params['name']
368-
if 'sort_by' in params:
369-
query_params['sortBy'] = params['sort_by']
370-
if 'sort_order' in params:
371-
query_params['sortOrder'] = params['sort_order']
372364
if 'page_number' in params:
373365
query_params['pageNumber'] = params['page_number']
374366
if 'page_size' in params:
375367
query_params['pageSize'] = params['page_size']
368+
if 'name' in params:
369+
query_params['name'] = params['name']
370+
if 'sort_order' in params:
371+
query_params['sortOrder'] = params['sort_order']
372+
if 'language' in params:
373+
query_params['language'] = params['language']
374+
if 'sort_by' in params:
375+
query_params['sortBy'] = params['sort_by']
376376

377377
header_params = {}
378378

build/PureCloudPlatformClientV2/apis/architect_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11158,12 +11158,13 @@ def post_flows_jobs(self, **kwargs) -> 'RegisterArchitectJobResponse':
1115811158

1115911159
:param callback function: The callback function
1116011160
for asynchronous request. (optional)
11161+
:param object body:
1116111162
:return: RegisterArchitectJobResponse
1116211163
If the method is called asynchronously,
1116311164
returns the request thread.
1116411165
"""
1116511166

11166-
all_params = []
11167+
all_params = ['body']
1116711168
all_params.append('callback')
1116811169

1116911170
params = locals()
@@ -11189,6 +11190,8 @@ def post_flows_jobs(self, **kwargs) -> 'RegisterArchitectJobResponse':
1118911190
local_var_files = {}
1119011191

1119111192
body_params = None
11193+
if 'body' in params:
11194+
body_params = params['body']
1119211195

1119311196
# HTTP header `Accept`
1119411197
header_params['Accept'] = self.api_client.\

0 commit comments

Comments
 (0)