Skip to content

Commit ccc92d5

Browse files
Update SDK to version v1.0.9 (SharePoint#10240)
* Update SDK to version v1.0.9 * update timestamp, grammatical fixes & typos --------- Co-authored-by: Andrew Connell <[email protected]>
1 parent d7a7a16 commit ccc92d5

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/embedded/development/tutorials/spe-da-vscode.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Sharepoint Embedded copilot Tutorial
2+
title: SharePoint Embedded Copilot Tutorial
33
description: Sharepoint Embedded copilot Tutorial with the SDK and the VS Code SharePoint Embedded Extension
4-
ms.date: 02/27/2025
4+
ms.date: 05/15/2025
55
ms.localizationpriority: high
66
---
77

@@ -11,12 +11,12 @@ ms.localizationpriority: high
1111

1212
> [!NOTE]
1313
>
14-
> 1. You will need to create create a SharePoint Embedded application. If you don't have one, you can easily build a sample application using the instructions [here](#getting-started-using-the-sharepoint-embedded-visual-studio-code-extension).
15-
> 1. You must specify a standard container type at creation time. Depending on the purpose, you may or may not need to provide your Azure Subscription ID. A container type set for trial purposes can't be converted for production; or vice versa.
14+
> 1. You will need to create a SharePoint Embedded application. If you don't have one, you can easily build a sample application using the instructions [here](#getting-started-using-the-sharepoint-embedded-visual-studio-code-extension).
15+
> 1. You must specify a standard container type at creation time. Depending on the purpose, you may or may not need to provide your Azure Subscription ID. A container type set for trial purposes can't be converted for production, or vice versa.
1616
> 1. You must use the latest version of SharePoint PowerShell to configure a container type. For permissions and the most current information about Windows PowerShell for SharePoint Embedded, see the documentation at [Intro to SharePoint Embedded Management Shell](/powershell/SharePoint/SharePoint-online/introduction-SharePoint-online-management-shell).
1717
>
1818
> - Set the **ChatEmbeddedHosts** property of your container type configuration to `http://localhost:8080` to be able to work through the quick start below, refer to [the CSP section above for more information](../declarative-agent/spe-da-adv.md#csp-policies)
19-
> - Set the **DiscoverabilityDisabled** property of your container type configuration to `false` so that copilot can find the files in your created container refer to the [Discoverability Disabled section above for more information](../declarative-agent/spe-da-adv.md#discoverabilitydisabled)
19+
> - Set the **DiscoverabilityDisabled** property of your container type configuration to `false` so that copilot can find the files in your created container. Refer to the [Discoverability Disabled section above for more information](../declarative-agent/spe-da-adv.md#discoverabilitydisabled).
2020
> - Ensure that copilot for Microsoft 365 is available for your organization. You have two ways to get a developer environment for copilot:
2121
> - A sandbox Microsoft 365 tenant with M365 Copilot (available in limited preview through [TAP membership](https://developer.microsoft.com/microsoft-365/tap)).
2222
> - An [eligible Microsoft 365 or Office 365 production environment](/microsoft-365-copilot/extensibility/prerequisites#customers-with-existing-microsoft-365-and-copilot-licenses) with a M365 Copilot license.
@@ -28,19 +28,19 @@ ms.localizationpriority: high
2828
```console
2929
# Install the SDK with npm
3030

31-
npm install "https://download.microsoft.com/download/e2d6b1ec-7168-4787-b8de-4a9862f10744/microsoft-sharepointembedded-copilotchat-react-1.0.8.tgz"
31+
npm install "https://download.microsoft.com/download/970802a5-2a7e-44ed-b17d-ad7dc99be312/microsoft-sharepointembedded-copilotchat-react-1.0.9.tgz"
3232
```
3333

3434
#### If you want to verify checksums
3535

3636
In MacOS/Linux
3737

3838
```console
39-
version="1.0.8";
39+
version="1.0.9";
4040

41-
url="https://download.microsoft.com/download/e2d6b1ec-7168-4787-b8de-4a9862f10744/microsoft-sharepointembedded-copilotchat-react-1.0.8.tgz";
41+
url="https://download.microsoft.com/download/970802a5-2a7e-44ed-b17d-ad7dc99be312/microsoft-sharepointembedded-copilotchat-react-1.0.9.tgz";
4242

43-
expected_checksum="16E652BBD2A1990D488060EE4E3C02917D782DE013568A6FC5C37C170D307F99";
43+
expected_checksum="3bdf19830ffc098b253cc809f969f50fba236ad95fe85123e7b15c7cf58ecf6b";
4444

4545
package_path="microsoft-sharepointembedded-copilotchat-react-$version.tgz";
4646

@@ -50,9 +50,9 @@ curl -o $package_path $url && [ "$(sha256sum $package_path | awk '{ print $1 }')
5050
In Windows:
5151

5252
```powershell
53-
$version = "1.0.8"
54-
$url = "https://download.microsoft.com/download/e2d6b1ec-7168-4787-b8de-4a9862f10744/microsoft-sharepointembedded-copilotchat-react-1.0.8.tgz"
55-
$expected_checksum = "16E652BBD2A1990D488060EE4E3C02917D782DE013568A6FC5C37C170D307F99"
53+
$version = "1.0.9"
54+
$url = "https://download.microsoft.com/download/970802a5-2a7e-44ed-b17d-ad7dc99be312/microsoft-sharepointembedded-copilotchat-react-1.0.9.tgz"
55+
$expected_checksum = "3BDF19830FFC098B253CC809F969F50FBA236AD95FE85123E7B15C7CF58ECF6B"
5656
$package_path = "microsoft-sharepointembedded-copilotchat-react-$version.tgz"
5757
5858
Invoke-WebRequest -Uri $url -OutFile $package_path
@@ -323,7 +323,7 @@ function App() {
323323

324324
![VS Code file explorer with ChatSideBar.tsx in open window with relevant code to uncomment highlighted](../../images/speco-uncommentchatsidebar.png)
325325

326-
1. Navigate to `react-client\src\routes\App.tsx` and set the react state of the showSidebar variable to `true`
326+
1. Navigate to `react-client\src\routes\App.tsx` and set the React state of the `showSidebar` variable to `true`
327327

328328
![VS Code file explorer with App.tsx open with line of showSidebar variable useState function input changed from false to true to enable showing chat side bar](../../images/speco-setshowsidebartrue.png)
329329

@@ -334,7 +334,7 @@ function App() {
334334
335335
![VS Code terminal in root folder of SPE Typescript project cloned earlier and npm run start command typed in](../../images/speco-runnpmrunstart.png)
336336

337-
1. Sign in with a user who has an M365 Copilot license enabled.
337+
1. Sign in with a user who has a Microsoft 365 Copilot license enabled.
338338

339339
![SPE Typescript App running in Edge with sign in buttons](../../images/speco-reacttypescripthomepage.png)
340340

0 commit comments

Comments
 (0)