Skip to content

Commit

Permalink
192.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Apr 28, 2024
1 parent 58010ef commit af7e7ff
Show file tree
Hide file tree
Showing 97 changed files with 1,240 additions and 1,831 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For direct use in a browser script:

```html
<!-- Include the CJS SDK -->
<script src="https://sdk-cdn.mypurecloud.com/javascript/192.0.0/purecloud-platform-client-v2.min.js"></script>
<script src="https://sdk-cdn.mypurecloud.com/javascript/192.1.0/purecloud-platform-client-v2.min.js"></script>

<script type="text/javascript">
// Obtain a reference to the platformClient object
Expand All @@ -48,7 +48,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/amd/192.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/192.1.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
console.log(platformClient);
});
</script>
Expand Down
1 change: 1 addition & 0 deletions build/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -1616,6 +1616,7 @@ docs/patchCoachingNotification-example.txt
docs/patchConversationParticipant-example.txt
docs/patchConversationParticipantAttributes-example.txt
docs/patchConversationSecureattributes-example.txt
docs/patchConversationUtilizationlabel-example.txt
docs/patchConversationsAftercallworkConversationIdParticipantCommunication-example.txt
docs/patchConversationsCall-example.txt
docs/patchConversationsCallParticipant-example.txt
Expand Down
19 changes: 19 additions & 0 deletions build/APIData.json
Original file line number Diff line number Diff line change
Expand Up @@ -10100,6 +10100,25 @@
"return": "'String'",
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...) or loginPKCEGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.ConversationsApi();\n\nlet conversationId = \"conversationId_example\"; // String | conversation ID\nlet body = {}; // Object | Conversation Secure Attributes\n\n// Update the secure attributes on a conversation.\napiInstance.patchConversationSecureattributes(conversationId, body)\n .then((data) => {\n console.log(`patchConversationSecureattributes success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling patchConversationSecureattributes\");\n console.error(err);\n });"
},
"patchconversationutilizationlabel": {
"operationId": "patchconversationutilizationlabel",
"functionName": "patchConversationUtilizationlabel",
"signature": "patchConversationUtilizationlabel(conversationId, body)",
"parameters": [
{
"name": "conversationId",
"type": "String",
"required": "true"
},
{
"name": "body",
"type": "Object",
"required": "true"
}
],
"return": "'String'",
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...) or loginPKCEGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.ConversationsApi();\n\nlet conversationId = \"conversationId_example\"; // String | conversation ID\nlet body = {}; // Object | Conversation Utilization Label\n\n// Update the utilization label on a conversation. When there is no value provided, the system default label is applied\napiInstance.patchConversationUtilizationlabel(conversationId, body)\n .then((data) => {\n console.log(`patchConversationUtilizationlabel success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling patchConversationUtilizationlabel\");\n console.error(err);\n });"
},
"patchconversationsaftercallworkconversationidparticipantcommunication": {
"operationId": "patchconversationsaftercallworkconversationidparticipantcommunication",
"functionName": "patchConversationsAftercallworkConversationIdParticipantCommunication",
Expand Down
4 changes: 2 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For direct use in a browser script:

```html
<!-- Include the CJS SDK -->
<script src="https://sdk-cdn.mypurecloud.com/javascript/192.0.0/purecloud-platform-client-v2.min.js"></script>
<script src="https://sdk-cdn.mypurecloud.com/javascript/192.1.0/purecloud-platform-client-v2.min.js"></script>

<script type="text/javascript">
// Obtain a reference to the platformClient object
Expand All @@ -48,7 +48,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/amd/192.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/192.1.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
console.log(platformClient);
});
</script>
Expand Down
Loading

0 comments on commit af7e7ff

Please sign in to comment.