@supernova-studio/client 1.0.6 → 1.1.0
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 +112 -0
- package/dist/index.d.ts +112 -0
- package/dist/index.js +15 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4760,19 +4760,19 @@ var ExportJobFindByFilter = ExportJob.pick({
|
|
|
4760
4760
|
destinations: z169.array(ExportJobDestinationType),
|
|
4761
4761
|
docsEnvironment: PublishedDocEnvironment
|
|
4762
4762
|
}).partial();
|
|
4763
|
-
var
|
|
4764
|
-
var
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
exporterId: z171.string(),
|
|
4768
|
-
role: ExporterWorkspaceMembershipRole
|
|
4769
|
-
});
|
|
4770
|
-
var ExporterType2 = z172.enum(["documentation", "code"]);
|
|
4771
|
-
var ListExporterQuery = z172.object({
|
|
4772
|
-
limit: z172.number().optional(),
|
|
4773
|
-
offset: z172.number().optional(),
|
|
4763
|
+
var ExporterType2 = z170.enum(["documentation", "code"]);
|
|
4764
|
+
var ListExporterQuery = z170.object({
|
|
4765
|
+
limit: z170.number().optional(),
|
|
4766
|
+
offset: z170.number().optional(),
|
|
4774
4767
|
type: ExporterType2.optional(),
|
|
4775
|
-
search:
|
|
4768
|
+
search: z170.string().optional()
|
|
4769
|
+
});
|
|
4770
|
+
var ExporterWorkspaceMembershipRole = z171.enum(["Owner", "OwnerArchived", "User"]);
|
|
4771
|
+
var ExporterWorkspaceMembership = z172.object({
|
|
4772
|
+
id: z172.string(),
|
|
4773
|
+
workspaceId: z172.string(),
|
|
4774
|
+
exporterId: z172.string(),
|
|
4775
|
+
role: ExporterWorkspaceMembershipRole
|
|
4776
4776
|
});
|
|
4777
4777
|
var FlaggedFeature = z173.enum([
|
|
4778
4778
|
"FigmaImporterV2",
|
|
@@ -6595,6 +6595,13 @@ var DTOExporter = z231.object({
|
|
|
6595
6595
|
properties: DTOExporterPropertyDefinition.array().optional(),
|
|
6596
6596
|
customBlocks: PulsarCustomBlock.array(),
|
|
6597
6597
|
blockVariants: z231.record(z231.string(), PulsarContributionVariant.array()),
|
|
6598
|
+
homepage: z231.string().optional(),
|
|
6599
|
+
organization: z231.string().optional(),
|
|
6600
|
+
gitProivder: z231.string().optional(),
|
|
6601
|
+
packageId: z231.string().optional(),
|
|
6602
|
+
tags: z231.array(z231.string()),
|
|
6603
|
+
author: z231.string().optional(),
|
|
6604
|
+
usesLocale: z231.boolean(),
|
|
6598
6605
|
usesBrands: z231.boolean(),
|
|
6599
6606
|
usesThemes: z231.boolean(),
|
|
6600
6607
|
source: DTOExporterSource,
|
|
@@ -7274,7 +7281,7 @@ var DTOFrameNodeStructureListResponse = z252.object({
|
|
|
7274
7281
|
|
|
7275
7282
|
// src/api/dto/elements/properties/property-definitions.ts
|
|
7276
7283
|
import { z as z253 } from "zod";
|
|
7277
|
-
var CODE_NAME_REGEX2 = /^[a-zA-Z_$][a-zA-Z_$0-9]{1,99}$/;
|
|
7284
|
+
var CODE_NAME_REGEX2 = /^[a-zA-Z_$][a-zA-Z_$0-9-]{1,99}$/;
|
|
7278
7285
|
var DTOElementPropertyDefinitionOption = z253.object({
|
|
7279
7286
|
id: z253.string(),
|
|
7280
7287
|
name: z253.string(),
|