@archilogic/floor-plan-sdk 5.0.0-v5-scene-structure.0 → 5.0.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.
package/README.md CHANGED
@@ -29,11 +29,14 @@ import { FloorPlanEngine } from '@archilogic/floor-plan-sdk'
29
29
 
30
30
  ### es module import via CDN
31
31
  ```js
32
- import { FloorPlanEngine } from 'https://code.archilogic.com/fpe-sdk/v5.0.0-beta.0/fpe.es.js'
32
+ import { FloorPlanEngine } from 'https://esm.sh/@archilogic/floor-plan-sdk'
33
33
  ```
34
34
 
35
35
  ### umd module import via CDN
36
36
  ```html
37
- <script src="https://code.archilogic.com/fpe-sdk/v5.0.0-beta.0/fpe.umd.js" >
37
+ <script src="https://unpkg.com/@archilogic/floor-plan-sdk"></script>
38
+ <script>
39
+ const { FloorPlanEngine } = FloorPlanSdk
40
+ </script>
38
41
  ```
39
42