@azure/digital-twins-core 2.0.0-alpha.20230307.1 → 2.0.0-alpha.20230310.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -145,7 +145,7 @@ We can get a digital twin using `getDigitalTwin` with the digital twin ID.
145
145
  ```javascript
146
146
  const digitalTwinId = "myTwin";
147
147
  const twin = await serviceClient.getDigitalTwin(digitalTwinId);
148
- console.log(`DigitalTwin's etag: ${twin.eTag}`);
148
+ console.log(`DigitalTwin's etag: ${twin.etag}`);
149
149
  console.log(`DigitalTwin: ${twin}`);
150
150
  ```
151
151
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/digital-twins-core",
3
- "version": "2.0.0-alpha.20230307.1",
3
+ "version": "2.0.0-alpha.20230310.2",
4
4
  "description": "An isomorphic client library for Azure Digital Twins",
5
5
  "sdk-type": "client",
6
6
  "author": "Microsoft Corporation",