You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+89-69
Original file line number
Diff line number
Diff line change
@@ -14,48 +14,49 @@ Headless Chat SDK to build your own chat widget against Dynamics 365 Omnichannel
14
14
Please make sure you have a chat widget configured before using this package or you can follow this [link](https://docs.microsoft.com/en-us/dynamics365/customer-service/add-chat-widget)
15
15
16
16
## Table of Contents
17
+
17
18
-[Live Chat Widget vs. Chat SDK](#live-chat-widget-vs-chat-sdk)
18
19
-[Releases](#releases)
19
20
-[Installation](#installation)
20
21
-[Installation on React Native](#installation-on-react-native)
21
22
-[SDK Methods](#sdk-methods)
22
-
-[Initialization](#initialization)
23
-
-[Start Chat](#start-chat)
24
-
-[End Chat](#end-chat)
25
-
-[Get Pre-Chat Survey](#get-pre-chat-survey)
26
-
-[Get Live Chat Config](#get-live-chat-config)
27
-
-[Get Current Live Chat Context](#get-current-live-chat-context)
28
-
-[Get Data Masking Rules](#get-data-masking-rules)
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/configure-pre-chat-survey?tabs=customerserviceadmincenter on how to set up pre-conversation surveys
550
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/configure-pre-chat-survey?tabs=customerserviceadmincenter> on how to set up pre-conversation surveys
536
551
537
552
```ts
538
553
import * as AdaptiveCards, { Action } from "adaptivecards";
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/configure-post-conversation-survey?tabs=customerserviceadmincenter on how to set up post-conversation surveys
585
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/configure-post-conversation-survey?tabs=customerserviceadmincenter> on how to set up post-conversation surveys
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/create-chat-auth-settings?tabs=customerserviceadmincenter#create-a-chat-authentication-setting-record on how to set up an authenticated chat
644
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/create-chat-auth-settings?tabs=customerserviceadmincenter#create-a-chat-authentication-setting-record> on how to set up an authenticated chat
630
645
631
646
```ts
632
647
const chatSDKConfig = {
@@ -649,7 +664,7 @@ await chatSDK.initialize();
649
664
650
665
### PersistentChat
651
666
652
-
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/persistent-chat on how to set up persistent chat
667
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/persistent-chat> on how to set up persistent chat
653
668
654
669
```ts
655
670
const chatSDKConfig = {
@@ -673,9 +688,10 @@ await chatSDK.initialize();
673
688
674
689
// from this point, this acts like a persistent chat
675
690
```
691
+
676
692
### ChatReconnectwithAuthenticatedUser
677
693
678
-
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/configure-reconnect-chat?tabs=customerserviceadmincenter#enable-reconnection-to-a-previous-chat-session on how to set up chat reconnect
694
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/configure-reconnect-chat?tabs=customerserviceadmincenter#enable-reconnection-to-a-previous-chat-session> on how to set up chat reconnect
679
695
680
696
```ts
681
697
const chatSDKConfig = {
@@ -715,7 +731,7 @@ chatSDK.startChat();
715
731
716
732
### ChatReconnectwithUnauthenticatedUser
717
733
718
-
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/configure-reconnect-chat?tabs=customerserviceadmincenter#enable-reconnection-to-a-previous-chat-session on how to set up chat reconnect
734
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/configure-reconnect-chat?tabs=customerserviceadmincenter#enable-reconnection-to-a-previous-chat-session> on how to set up chat reconnect
719
735
720
736
```ts
721
737
const chatSDKConfig = {
@@ -759,7 +775,7 @@ if (chatReconnectContext.reconnectId) {
759
775
760
776
### OperatingHours
761
777
762
-
>Seehttps://docs.microsoft.com/en-us/dynamics365/customer-service/create-operating-hours?tabs=customerserviceadmincenter on how to set up operating hours
778
+
>See<https://docs.microsoft.com/en-us/dynamics365/customer-service/create-operating-hours?tabs=customerserviceadmincenter> on how to set up operating hours
0 commit comments