@supernova-studio/client 1.0.6 → 1.0.7
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 +14 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -12
- 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,
|