Skip to content

Commit dbab843

Browse files
author
PureCloud Jenkins
committed
84.0.0
1 parent 9afdab9 commit dbab843

Some content is hidden

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

78 files changed

+1490
-1669
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: JavaScript SDK
2+
title: Platform API Client SDK - JavaScript
33
---
44

55
# Platform API Javascript Client
66

7-
A JavaScript library to interface with the PureCloud Platform API. View the documentation on the [PureCloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-javascript).
7+
A JavaScript library to interface with the Genesys Cloud Platform API. View the documentation on the [Genesys Cloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-javascript).
88

99
[![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-javascript.svg)]()
1010
[![npm](https://img.shields.io/npm/v/purecloud-platform-client-v2.svg)](https://www.npmjs.com/package/purecloud-platform-client-v2)
@@ -26,7 +26,7 @@ For direct use in a browser script:
2626

2727
```{"language":"html"}
2828
<!-- Include the CJS SDK -->
29-
<script src="https://sdk-cdn.mypurecloud.com/javascript/83.0.0/purecloud-platform-client-v2.min.js"></script>
29+
<script src="https://sdk-cdn.mypurecloud.com/javascript/84.0.0/purecloud-platform-client-v2.min.js"></script>
3030
3131
<script type="text/javascript">
3232
// Obtain a reference to the platformClient object
@@ -43,7 +43,7 @@ For direct use in a browser script:
4343
4444
<script type="text/javascript">
4545
// Obtain a reference to the platformClient object
46-
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/83.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
46+
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/84.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
4747
console.log(platformClient);
4848
});
4949
</script>
@@ -105,7 +105,7 @@ client.loginSaml2BearerGrant(clientId,clientSecret,orgName,encodedAssertionStrin
105105

106106
**Web** [Implicit grant](https://developer.mypurecloud.com/api/rest/authorization/use-implicit-grant.html)
107107

108-
The Implicit grant only works when used in a browser. This is because a node.js application does not have a browser interface that can display the PureCloud login window.
108+
The Implicit grant only works when used in a browser. This is because a node.js application does not have a browser interface that can display the Genesys Cloud login window.
109109

110110
Optional parameters may be specified in the optional third parameter for `loginImplicitGrant`. This parameter accepts an object with key/value pairs. Supported properties:
111111

@@ -139,7 +139,7 @@ When authenticating in a browser using `loginClientCredentialsGrant(...)`, if th
139139

140140
## Environments
141141

142-
If connecting to a PureCloud environment other than mypurecloud.com (e.g. mypurecloud.ie), set the environment on the `ApiClient` instance with the PureCloudRegionHosts object.
142+
If connecting to a Genesys Cloud environment other than mypurecloud.com (e.g. mypurecloud.ie), set the environment on the `ApiClient` instance with the PureCloudRegionHosts object.
143143

144144
```{"language":"javascript"}
145145
const client = platformClient.ApiClient.instance;
@@ -315,6 +315,6 @@ The SDK's version is incremented according to the [Semantic Versioning Specifica
315315

316316
## Support
317317

318-
This package is intended to be forwards compatible with v2 of PureCloud's Platform API. While the general policy for the API is not to introduce breaking changes, there are certain additions and changes to the API that cause breaking changes for the SDK, often due to the way the API is expressed in its swagger definition. Because of this, the SDK can have a major version bump while the API remains at major version 2. While the SDK is intended to be forward compatible, patches will only be released to the latest version. For these reasons, it is strongly recommended that all applications using this SDK are kept up to date and use the latest version of the SDK.
318+
This package is intended to be forwards compatible with v2 of Genesys Cloud's Platform API. While the general policy for the API is not to introduce breaking changes, there are certain additions and changes to the API that cause breaking changes for the SDK, often due to the way the API is expressed in its swagger definition. Because of this, the SDK can have a major version bump while the API remains at major version 2. While the SDK is intended to be forward compatible, patches will only be released to the latest version. For these reasons, it is strongly recommended that all applications using this SDK are kept up to date and use the latest version of the SDK.
319319

320-
For any issues, questions, or suggestions for the SDK, visit the [PureCloud Developer Forum](https://developer.mypurecloud.com/forum/).
320+
For any issues, questions, or suggestions for the SDK, visit the [Genesys Cloud Developer Forum](https://developer.mypurecloud.com/forum/).

build/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: JavaScript SDK
2+
title: Platform API Client SDK - JavaScript
33
---
44

55
# Platform API Javascript Client
66

7-
A JavaScript library to interface with the PureCloud Platform API. View the documentation on the [PureCloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-javascript).
7+
A JavaScript library to interface with the Genesys Cloud Platform API. View the documentation on the [Genesys Cloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-javascript).
88

99
[![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-javascript.svg)]()
1010
[![npm](https://img.shields.io/npm/v/purecloud-platform-client-v2.svg)](https://www.npmjs.com/package/purecloud-platform-client-v2)
@@ -26,7 +26,7 @@ For direct use in a browser script:
2626

2727
```{"language":"html"}
2828
<!-- Include the CJS SDK -->
29-
<script src="https://sdk-cdn.mypurecloud.com/javascript/83.0.0/purecloud-platform-client-v2.min.js"></script>
29+
<script src="https://sdk-cdn.mypurecloud.com/javascript/84.0.0/purecloud-platform-client-v2.min.js"></script>
3030
3131
<script type="text/javascript">
3232
// Obtain a reference to the platformClient object
@@ -43,7 +43,7 @@ For direct use in a browser script:
4343
4444
<script type="text/javascript">
4545
// Obtain a reference to the platformClient object
46-
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/83.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
46+
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/84.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
4747
console.log(platformClient);
4848
});
4949
</script>
@@ -105,7 +105,7 @@ client.loginSaml2BearerGrant(clientId,clientSecret,orgName,encodedAssertionStrin
105105

106106
**Web** [Implicit grant](https://developer.mypurecloud.com/api/rest/authorization/use-implicit-grant.html)
107107

108-
The Implicit grant only works when used in a browser. This is because a node.js application does not have a browser interface that can display the PureCloud login window.
108+
The Implicit grant only works when used in a browser. This is because a node.js application does not have a browser interface that can display the Genesys Cloud login window.
109109

110110
Optional parameters may be specified in the optional third parameter for `loginImplicitGrant`. This parameter accepts an object with key/value pairs. Supported properties:
111111

@@ -139,7 +139,7 @@ When authenticating in a browser using `loginClientCredentialsGrant(...)`, if th
139139

140140
## Environments
141141

142-
If connecting to a PureCloud environment other than mypurecloud.com (e.g. mypurecloud.ie), set the environment on the `ApiClient` instance with the PureCloudRegionHosts object.
142+
If connecting to a Genesys Cloud environment other than mypurecloud.com (e.g. mypurecloud.ie), set the environment on the `ApiClient` instance with the PureCloudRegionHosts object.
143143

144144
```{"language":"javascript"}
145145
const client = platformClient.ApiClient.instance;
@@ -315,6 +315,6 @@ The SDK's version is incremented according to the [Semantic Versioning Specifica
315315

316316
## Support
317317

318-
This package is intended to be forwards compatible with v2 of PureCloud's Platform API. While the general policy for the API is not to introduce breaking changes, there are certain additions and changes to the API that cause breaking changes for the SDK, often due to the way the API is expressed in its swagger definition. Because of this, the SDK can have a major version bump while the API remains at major version 2. While the SDK is intended to be forward compatible, patches will only be released to the latest version. For these reasons, it is strongly recommended that all applications using this SDK are kept up to date and use the latest version of the SDK.
318+
This package is intended to be forwards compatible with v2 of Genesys Cloud's Platform API. While the general policy for the API is not to introduce breaking changes, there are certain additions and changes to the API that cause breaking changes for the SDK, often due to the way the API is expressed in its swagger definition. Because of this, the SDK can have a major version bump while the API remains at major version 2. While the SDK is intended to be forward compatible, patches will only be released to the latest version. For these reasons, it is strongly recommended that all applications using this SDK are kept up to date and use the latest version of the SDK.
319319

320-
For any issues, questions, or suggestions for the SDK, visit the [PureCloud Developer Forum](https://developer.mypurecloud.com/forum/).
320+
For any issues, questions, or suggestions for the SDK, visit the [Genesys Cloud Developer Forum](https://developer.mypurecloud.com/forum/).

0 commit comments

Comments
 (0)