@supernova-studio/model 1.10.20 → 1.10.21
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -149685,8 +149685,10 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
149685
149685
|
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
149686
149686
|
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>, "many">>;
|
|
149687
149687
|
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
149688
|
+
selectivePublishing: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
149688
149689
|
}, "strip", z.ZodTypeAny, {
|
|
149689
149690
|
status?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
|
|
149691
|
+
selectivePublishing?: boolean | undefined;
|
|
149690
149692
|
designSystemId?: string | undefined;
|
|
149691
149693
|
designSystemVersionId?: string | undefined;
|
|
149692
149694
|
brandId?: string | undefined;
|
|
@@ -149698,6 +149700,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
149698
149700
|
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
149699
149701
|
}, {
|
|
149700
149702
|
status?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
|
|
149703
|
+
selectivePublishing?: boolean | undefined;
|
|
149701
149704
|
designSystemId?: string | undefined;
|
|
149702
149705
|
designSystemVersionId?: string | undefined;
|
|
149703
149706
|
brandId?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -149685,8 +149685,10 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
149685
149685
|
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
149686
149686
|
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>, "many">>;
|
|
149687
149687
|
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
149688
|
+
selectivePublishing: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
149688
149689
|
}, "strip", z.ZodTypeAny, {
|
|
149689
149690
|
status?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
|
|
149691
|
+
selectivePublishing?: boolean | undefined;
|
|
149690
149692
|
designSystemId?: string | undefined;
|
|
149691
149693
|
designSystemVersionId?: string | undefined;
|
|
149692
149694
|
brandId?: string | undefined;
|
|
@@ -149698,6 +149700,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
149698
149700
|
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
149699
149701
|
}, {
|
|
149700
149702
|
status?: "Timeout" | "InProgress" | "Success" | "Failed" | undefined;
|
|
149703
|
+
selectivePublishing?: boolean | undefined;
|
|
149701
149704
|
designSystemId?: string | undefined;
|
|
149702
149705
|
designSystemVersionId?: string | undefined;
|
|
149703
149706
|
brandId?: string | undefined;
|
package/dist/index.js
CHANGED
|
@@ -6115,7 +6115,8 @@ var ExportJobFindByFilter = ExportJob.pick({
|
|
|
6115
6115
|
brandId: true
|
|
6116
6116
|
}).extend({
|
|
6117
6117
|
destinations: _zod.z.array(ExportJobDestinationType),
|
|
6118
|
-
docsEnvironment: PublishedDocEnvironment
|
|
6118
|
+
docsEnvironment: PublishedDocEnvironment,
|
|
6119
|
+
selectivePublishing: _zod.z.boolean().optional()
|
|
6119
6120
|
}).partial();
|
|
6120
6121
|
|
|
6121
6122
|
// src/export/exporter-list-query.ts
|