@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/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,