Skip to content

Commit 3477b54

Browse files
author
PureCloud Jenkins
committed
103.0.0
1 parent 596ab34 commit 3477b54

80 files changed

Lines changed: 1314 additions & 2249 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.

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,10 @@
377377
from .models.content_management_workspace_documents_topic_user_data import ContentManagementWorkspaceDocumentsTopicUserData
378378
from .models.content_management_workspace_documents_topic_workspace_data import ContentManagementWorkspaceDocumentsTopicWorkspaceData
379379
from .models.content_notification_template import ContentNotificationTemplate
380+
from .models.content_postback import ContentPostback
380381
from .models.content_query_request import ContentQueryRequest
381382
from .models.content_quick_reply import ContentQuickReply
383+
from .models.content_reaction import ContentReaction
382384
from .models.content_sort_item import ContentSortItem
383385
from .models.context_entity import ContextEntity
384386
from .models.context_intent import ContextIntent
@@ -1162,6 +1164,7 @@
11621164
from .models.messaging_campaign_entity_listing import MessagingCampaignEntityListing
11631165
from .models.messaging_integration import MessagingIntegration
11641166
from .models.messaging_integration_entity_listing import MessagingIntegrationEntityListing
1167+
from .models.messaging_recipient import MessagingRecipient
11651168
from .models.messaging_sticker import MessagingSticker
11661169
from .models.messaging_sticker_entity_listing import MessagingStickerEntityListing
11671170
from .models.messaging_template import MessagingTemplate
@@ -1696,11 +1699,6 @@
16961699
from .models.security_profile import SecurityProfile
16971700
from .models.security_profile_entity_listing import SecurityProfileEntityListing
16981701
from .models.segment import Segment
1699-
from .models.segment_assignment import SegmentAssignment
1700-
from .models.segment_assignment_listing import SegmentAssignmentListing
1701-
from .models.segment_assignment_segment import SegmentAssignmentSegment
1702-
from .models.segment_assignment_session import SegmentAssignmentSession
1703-
from .models.segment_assignments_update import SegmentAssignmentsUpdate
17041702
from .models.segment_detail_query_clause import SegmentDetailQueryClause
17051703
from .models.segment_detail_query_filter import SegmentDetailQueryFilter
17061704
from .models.segment_detail_query_predicate import SegmentDetailQueryPredicate
@@ -1788,6 +1786,7 @@
17881786
from .models.subscription_overview_usage import SubscriptionOverviewUsage
17891787
from .models.suggest_search_criteria import SuggestSearchCriteria
17901788
from .models.suggest_search_request import SuggestSearchRequest
1789+
from .models.supported_language import SupportedLanguage
17911790
from .models.survey import Survey
17921791
from .models.survey_aggregate_data_container import SurveyAggregateDataContainer
17931792
from .models.survey_aggregate_query_clause import SurveyAggregateQueryClause

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def __call_api(self, resource_path, method,
185185
header_params['Cookie'] = self.cookie
186186
if header_params:
187187
header_params = self.sanitize_for_serialization(header_params)
188-
header_params['purecloud-sdk'] = '102.0.0'
188+
header_params['purecloud-sdk'] = '103.0.0'
189189

190190
# path parameters
191191
if path_params:

build/PureCloudPlatformClientV2/apis/journey_api.py

Lines changed: 0 additions & 357 deletions
Large diffs are not rendered by default.

build/PureCloudPlatformClientV2/apis/knowledge_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,12 +680,13 @@ def get_knowledge_knowledgebase_language_documents(self, knowledge_base_id, lang
680680
:param str limit: Number of entities to return. Maximum of 200.
681681
:param str page_size: Number of entities to return. Maximum of 200.
682682
:param str categories: Filter by categories ids, comma separated values expected.
683+
:param str title: Filter by document title.
683684
:return: DocumentListing
684685
If the method is called asynchronously,
685686
returns the request thread.
686687
"""
687688

688-
all_params = ['knowledge_base_id', 'language_code', 'before', 'after', 'limit', 'page_size', 'categories']
689+
all_params = ['knowledge_base_id', 'language_code', 'before', 'after', 'limit', 'page_size', 'categories', 'title']
689690
all_params.append('callback')
690691

691692
params = locals()
@@ -724,6 +725,8 @@ def get_knowledge_knowledgebase_language_documents(self, knowledge_base_id, lang
724725
query_params['pageSize'] = params['page_size']
725726
if 'categories' in params:
726727
query_params['categories'] = params['categories']
728+
if 'title' in params:
729+
query_params['title'] = params['title']
727730

728731
header_params = {}
729732

build/PureCloudPlatformClientV2/apis/quality_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1756,12 +1756,13 @@ def get_quality_forms_evaluation_versions(self, form_id, **kwargs):
17561756
:param str form_id: Form ID (required)
17571757
:param int page_size: Page size
17581758
:param int page_number: Page number
1759+
:param str sort_order: Sort order
17591760
:return: EvaluationFormEntityListing
17601761
If the method is called asynchronously,
17611762
returns the request thread.
17621763
"""
17631764

1764-
all_params = ['form_id', 'page_size', 'page_number']
1765+
all_params = ['form_id', 'page_size', 'page_number', 'sort_order']
17651766
all_params.append('callback')
17661767

17671768
params = locals()
@@ -1789,6 +1790,8 @@ def get_quality_forms_evaluation_versions(self, form_id, **kwargs):
17891790
query_params['pageSize'] = params['page_size']
17901791
if 'page_number' in params:
17911792
query_params['pageNumber'] = params['page_number']
1793+
if 'sort_order' in params:
1794+
query_params['sortOrder'] = params['sort_order']
17921795

17931796
header_params = {}
17941797

build/PureCloudPlatformClientV2/apis/workforce_management_api.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5689,12 +5689,13 @@ def patch_workforcemanagement_managementunit_workplan(self, management_unit_id,
56895689
:param str management_unit_id: The ID of the management unit, or 'mine' for the management unit of the logged-in user. (required)
56905690
:param str work_plan_id: The ID of the work plan to update (required)
56915691
:param WorkPlan body: body
5692+
:param str validation_mode: Allows to update work plan even if validation result is invalid
56925693
:return: WorkPlan
56935694
If the method is called asynchronously,
56945695
returns the request thread.
56955696
"""
56965697

5697-
all_params = ['management_unit_id', 'work_plan_id', 'body']
5698+
all_params = ['management_unit_id', 'work_plan_id', 'body', 'validation_mode']
56985699
all_params.append('callback')
56995700

57005701
params = locals()
@@ -5723,6 +5724,8 @@ def patch_workforcemanagement_managementunit_workplan(self, management_unit_id,
57235724
path_params['workPlanId'] = params['work_plan_id']
57245725

57255726
query_params = {}
5727+
if 'validation_mode' in params:
5728+
query_params['validationMode'] = params['validation_mode']
57265729

57275730
header_params = {}
57285731

@@ -8454,12 +8457,13 @@ def post_workforcemanagement_managementunit_workplans(self, management_unit_id,
84548457
for asynchronous request. (optional)
84558458
:param str management_unit_id: The ID of the management unit, or 'mine' for the management unit of the logged-in user. (required)
84568459
:param CreateWorkPlan body: body
8460+
:param str validation_mode: Allows to create work plan even if the validation result is invalid
84578461
:return: WorkPlan
84588462
If the method is called asynchronously,
84598463
returns the request thread.
84608464
"""
84618465

8462-
all_params = ['management_unit_id', 'body']
8466+
all_params = ['management_unit_id', 'body', 'validation_mode']
84638467
all_params.append('callback')
84648468

84658469
params = locals()
@@ -8483,6 +8487,8 @@ def post_workforcemanagement_managementunit_workplans(self, management_unit_id,
84838487
path_params['managementUnitId'] = params['management_unit_id']
84848488

84858489
query_params = {}
8490+
if 'validation_mode' in params:
8491+
query_params['validationMode'] = params['validation_mode']
84868492

84878493
header_params = {}
84888494

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@ def to_debug_report(self):
255255
"OS: {env}\n"\
256256
"Python Version: {pyversion}\n"\
257257
"Version of the API: v2\n"\
258-
"SDK Package Version: 102.0.0".\
258+
"SDK Package Version: 103.0.0".\
259259
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,10 @@
377377
from .content_management_workspace_documents_topic_user_data import ContentManagementWorkspaceDocumentsTopicUserData
378378
from .content_management_workspace_documents_topic_workspace_data import ContentManagementWorkspaceDocumentsTopicWorkspaceData
379379
from .content_notification_template import ContentNotificationTemplate
380+
from .content_postback import ContentPostback
380381
from .content_query_request import ContentQueryRequest
381382
from .content_quick_reply import ContentQuickReply
383+
from .content_reaction import ContentReaction
382384
from .content_sort_item import ContentSortItem
383385
from .context_entity import ContextEntity
384386
from .context_intent import ContextIntent
@@ -1162,6 +1164,7 @@
11621164
from .messaging_campaign_entity_listing import MessagingCampaignEntityListing
11631165
from .messaging_integration import MessagingIntegration
11641166
from .messaging_integration_entity_listing import MessagingIntegrationEntityListing
1167+
from .messaging_recipient import MessagingRecipient
11651168
from .messaging_sticker import MessagingSticker
11661169
from .messaging_sticker_entity_listing import MessagingStickerEntityListing
11671170
from .messaging_template import MessagingTemplate
@@ -1696,11 +1699,6 @@
16961699
from .security_profile import SecurityProfile
16971700
from .security_profile_entity_listing import SecurityProfileEntityListing
16981701
from .segment import Segment
1699-
from .segment_assignment import SegmentAssignment
1700-
from .segment_assignment_listing import SegmentAssignmentListing
1701-
from .segment_assignment_segment import SegmentAssignmentSegment
1702-
from .segment_assignment_session import SegmentAssignmentSession
1703-
from .segment_assignments_update import SegmentAssignmentsUpdate
17041702
from .segment_detail_query_clause import SegmentDetailQueryClause
17051703
from .segment_detail_query_filter import SegmentDetailQueryFilter
17061704
from .segment_detail_query_predicate import SegmentDetailQueryPredicate
@@ -1788,6 +1786,7 @@
17881786
from .subscription_overview_usage import SubscriptionOverviewUsage
17891787
from .suggest_search_criteria import SuggestSearchCriteria
17901788
from .suggest_search_request import SuggestSearchRequest
1789+
from .supported_language import SupportedLanguage
17911790
from .survey import Survey
17921791
from .survey_aggregate_data_container import SurveyAggregateDataContainer
17931792
from .survey_aggregate_query_clause import SurveyAggregateQueryClause

build/PureCloudPlatformClientV2/models/adfs.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def __init__(self):
4343
'id': 'str',
4444
'name': 'str',
4545
'relying_party_identifier': 'str',
46-
'certificate': 'str',
4746
'issuer_uri': 'str',
47+
'certificate': 'str',
4848
'sso_target_uri': 'str',
4949
'disabled': 'bool',
5050
'self_uri': 'str'
@@ -54,8 +54,8 @@ def __init__(self):
5454
'id': 'id',
5555
'name': 'name',
5656
'relying_party_identifier': 'relyingPartyIdentifier',
57-
'certificate': 'certificate',
5857
'issuer_uri': 'issuerURI',
58+
'certificate': 'certificate',
5959
'sso_target_uri': 'ssoTargetURI',
6060
'disabled': 'disabled',
6161
'self_uri': 'selfUri'
@@ -64,8 +64,8 @@ def __init__(self):
6464
self._id = None
6565
self._name = None
6666
self._relying_party_identifier = None
67-
self._certificate = None
6867
self._issuer_uri = None
68+
self._certificate = None
6969
self._sso_target_uri = None
7070
self._disabled = None
7171
self._self_uri = None
@@ -140,50 +140,50 @@ def relying_party_identifier(self, relying_party_identifier):
140140
self._relying_party_identifier = relying_party_identifier
141141

142142
@property
143-
def certificate(self):
143+
def issuer_uri(self):
144144
"""
145-
Gets the certificate of this ADFS.
145+
Gets the issuer_uri of this ADFS.
146146
147147
148-
:return: The certificate of this ADFS.
148+
:return: The issuer_uri of this ADFS.
149149
:rtype: str
150150
"""
151-
return self._certificate
151+
return self._issuer_uri
152152

153-
@certificate.setter
154-
def certificate(self, certificate):
153+
@issuer_uri.setter
154+
def issuer_uri(self, issuer_uri):
155155
"""
156-
Sets the certificate of this ADFS.
156+
Sets the issuer_uri of this ADFS.
157157
158158
159-
:param certificate: The certificate of this ADFS.
159+
:param issuer_uri: The issuer_uri of this ADFS.
160160
:type: str
161161
"""
162162

163-
self._certificate = certificate
163+
self._issuer_uri = issuer_uri
164164

165165
@property
166-
def issuer_uri(self):
166+
def certificate(self):
167167
"""
168-
Gets the issuer_uri of this ADFS.
168+
Gets the certificate of this ADFS.
169169
170170
171-
:return: The issuer_uri of this ADFS.
171+
:return: The certificate of this ADFS.
172172
:rtype: str
173173
"""
174-
return self._issuer_uri
174+
return self._certificate
175175

176-
@issuer_uri.setter
177-
def issuer_uri(self, issuer_uri):
176+
@certificate.setter
177+
def certificate(self, certificate):
178178
"""
179-
Sets the issuer_uri of this ADFS.
179+
Sets the certificate of this ADFS.
180180
181181
182-
:param issuer_uri: The issuer_uri of this ADFS.
182+
:param certificate: The certificate of this ADFS.
183183
:type: str
184184
"""
185185

186-
self._issuer_uri = issuer_uri
186+
self._certificate = certificate
187187

188188
@property
189189
def sso_target_uri(self):

build/PureCloudPlatformClientV2/models/analytics_evaluation.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def __init__(self):
5151
'calibration_id': 'str',
5252
'rescored': 'bool',
5353
'deleted': 'bool',
54-
'o_total_score': 'int',
55-
'o_total_critical_score': 'int'
54+
'o_total_critical_score': 'int',
55+
'o_total_score': 'int'
5656
}
5757

5858
self.attribute_map = {
@@ -67,8 +67,8 @@ def __init__(self):
6767
'calibration_id': 'calibrationId',
6868
'rescored': 'rescored',
6969
'deleted': 'deleted',
70-
'o_total_score': 'oTotalScore',
71-
'o_total_critical_score': 'oTotalCriticalScore'
70+
'o_total_critical_score': 'oTotalCriticalScore',
71+
'o_total_score': 'oTotalScore'
7272
}
7373

7474
self._evaluation_id = None
@@ -82,8 +82,8 @@ def __init__(self):
8282
self._calibration_id = None
8383
self._rescored = None
8484
self._deleted = None
85-
self._o_total_score = None
8685
self._o_total_critical_score = None
86+
self._o_total_score = None
8787

8888
@property
8989
def evaluation_id(self):
@@ -339,50 +339,50 @@ def deleted(self, deleted):
339339
self._deleted = deleted
340340

341341
@property
342-
def o_total_score(self):
342+
def o_total_critical_score(self):
343343
"""
344-
Gets the o_total_score of this AnalyticsEvaluation.
344+
Gets the o_total_critical_score of this AnalyticsEvaluation.
345345
346346
347-
:return: The o_total_score of this AnalyticsEvaluation.
347+
:return: The o_total_critical_score of this AnalyticsEvaluation.
348348
:rtype: int
349349
"""
350-
return self._o_total_score
350+
return self._o_total_critical_score
351351

352-
@o_total_score.setter
353-
def o_total_score(self, o_total_score):
352+
@o_total_critical_score.setter
353+
def o_total_critical_score(self, o_total_critical_score):
354354
"""
355-
Sets the o_total_score of this AnalyticsEvaluation.
355+
Sets the o_total_critical_score of this AnalyticsEvaluation.
356356
357357
358-
:param o_total_score: The o_total_score of this AnalyticsEvaluation.
358+
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
359359
:type: int
360360
"""
361361

362-
self._o_total_score = o_total_score
362+
self._o_total_critical_score = o_total_critical_score
363363

364364
@property
365-
def o_total_critical_score(self):
365+
def o_total_score(self):
366366
"""
367-
Gets the o_total_critical_score of this AnalyticsEvaluation.
367+
Gets the o_total_score of this AnalyticsEvaluation.
368368
369369
370-
:return: The o_total_critical_score of this AnalyticsEvaluation.
370+
:return: The o_total_score of this AnalyticsEvaluation.
371371
:rtype: int
372372
"""
373-
return self._o_total_critical_score
373+
return self._o_total_score
374374

375-
@o_total_critical_score.setter
376-
def o_total_critical_score(self, o_total_critical_score):
375+
@o_total_score.setter
376+
def o_total_score(self, o_total_score):
377377
"""
378-
Sets the o_total_critical_score of this AnalyticsEvaluation.
378+
Sets the o_total_score of this AnalyticsEvaluation.
379379
380380
381-
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
381+
:param o_total_score: The o_total_score of this AnalyticsEvaluation.
382382
:type: int
383383
"""
384384

385-
self._o_total_critical_score = o_total_critical_score
385+
self._o_total_score = o_total_score
386386

387387
def to_dict(self):
388388
"""

0 commit comments

Comments
 (0)