@snaptrude/plugin-core 0.2.7 → 0.2.9
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/CHANGELOG.md +15 -0
- package/dist/api/documentation/aiInspiration.d.ts +2155 -0
- package/dist/api/documentation/aiInspiration.d.ts.map +1 -0
- package/dist/api/documentation/index.d.ts +13 -0
- package/dist/api/documentation/index.d.ts.map +1 -0
- package/dist/api/entity/space.d.ts +103 -1
- package/dist/api/entity/space.d.ts.map +1 -1
- package/dist/api/index.d.ts +5 -0
- package/dist/api/index.d.ts.map +1 -1
- package/dist/index.cjs +811 -225
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +743 -225
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/documentation/aiInspiration.ts +871 -0
- package/src/api/documentation/index.ts +15 -0
- package/src/api/entity/space.ts +31 -1
- package/src/api/index.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @snaptrude/plugin-core
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 94842d0: added new space areaClass and innerProfiles APIs
|
|
8
|
+
- ddf05fa: Add area-class and inner-profile properties to `entity.space`.
|
|
9
|
+
- `get`: new readable properties `areaClass` (effective `"NET" | "GROSS" | "EXCLUDED"`, resolving any per-space override then the space-type default; never null), `innerProfiles` (`PProfile[]` of bottom holes), and `innerPlanPoints` (`PVec3[][]`, one `y = 0` point loop per hole). All three return empty arrays / never-null values for spaces without holes.
|
|
10
|
+
- `update` / `bulkUpdate`: new optional `properties.areaClass` that sets an explicit per-space override which wins over the space-type default.
|
|
11
|
+
|
|
12
|
+
## 0.2.8
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 445e0b8: Add Present-mode AI Inspiration plugin APIs under `snaptrude.documentation.aiInspiration`.
|
|
17
|
+
|
|
3
18
|
## 0.2.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|