@supernova-studio/client 1.9.10 → 1.9.11

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.mjs CHANGED
@@ -6513,11 +6513,12 @@ var FormattedCollections = z211.object({
6513
6513
 
6514
6514
  // src/api/dto/design-systems/file.ts
6515
6515
  import { z as z212 } from "zod";
6516
+ var DTOAssetScope = AssetScope;
6516
6517
  var DTOFileUploadItem = z212.object({
6517
6518
  size: z212.number(),
6518
6519
  name: z212.string(),
6519
6520
  checksum: z212.string(),
6520
- scope: AssetScope.exclude(["ComponentThumbnail", "DocumentationFrame"]).optional()
6521
+ scope: DTOAssetScope.exclude(["ComponentThumbnail", "DocumentationFrame"]).optional()
6521
6522
  });
6522
6523
  var DTOFileUploadPayload = z212.object({
6523
6524
  files: z212.array(DTOFileUploadItem)
@@ -6544,7 +6545,7 @@ var DTOFilesGetPayload = z212.object({
6544
6545
  persistentIds: z212.string().array().optional()
6545
6546
  });
6546
6547
  var DTOFilesGetQuery = z212.object({
6547
- includeScope: AssetScope.optional()
6548
+ includeScope: DTOAssetScope.optional()
6548
6549
  });
6549
6550
  var DTOFilesResponse = z212.object({
6550
6551
  files: z212.array(DTOFileResponseItem)
@@ -15473,6 +15474,7 @@ export {
15473
15474
  DTOAppBootstrapDataQuery,
15474
15475
  DTOAppBootstrapDataResponse,
15475
15476
  DTOAssetRenderConfiguration,
15477
+ DTOAssetScope,
15476
15478
  DTOAuthenticatedUser,
15477
15479
  DTOAuthenticatedUserProfile,
15478
15480
  DTOAuthenticatedUserResponse,