@azure/communication-react 1.3.3-alpha-202209090017.0 → 1.3.3-alpha-202209100018.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -960,6 +960,37 @@ export declare type CallCompositeOptions = {
960
960
  * @defaultValue true
961
961
  */
962
962
  callControls?: boolean | CallControlOptions;
963
+ /**
964
+ * Callback you may provide to supply users with further steps to troubleshoot why they have been
965
+ * unable to grant your site the required permissions for the call.
966
+ *
967
+ * @example
968
+ * ```ts
969
+ * onPermissionsTroubleshootingClick: () =>
970
+ * window.open('https://contoso.com/permissions-troubleshooting', '_blank');
971
+ * ```
972
+ *
973
+ * @remarks
974
+ * if this is not supplied, the composite will not show a 'further troubleshooting' link.
975
+ */
976
+ onPermissionsTroubleshootingClick?: (permissionsState: {
977
+ camera: PermissionState;
978
+ microphone: PermissionState;
979
+ }) => void;
980
+ /**
981
+ * Callback you may provide to supply users with further steps to troubleshoot why they have been
982
+ * having network issues when connecting to the call.
983
+ *
984
+ * @example
985
+ * ```ts
986
+ * onNetworkingTroubleShootingClick?: () =>
987
+ * window.open('https://contoso.com/network-troubleshooting', '_blank');
988
+ * ```
989
+ *
990
+ * @remarks
991
+ * if this is not supplied, the composite will not show a 'network troubleshooting' link.
992
+ */
993
+ onNetworkingTroubleShootingClick?: () => void;
963
994
  };
964
995
 
965
996
  /**
@@ -2097,6 +2128,37 @@ export declare type CallWithChatCompositeOptions = {
2097
2128
  * @beta
2098
2129
  */
2099
2130
  fileSharing?: FileSharingOptions;
2131
+ /**
2132
+ * Callback you may provide to supply users with further steps to troubleshoot why they have been
2133
+ * unable to grant your site the required permissions for the call.
2134
+ *
2135
+ * @example
2136
+ * ```ts
2137
+ * onPermissionsTroubleshootingClick: () =>
2138
+ * window.open('https://contoso.com/permissions-troubleshooting', '_blank');
2139
+ * ```
2140
+ *
2141
+ * @remarks
2142
+ * if this is not supplied, the composite will not show a 'further troubleshooting' link.
2143
+ */
2144
+ onPermissionsTroubleshootingClick?: (permissionsState: {
2145
+ camera: PermissionState;
2146
+ microphone: PermissionState;
2147
+ }) => void;
2148
+ /**
2149
+ * Optional callback to supply users with further troubleshooting steps for network issues
2150
+ * experienced when connecting to a call.
2151
+ *
2152
+ * @example
2153
+ * ```ts
2154
+ * onNetworkingTroubleShootingClick?: () =>
2155
+ * window.open('https://contoso.com/network-troubleshooting', '_blank');
2156
+ * ```
2157
+ *
2158
+ * @remarks
2159
+ * if this is not supplied, the composite will not show a 'network troubleshooting' link.
2160
+ */
2161
+ onNetworkingTroubleShootingClick?: () => void;
2100
2162
  };
2101
2163
 
2102
2164
  /**
@@ -192,7 +192,7 @@ const fromFlatCommunicationIdentifier = (id) => {
192
192
  // Copyright (c) Microsoft Corporation.
193
193
  // Licensed under the MIT license.
194
194
  // GENERATED FILE. DO NOT EDIT MANUALLY.
195
- var telemetryVersion = '1.3.3-alpha-202209090017.0';
195
+ var telemetryVersion = '1.3.3-alpha-202209100018.0';
196
196
 
197
197
  // Copyright (c) Microsoft Corporation.
198
198
  /**