@supernova-studio/client 0.47.0 → 0.47.1

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.d.mts CHANGED
@@ -8430,6 +8430,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8430
8430
  } | null | undefined;
8431
8431
  renderCodeProperties?: {
8432
8432
  showCode: boolean;
8433
+ showControls?: boolean | undefined;
8433
8434
  } | null | undefined;
8434
8435
  componentAssets?: {
8435
8436
  persistentId: string;
@@ -8612,6 +8613,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8612
8613
  } | null | undefined;
8613
8614
  renderCodeProperties?: {
8614
8615
  showCode: boolean;
8616
+ showControls?: boolean | undefined;
8615
8617
  } | null | undefined;
8616
8618
  componentAssets?: {
8617
8619
  persistentId: string;
@@ -8912,6 +8914,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8912
8914
  } | null | undefined;
8913
8915
  renderCodeProperties?: {
8914
8916
  showCode: boolean;
8917
+ showControls?: boolean | undefined;
8915
8918
  } | null | undefined;
8916
8919
  componentAssets?: {
8917
8920
  persistentId: string;
@@ -9094,6 +9097,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
9094
9097
  } | null | undefined;
9095
9098
  renderCodeProperties?: {
9096
9099
  showCode: boolean;
9100
+ showControls?: boolean | undefined;
9097
9101
  } | null | undefined;
9098
9102
  componentAssets?: {
9099
9103
  persistentId: string;
package/dist/index.d.ts CHANGED
@@ -8430,6 +8430,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8430
8430
  } | null | undefined;
8431
8431
  renderCodeProperties?: {
8432
8432
  showCode: boolean;
8433
+ showControls?: boolean | undefined;
8433
8434
  } | null | undefined;
8434
8435
  componentAssets?: {
8435
8436
  persistentId: string;
@@ -8612,6 +8613,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8612
8613
  } | null | undefined;
8613
8614
  renderCodeProperties?: {
8614
8615
  showCode: boolean;
8616
+ showControls?: boolean | undefined;
8615
8617
  } | null | undefined;
8616
8618
  componentAssets?: {
8617
8619
  persistentId: string;
@@ -8912,6 +8914,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
8912
8914
  } | null | undefined;
8913
8915
  renderCodeProperties?: {
8914
8916
  showCode: boolean;
8917
+ showControls?: boolean | undefined;
8915
8918
  } | null | undefined;
8916
8919
  componentAssets?: {
8917
8920
  persistentId: string;
@@ -9094,6 +9097,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
9094
9097
  } | null | undefined;
9095
9098
  renderCodeProperties?: {
9096
9099
  showCode: boolean;
9100
+ showControls?: boolean | undefined;
9097
9101
  } | null | undefined;
9098
9102
  componentAssets?: {
9099
9103
  persistentId: string;
package/dist/index.js CHANGED
@@ -962,7 +962,8 @@ var PageBlockFigmaFrameProperties = _zod.z.object({
962
962
  showTitles: _zod.z.boolean()
963
963
  });
964
964
  var PageBlockRenderCodeProperties = _zod.z.object({
965
- showCode: _zod.z.boolean()
965
+ showCode: _zod.z.boolean(),
966
+ showControls: _zod.z.boolean().optional()
966
967
  });
967
968
  var PageBlockAssetComponent = _zod.z.object({
968
969
  persistentId: _zod.z.string(),