Skip to content

Commit 11ace67

Browse files
author
PureCloud Jenkins
committed
64.0.1
1 parent 62be395 commit 11ace67

5 files changed

Lines changed: 13 additions & 125 deletions

File tree

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ def get_client_credentials_token(self, client_id, client_secret):
9999
"""
100100
query_params = {}
101101
body = None
102-
host = (self.host).split('.', 2)[1]
103-
url = 'https://login.' + host + '.com/oauth/token'
102+
url = re.sub(r'\/\/(api)\.', '//login.', self.host) + '/oauth/token'
104103

105104
post_params = {'grant_type': 'client_credentials'}
106105

@@ -132,8 +131,7 @@ def get_saml2bearer_token(self,client_id,client_secret,org_name,assertion):
132131

133132
query_params = {}
134133
body = None
135-
host = (self.host).split('.', 2)[1]
136-
url = 'https://login.' + host + '.com/oauth/token'
134+
url = re.sub(r'\/\/(api)\.', '//login.', self.host) + '/oauth/token'
137135

138136
post_params = {'grant_type': 'urn:ietf:params:oauth:grant-type:saml2-bearer',
139137
'orgName': org_name,
@@ -187,7 +185,7 @@ def __call_api(self, resource_path, method,
187185
header_params['Cookie'] = self.cookie
188186
if header_params:
189187
header_params = self.sanitize_for_serialization(header_params)
190-
header_params['purecloud-sdk'] = '64.0.0'
188+
header_params['purecloud-sdk'] = '64.0.1'
191189

192190
# path parameters
193191
if path_params:

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def to_debug_report(self):
249249
"OS: {env}\n"\
250250
"Python Version: {pyversion}\n"\
251251
"Version of the API: v2\n"\
252-
"SDK Package Version: 64.0.0".\
252+
"SDK Package Version: 64.0.1".\
253253
format(env=sys.platform, pyversion=sys.version)

build/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "PureCloudPlatformClientV2"
7-
VERSION = "64.0.0"
7+
VERSION = "64.0.1"
88

99

1010

@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name="PureCloudPlatformClientV2",
22-
version="64.0.0",
22+
version="64.0.1",
2323
description="PureCloud Platform API SDK",
2424
author="Genesys Developer Evangelists",
2525
author_email="DeveloperEvangelists@Genesys.com",

releaseNotes.md

Lines changed: 4 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,14 @@
11
Platform API version: 3526
22

33

4-
# Major Changes (2 changes)
4+
# SDK Changes
55

6-
**/api/v2/flows/datatables/{datatableId}/import/jobs/{importJobId}** (1 change)
6+
* Fixed a bug determining the login host
77

8-
* Path /api/v2/flows/datatables/{datatableId}/import/jobs/{importJobId} was removed
8+
# Major Changes (0 changes)
99

10-
**DataTableImportJob** (1 change)
1110

12-
* Model DataTableImportJob was removed
13-
14-
15-
# Minor Changes (34 changes)
16-
17-
**GET /api/v2/analytics/conversations/details/jobs/{jobId}** (1 change)
18-
19-
* Response 202 was added
20-
21-
**/api/v2/ipranges** (2 changes)
22-
23-
* Path was added
24-
* Operation GET was added
25-
26-
**/api/v2/telephony/siptraces** (2 changes)
27-
28-
* Path was added
29-
* Operation GET was added
30-
31-
**/api/v2/telephony/siptraces/download** (2 changes)
32-
33-
* Path was added
34-
* Operation POST was added
35-
36-
**/api/v2/telephony/siptraces/download/{downloadId}** (2 changes)
37-
38-
* Path was added
39-
* Operation GET was added
40-
41-
**Site** (1 change)
42-
43-
* Optional property mediaRegionsUseLatencyBased was added
44-
45-
**EventMessage** (1 change)
46-
47-
* Enum value CONTACT_LIST_FILTER_INTERNAL_ERROR was added to property code
48-
49-
**EvaluationDetailQueryPredicate** (2 changes)
50-
51-
* Enum value deleted was added to property dimension
52-
* Enum value rescored was added to property dimension
53-
54-
**AsyncConversationQuery** (1 change)
55-
56-
* Optional property startOfDayIntervalMatching was added
57-
58-
**IpAddressRange** (1 change)
59-
60-
* Model was added
61-
62-
**IpAddressRangeListing** (1 change)
63-
64-
* Model was added
65-
66-
**EvaluationAggregateQueryPredicate** (2 changes)
67-
68-
* Enum value evaluationCreatedDate was added to property dimension
69-
* Enum value rescored was added to property dimension
70-
71-
**EvaluationAggregationQuery** (4 changes)
72-
73-
* Enum value evaluationCreatedDate was added to property groupBy
74-
* Enum value rescored was added to property groupBy
75-
* Enum value nEvaluationsDeleted was added to property metrics
76-
* Enum value nEvaluationsRescored was added to property metrics
77-
78-
**EvaluationAggregationView** (2 changes)
79-
80-
* Enum value nEvaluationsDeleted was added to property target
81-
* Enum value nEvaluationsRescored was added to property target
82-
83-
**TrusteeBillingOverview** (1 change)
84-
85-
* Optional property minimumMonthlyAmount was added
86-
87-
**ReportingExportJobResponse** (1 change)
88-
89-
* Enum value PDF was added to property exportFormat
90-
91-
**ReportingExportJobRequest** (1 change)
92-
93-
* Enum value PDF was added to property exportFormat
94-
95-
**FlowAggregateQueryPredicate** (1 change)
96-
97-
* Enum value flowOutType was added to property dimension
98-
99-
**FlowAggregationQuery** (1 change)
100-
101-
* Enum value flowOutType was added to property groupBy
102-
103-
**HomerRecord** (1 change)
104-
105-
* Model was added
106-
107-
**SipSearchResult** (1 change)
108-
109-
* Model was added
110-
111-
**SipDownloadResponse** (1 change)
112-
113-
* Model was added
114-
115-
**SIPSearchPublicRequest** (1 change)
116-
117-
* Model was added
118-
119-
**SignedUrlResponse** (1 change)
120-
121-
* Model was added
11+
# Minor Changes (0 changes)
12212

12313

12414
# Point Changes (0 changes)

version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"major": 64,
33
"minor": 0,
4-
"point": 0,
4+
"point": 1,
55
"prerelease": "",
66
"apiVersion": 0,
7-
"display": "64.0.0",
8-
"displayFull": "64.0.0"
7+
"display": "64.0.1",
8+
"displayFull": "64.0.1"
99
}

0 commit comments

Comments
 (0)