@snaptrude/plugin-core 0.9.5 → 0.9.6
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 +11 -0
- package/api-manifest.json +59 -1
- package/dist/api/core/camera/index.d.ts +16 -0
- package/dist/api/core/camera/index.d.ts.map +1 -1
- package/dist/api/core/project/index.d.ts +68 -1
- package/dist/api/core/project/index.d.ts.map +1 -1
- package/dist/api/core/storeys/index.d.ts +14 -0
- package/dist/api/core/storeys/index.d.ts.map +1 -1
- package/dist/api/design/furniture/index.d.ts +33 -0
- package/dist/api/design/furniture/index.d.ts.map +1 -1
- package/dist/api/design/visibility.d.ts +28 -0
- package/dist/api/design/visibility.d.ts.map +1 -1
- package/dist/index.cjs +15 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
- package/src/api/core/camera/index.ts +17 -0
- package/src/api/core/project/index.ts +62 -1
- package/src/api/core/storeys/index.ts +15 -0
- package/src/api/design/furniture/index.ts +34 -0
- package/src/api/design/visibility.ts +34 -0
package/dist/index.js
CHANGED
|
@@ -887,6 +887,14 @@ var PluginGridValueArgs = z21.object({
|
|
|
887
887
|
var PluginToleranceArgs = z21.object({
|
|
888
888
|
value: z21.number()
|
|
889
889
|
});
|
|
890
|
+
var PluginProjectInfo = z21.object({
|
|
891
|
+
projectId: z21.string(),
|
|
892
|
+
name: z21.string().nullable(),
|
|
893
|
+
units: PUnitType,
|
|
894
|
+
activeStorey: z21.number(),
|
|
895
|
+
storeyCount: z21.number(),
|
|
896
|
+
location: z21.object({ latitude: z21.number(), longitude: z21.number() }).nullable()
|
|
897
|
+
});
|
|
890
898
|
|
|
891
899
|
// src/api/core/comment/index.ts
|
|
892
900
|
import * as z22 from "zod";
|
|
@@ -2848,6 +2856,9 @@ var PluginDesignVisibilityApi = class {
|
|
|
2848
2856
|
var PluginDesignVisibilityHideArgs = z56.object({
|
|
2849
2857
|
components: z56.array(ComponentHandle)
|
|
2850
2858
|
});
|
|
2859
|
+
var PluginDesignVisibilityShowArgs = z56.object({
|
|
2860
|
+
components: z56.array(ComponentHandle)
|
|
2861
|
+
});
|
|
2851
2862
|
var PluginDesignVisibilityIsolateArgs = z56.object({
|
|
2852
2863
|
components: z56.array(ComponentHandle)
|
|
2853
2864
|
});
|
|
@@ -5915,6 +5926,7 @@ export {
|
|
|
5915
5926
|
PluginDesignVisibilityApi,
|
|
5916
5927
|
PluginDesignVisibilityHideArgs,
|
|
5917
5928
|
PluginDesignVisibilityIsolateArgs,
|
|
5929
|
+
PluginDesignVisibilityShowArgs,
|
|
5918
5930
|
PluginDesignWindowArgs,
|
|
5919
5931
|
PluginDesignWindowExistsArgs,
|
|
5920
5932
|
PluginDesignWindowGetCatalogItemArgs,
|
|
@@ -6391,6 +6403,7 @@ export {
|
|
|
6391
6403
|
PluginProgramSpreadsheetTransactionArgs,
|
|
6392
6404
|
PluginProgramSpreadsheetTransactionResult,
|
|
6393
6405
|
PluginProjectApi,
|
|
6406
|
+
PluginProjectInfo,
|
|
6394
6407
|
PluginProjectRef,
|
|
6395
6408
|
PluginProjectSettingsApi,
|
|
6396
6409
|
PluginQuatApi,
|