@supernova-studio/model 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 +18 -18
- package/dist/index.d.ts +18 -18
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -150956,6 +150956,24 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
150956
150956
|
}>;
|
|
150957
150957
|
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
150958
150958
|
|
|
150959
|
+
declare const ListExporterQuery: z.ZodObject<{
|
|
150960
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
150961
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
150962
|
+
type: z.ZodOptional<z.ZodEnum<["documentation", "code"]>>;
|
|
150963
|
+
search: z.ZodOptional<z.ZodString>;
|
|
150964
|
+
}, "strip", z.ZodTypeAny, {
|
|
150965
|
+
search?: string | undefined;
|
|
150966
|
+
type?: "code" | "documentation" | undefined;
|
|
150967
|
+
limit?: number | undefined;
|
|
150968
|
+
offset?: number | undefined;
|
|
150969
|
+
}, {
|
|
150970
|
+
search?: string | undefined;
|
|
150971
|
+
type?: "code" | "documentation" | undefined;
|
|
150972
|
+
limit?: number | undefined;
|
|
150973
|
+
offset?: number | undefined;
|
|
150974
|
+
}>;
|
|
150975
|
+
type ListExporterQuery = z.infer<typeof ListExporterQuery>;
|
|
150976
|
+
|
|
150959
150977
|
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
150960
150978
|
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
150961
150979
|
|
|
@@ -153981,24 +153999,6 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
153981
153999
|
}>;
|
|
153982
154000
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
153983
154001
|
|
|
153984
|
-
declare const ListExporterQuery: z.ZodObject<{
|
|
153985
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
153986
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
153987
|
-
type: z.ZodOptional<z.ZodEnum<["documentation", "code"]>>;
|
|
153988
|
-
search: z.ZodOptional<z.ZodString>;
|
|
153989
|
-
}, "strip", z.ZodTypeAny, {
|
|
153990
|
-
search?: string | undefined;
|
|
153991
|
-
type?: "code" | "documentation" | undefined;
|
|
153992
|
-
limit?: number | undefined;
|
|
153993
|
-
offset?: number | undefined;
|
|
153994
|
-
}, {
|
|
153995
|
-
search?: string | undefined;
|
|
153996
|
-
type?: "code" | "documentation" | undefined;
|
|
153997
|
-
limit?: number | undefined;
|
|
153998
|
-
offset?: number | undefined;
|
|
153999
|
-
}>;
|
|
154000
|
-
type ListExporterQuery = z.infer<typeof ListExporterQuery>;
|
|
154001
|
-
|
|
154002
154002
|
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>;
|
|
154003
154003
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
154004
154004
|
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>, z.ZodBoolean>;
|
package/dist/index.d.ts
CHANGED
|
@@ -150956,6 +150956,24 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
150956
150956
|
}>;
|
|
150957
150957
|
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
150958
150958
|
|
|
150959
|
+
declare const ListExporterQuery: z.ZodObject<{
|
|
150960
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
150961
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
150962
|
+
type: z.ZodOptional<z.ZodEnum<["documentation", "code"]>>;
|
|
150963
|
+
search: z.ZodOptional<z.ZodString>;
|
|
150964
|
+
}, "strip", z.ZodTypeAny, {
|
|
150965
|
+
search?: string | undefined;
|
|
150966
|
+
type?: "code" | "documentation" | undefined;
|
|
150967
|
+
limit?: number | undefined;
|
|
150968
|
+
offset?: number | undefined;
|
|
150969
|
+
}, {
|
|
150970
|
+
search?: string | undefined;
|
|
150971
|
+
type?: "code" | "documentation" | undefined;
|
|
150972
|
+
limit?: number | undefined;
|
|
150973
|
+
offset?: number | undefined;
|
|
150974
|
+
}>;
|
|
150975
|
+
type ListExporterQuery = z.infer<typeof ListExporterQuery>;
|
|
150976
|
+
|
|
150959
150977
|
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
150960
150978
|
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
150961
150979
|
|
|
@@ -153981,24 +153999,6 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
153981
153999
|
}>;
|
|
153982
154000
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
153983
154001
|
|
|
153984
|
-
declare const ListExporterQuery: z.ZodObject<{
|
|
153985
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
153986
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
153987
|
-
type: z.ZodOptional<z.ZodEnum<["documentation", "code"]>>;
|
|
153988
|
-
search: z.ZodOptional<z.ZodString>;
|
|
153989
|
-
}, "strip", z.ZodTypeAny, {
|
|
153990
|
-
search?: string | undefined;
|
|
153991
|
-
type?: "code" | "documentation" | undefined;
|
|
153992
|
-
limit?: number | undefined;
|
|
153993
|
-
offset?: number | undefined;
|
|
153994
|
-
}, {
|
|
153995
|
-
search?: string | undefined;
|
|
153996
|
-
type?: "code" | "documentation" | undefined;
|
|
153997
|
-
limit?: number | undefined;
|
|
153998
|
-
offset?: number | undefined;
|
|
153999
|
-
}>;
|
|
154000
|
-
type ListExporterQuery = z.infer<typeof ListExporterQuery>;
|
|
154001
|
-
|
|
154002
154002
|
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>;
|
|
154003
154003
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
154004
154004
|
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>, z.ZodBoolean>;
|
package/dist/index.js
CHANGED
|
@@ -5481,6 +5481,16 @@ var ExportJobFindByFilter = ExportJob.pick({
|
|
|
5481
5481
|
docsEnvironment: PublishedDocEnvironment
|
|
5482
5482
|
}).partial();
|
|
5483
5483
|
|
|
5484
|
+
// src/export/exporter-list-query.ts
|
|
5485
|
+
|
|
5486
|
+
var ExporterType2 = _zod.z.enum(["documentation", "code"]);
|
|
5487
|
+
var ListExporterQuery = _zod.z.object({
|
|
5488
|
+
limit: _zod.z.number().optional(),
|
|
5489
|
+
offset: _zod.z.number().optional(),
|
|
5490
|
+
type: ExporterType2.optional(),
|
|
5491
|
+
search: _zod.z.string().optional()
|
|
5492
|
+
});
|
|
5493
|
+
|
|
5484
5494
|
// src/export/exporter-workspace-membership-role.ts
|
|
5485
5495
|
|
|
5486
5496
|
var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
|
|
@@ -5494,16 +5504,6 @@ var ExporterWorkspaceMembership = _zod.z.object({
|
|
|
5494
5504
|
role: ExporterWorkspaceMembershipRole
|
|
5495
5505
|
});
|
|
5496
5506
|
|
|
5497
|
-
// src/export/exporter-list-query.ts
|
|
5498
|
-
|
|
5499
|
-
var ExporterType2 = _zod.z.enum(["documentation", "code"]);
|
|
5500
|
-
var ListExporterQuery = _zod.z.object({
|
|
5501
|
-
limit: _zod.z.number().optional(),
|
|
5502
|
-
offset: _zod.z.number().optional(),
|
|
5503
|
-
type: ExporterType2.optional(),
|
|
5504
|
-
search: _zod.z.string().optional()
|
|
5505
|
-
});
|
|
5506
|
-
|
|
5507
5507
|
// src/feature-flags/feature-flags.ts
|
|
5508
5508
|
|
|
5509
5509
|
var FlaggedFeature = _zod.z.enum([
|