Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Mar 8, 2019
1 parent 3565012 commit 1e7a203
Show file tree
Hide file tree
Showing 41 changed files with 2,147 additions and 155 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For direct use in a browser script:

```{"language":"html"}
<!-- Include the CJS SDK -->
<script src="https://sdk-cdn.mypurecloud.com/javascript-guest/3.0.0/purecloud-guest-chat-client.min.js"></script>
<script src="https://sdk-cdn.mypurecloud.com/javascript-guest/4.0.0/purecloud-guest-chat-client.min.js"></script>
<script type="text/javascript">
// Obtain a reference to the platformClient object
Expand All @@ -46,7 +46,7 @@ For direct use in a browser script:
<script type="text/javascript">
// Obtain a reference to the platformClient object
requirejs(['https://sdk-cdn.mypurecloud.com/javascript-guest/amd/3.0.0/purecloud-guest-chat-client.min.js'], (platformClient) => {
requirejs(['https://sdk-cdn.mypurecloud.com/javascript-guest/amd/4.0.0/purecloud-guest-chat-client.min.js'], (platformClient) => {
console.log(platformClient);
});
</script>
Expand Down
4 changes: 2 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For direct use in a browser script:

```{"language":"html"}
<!-- Include the CJS SDK -->
<script src="https://sdk-cdn.mypurecloud.com/javascript-guest/3.0.0/purecloud-guest-chat-client.min.js"></script>
<script src="https://sdk-cdn.mypurecloud.com/javascript-guest/4.0.0/purecloud-guest-chat-client.min.js"></script>
<script type="text/javascript">
// Obtain a reference to the platformClient object
Expand All @@ -46,7 +46,7 @@ For direct use in a browser script:
<script type="text/javascript">
// Obtain a reference to the platformClient object
requirejs(['https://sdk-cdn.mypurecloud.com/javascript-guest/amd/3.0.0/purecloud-guest-chat-client.min.js'], (platformClient) => {
requirejs(['https://sdk-cdn.mypurecloud.com/javascript-guest/amd/4.0.0/purecloud-guest-chat-client.min.js'], (platformClient) => {
console.log(platformClient);
});
</script>
Expand Down
8 changes: 4 additions & 4 deletions build/dist/node/purecloud-guest-chat-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var superagent = _interopDefault(require('superagent'));

/**
* @module purecloud-guest-chat-client/ApiClient
* @version 3.0.0
* @version 4.0.0
*/
class ApiClient {
/**
Expand Down Expand Up @@ -535,7 +535,7 @@ class ApiClient {

// set header parameters
request.set(this.defaultHeaders).set(this.normalizeParams(headerParams));
//request.set({ 'purecloud-sdk': '3.0.0' });
//request.set({ 'purecloud-sdk': '4.0.0' });

// set request timeout
request.timeout(this.timeout);
Expand Down Expand Up @@ -662,7 +662,7 @@ class WebChatApi {
/**
* WebChat service.
* @module purecloud-guest-chat-client/api/WebChatApi
* @version 3.0.0
* @version 4.0.0
*/

/**
Expand Down Expand Up @@ -1040,7 +1040,7 @@ class WebChatApi {
* </pre>
* </p>
* @module purecloud-guest-chat-client/index
* @version 3.0.0
* @version 4.0.0
*/
class platformClient {
constructor() {
Expand Down
8 changes: 4 additions & 4 deletions build/dist/web-amd/purecloud-guest-chat-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ define(['superagent'], function (superagent) { 'use strict';

/**
* @module purecloud-guest-chat-client/ApiClient
* @version 3.0.0
* @version 4.0.0
*/
class ApiClient {
/**
Expand Down Expand Up @@ -533,7 +533,7 @@ define(['superagent'], function (superagent) { 'use strict';

// set header parameters
request.set(this.defaultHeaders).set(this.normalizeParams(headerParams));
//request.set({ 'purecloud-sdk': '3.0.0' });
//request.set({ 'purecloud-sdk': '4.0.0' });

// set request timeout
request.timeout(this.timeout);
Expand Down Expand Up @@ -660,7 +660,7 @@ define(['superagent'], function (superagent) { 'use strict';
/**
* WebChat service.
* @module purecloud-guest-chat-client/api/WebChatApi
* @version 3.0.0
* @version 4.0.0
*/

/**
Expand Down Expand Up @@ -1038,7 +1038,7 @@ define(['superagent'], function (superagent) { 'use strict';
* </pre>
* </p>
* @module purecloud-guest-chat-client/index
* @version 3.0.0
* @version 4.0.0
*/
class platformClient {
constructor() {
Expand Down
8 changes: 4 additions & 4 deletions build/dist/web-cjs/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1971,7 +1971,7 @@ function isSlowBuffer (obj) {

/**
* @module purecloud-guest-chat-client/ApiClient
* @version 3.0.0
* @version 4.0.0
*/
class ApiClient {
/**
Expand Down Expand Up @@ -2500,7 +2500,7 @@ class ApiClient {

// set header parameters
request.set(this.defaultHeaders).set(this.normalizeParams(headerParams));
//request.set({ 'purecloud-sdk': '3.0.0' });
//request.set({ 'purecloud-sdk': '4.0.0' });

// set request timeout
request.timeout(this.timeout);
Expand Down Expand Up @@ -2627,7 +2627,7 @@ class WebChatApi {
/**
* WebChat service.
* @module purecloud-guest-chat-client/api/WebChatApi
* @version 3.0.0
* @version 4.0.0
*/

/**
Expand Down Expand Up @@ -3005,7 +3005,7 @@ class WebChatApi {
* </pre>
* </p>
* @module purecloud-guest-chat-client/index
* @version 3.0.0
* @version 4.0.0
*/
class platformClient {
constructor() {
Expand Down
Loading

0 comments on commit 1e7a203

Please sign in to comment.