Skip to content

Commit 9a767e2

Browse files
author
PureCloud Jenkins
committed
34.0.0
1 parent fff800c commit 9a767e2

File tree

369 files changed

+11483
-4409
lines changed

Some content is hidden

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

369 files changed

+11483
-4409
lines changed

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
from .models.answer_option import AnswerOption
6161
from .models.archive_retention import ArchiveRetention
6262
from .models.asg_info_response import AsgInfoResponse
63+
from .models.assigned_wrapup_code import AssignedWrapupCode
6364
from .models.attachment import Attachment
6465
from .models.attempt_limits import AttemptLimits
6566
from .models.attempt_limits_entity_listing import AttemptLimitsEntityListing
@@ -79,7 +80,6 @@
7980
from .models.audit_query_response import AuditQueryResponse
8081
from .models.audit_search_result import AuditSearchResult
8182
from .models.audit_user import AuditUser
82-
from .models.authz_division import AuthzDivision
8383
from .models.available_language_list import AvailableLanguageList
8484
from .models.available_topic import AvailableTopic
8585
from .models.available_topic_entity_listing import AvailableTopicEntityListing
@@ -156,6 +156,8 @@
156156
from .models.callback_media_participant import CallbackMediaParticipant
157157
from .models.campaign import Campaign
158158
from .models.campaign_diagnostics import CampaignDiagnostics
159+
from .models.campaign_division_view import CampaignDivisionView
160+
from .models.campaign_division_view_listing import CampaignDivisionViewListing
159161
from .models.campaign_entity_listing import CampaignEntityListing
160162
from .models.campaign_interaction import CampaignInteraction
161163
from .models.campaign_interactions import CampaignInteractions
@@ -1145,6 +1147,7 @@
11451147
from .models.voicemail_search_request import VoicemailSearchRequest
11461148
from .models.voicemail_user_policy import VoicemailUserPolicy
11471149
from .models.voicemails_search_response import VoicemailsSearchResponse
1150+
from .models.web_chat_config import WebChatConfig
11481151
from .models.web_chat_deployment import WebChatDeployment
11491152
from .models.web_chat_deployment_entity_listing import WebChatDeploymentEntityListing
11501153
from .models.web_chat_settings import WebChatSettings

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __call_api(self, resource_path, method,
112112
header_params['Cookie'] = self.cookie
113113
if header_params:
114114
header_params = self.sanitize_for_serialization(header_params)
115-
header_params['purecloud-sdk'] = '33.0.0'
115+
header_params['purecloud-sdk'] = '34.0.0'
116116

117117
# path parameters
118118
if path_params:

build/PureCloudPlatformClientV2/apis/architect_api.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3888,12 +3888,13 @@ def get_flows(self, type, **kwargs):
38883888
:param bool include_schemas: Include variable schemas
38893889
:param str published_after: Published after
38903890
:param str published_before: Published before
3891+
:param list[str] division_id: division ID(s)
38913892
:return: FlowEntityListing
38923893
If the method is called asynchronously,
38933894
returns the request thread.
38943895
"""
38953896

3896-
all_params = ['type', 'page_number', 'page_size', 'sort_by', 'sort_order', 'id', 'name', 'description', 'name_or_description', 'publish_version_id', 'editable_by', 'locked_by', 'secure', 'deleted', 'include_schemas', 'published_after', 'published_before']
3897+
all_params = ['type', 'page_number', 'page_size', 'sort_by', 'sort_order', 'id', 'name', 'description', 'name_or_description', 'publish_version_id', 'editable_by', 'locked_by', 'secure', 'deleted', 'include_schemas', 'published_after', 'published_before', 'division_id']
38973898
all_params.append('callback')
38983899

38993900
params = locals()
@@ -3949,6 +3950,8 @@ def get_flows(self, type, **kwargs):
39493950
query_params['publishedAfter'] = params['published_after']
39503951
if 'published_before' in params:
39513952
query_params['publishedBefore'] = params['published_before']
3953+
if 'division_id' in params:
3954+
query_params['divisionId'] = params['division_id']
39523955

39533956
header_params = {}
39543957

@@ -4349,12 +4352,13 @@ def get_flows_divisionviews(self, type, **kwargs):
43494352
:param str publish_version_id: Publish version ID
43504353
:param str published_after: Published after
43514354
:param str published_before: Published before
4355+
:param list[str] division_id: division ID(s)
43524356
:return: FlowDivisionViewEntityListing
43534357
If the method is called asynchronously,
43544358
returns the request thread.
43554359
"""
43564360

4357-
all_params = ['type', 'page_number', 'page_size', 'sort_by', 'sort_order', 'id', 'name', 'publish_version_id', 'published_after', 'published_before']
4361+
all_params = ['type', 'page_number', 'page_size', 'sort_by', 'sort_order', 'id', 'name', 'publish_version_id', 'published_after', 'published_before', 'division_id']
43584362
all_params.append('callback')
43594363

43604364
params = locals()
@@ -4396,6 +4400,8 @@ def get_flows_divisionviews(self, type, **kwargs):
43964400
query_params['publishedAfter'] = params['published_after']
43974401
if 'published_before' in params:
43984402
query_params['publishedBefore'] = params['published_before']
4403+
if 'division_id' in params:
4404+
query_params['divisionId'] = params['division_id']
43994405

44004406
header_params = {}
44014407

build/PureCloudPlatformClientV2/apis/conversations_api.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ def get_conversation_participant_wrapup(self, conversation_id, participant_id, *
652652
:param str conversation_id: conversation ID (required)
653653
:param str participant_id: participant ID (required)
654654
:param bool provisional: Indicates if the wrap-up code is provisional.
655-
:return: WrapupCode
655+
:return: AssignedWrapupCode
656656
If the method is called asynchronously,
657657
returns the request thread.
658658
"""
@@ -716,7 +716,7 @@ def get_conversation_participant_wrapup(self, conversation_id, participant_id, *
716716
body=body_params,
717717
post_params=form_params,
718718
files=local_var_files,
719-
response_type='WrapupCode',
719+
response_type='AssignedWrapupCode',
720720
auth_settings=auth_settings,
721721
callback=params.get('callback'))
722722
return response
@@ -976,7 +976,7 @@ def get_conversations_call_participant_wrapup(self, conversation_id, participant
976976
:param str conversation_id: conversationId (required)
977977
:param str participant_id: participantId (required)
978978
:param bool provisional: Indicates if the wrap-up code is provisional.
979-
:return: Wrapup
979+
:return: AssignedWrapupCode
980980
If the method is called asynchronously,
981981
returns the request thread.
982982
"""
@@ -1040,7 +1040,7 @@ def get_conversations_call_participant_wrapup(self, conversation_id, participant
10401040
body=body_params,
10411041
post_params=form_params,
10421042
files=local_var_files,
1043-
response_type='Wrapup',
1043+
response_type='AssignedWrapupCode',
10441044
auth_settings=auth_settings,
10451045
callback=params.get('callback'))
10461046
return response
@@ -1225,7 +1225,7 @@ def get_conversations_callback_participant_wrapup(self, conversation_id, partici
12251225
:param str conversation_id: conversationId (required)
12261226
:param str participant_id: participantId (required)
12271227
:param bool provisional: Indicates if the wrap-up code is provisional.
1228-
:return: Wrapup
1228+
:return: AssignedWrapupCode
12291229
If the method is called asynchronously,
12301230
returns the request thread.
12311231
"""
@@ -1289,7 +1289,7 @@ def get_conversations_callback_participant_wrapup(self, conversation_id, partici
12891289
body=body_params,
12901290
post_params=form_params,
12911291
files=local_var_files,
1292-
response_type='Wrapup',
1292+
response_type='AssignedWrapupCode',
12931293
auth_settings=auth_settings,
12941294
callback=params.get('callback'))
12951295
return response
@@ -1774,7 +1774,7 @@ def get_conversations_chat_participant_wrapup(self, conversation_id, participant
17741774
:param str conversation_id: conversationId (required)
17751775
:param str participant_id: participantId (required)
17761776
:param bool provisional: Indicates if the wrap-up code is provisional.
1777-
:return: Wrapup
1777+
:return: AssignedWrapupCode
17781778
If the method is called asynchronously,
17791779
returns the request thread.
17801780
"""
@@ -1838,7 +1838,7 @@ def get_conversations_chat_participant_wrapup(self, conversation_id, participant
18381838
body=body_params,
18391839
post_params=form_params,
18401840
files=local_var_files,
1841-
response_type='Wrapup',
1841+
response_type='AssignedWrapupCode',
18421842
auth_settings=auth_settings,
18431843
callback=params.get('callback'))
18441844
return response
@@ -2095,7 +2095,7 @@ def get_conversations_cobrowsesession_participant_wrapup(self, conversation_id,
20952095
:param str conversation_id: conversationId (required)
20962096
:param str participant_id: participantId (required)
20972097
:param bool provisional: Indicates if the wrap-up code is provisional.
2098-
:return: Wrapup
2098+
:return: AssignedWrapupCode
20992099
If the method is called asynchronously,
21002100
returns the request thread.
21012101
"""
@@ -2159,7 +2159,7 @@ def get_conversations_cobrowsesession_participant_wrapup(self, conversation_id,
21592159
body=body_params,
21602160
post_params=form_params,
21612161
files=local_var_files,
2162-
response_type='Wrapup',
2162+
response_type='AssignedWrapupCode',
21632163
auth_settings=auth_settings,
21642164
callback=params.get('callback'))
21652165
return response
@@ -2656,7 +2656,7 @@ def get_conversations_email_participant_wrapup(self, conversation_id, participan
26562656
:param str conversation_id: conversationId (required)
26572657
:param str participant_id: participantId (required)
26582658
:param bool provisional: Indicates if the wrap-up code is provisional.
2659-
:return: Wrapup
2659+
:return: AssignedWrapupCode
26602660
If the method is called asynchronously,
26612661
returns the request thread.
26622662
"""
@@ -2720,7 +2720,7 @@ def get_conversations_email_participant_wrapup(self, conversation_id, participan
27202720
body=body_params,
27212721
post_params=form_params,
27222722
files=local_var_files,
2723-
response_type='Wrapup',
2723+
response_type='AssignedWrapupCode',
27242724
auth_settings=auth_settings,
27252725
callback=params.get('callback'))
27262726
return response
@@ -3061,7 +3061,7 @@ def get_conversations_message_participant_wrapup(self, conversation_id, particip
30613061
:param str conversation_id: conversationId (required)
30623062
:param str participant_id: participantId (required)
30633063
:param bool provisional: Indicates if the wrap-up code is provisional.
3064-
:return: Wrapup
3064+
:return: AssignedWrapupCode
30653065
If the method is called asynchronously,
30663066
returns the request thread.
30673067
"""
@@ -3125,7 +3125,7 @@ def get_conversations_message_participant_wrapup(self, conversation_id, particip
31253125
body=body_params,
31263126
post_params=form_params,
31273127
files=local_var_files,
3128-
response_type='Wrapup',
3128+
response_type='AssignedWrapupCode',
31293129
auth_settings=auth_settings,
31303130
callback=params.get('callback'))
31313131
return response

0 commit comments

Comments
 (0)