@supernova-studio/model 1.84.0 → 1.85.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 +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
|
@@ -149412,18 +149412,21 @@ declare const ExporterFunctionPayload: z$1.ZodObject<{
|
|
|
149412
149412
|
designSystemId: z$1.ZodString;
|
|
149413
149413
|
workspaceId: z$1.ZodString;
|
|
149414
149414
|
exporterId: z$1.ZodString;
|
|
149415
|
+
runnerType: z$1.ZodEnum<["High", "Low"]>;
|
|
149415
149416
|
}, "strip", z$1.ZodTypeAny, {
|
|
149416
149417
|
workspaceId: string;
|
|
149417
149418
|
designSystemId: string;
|
|
149418
149419
|
exporterId: string;
|
|
149419
149420
|
exportJobId: string;
|
|
149420
149421
|
exportContextId: string;
|
|
149422
|
+
runnerType: "High" | "Low";
|
|
149421
149423
|
}, {
|
|
149422
149424
|
workspaceId: string;
|
|
149423
149425
|
designSystemId: string;
|
|
149424
149426
|
exporterId: string;
|
|
149425
149427
|
exportJobId: string;
|
|
149426
149428
|
exportContextId: string;
|
|
149429
|
+
runnerType: "High" | "Low";
|
|
149427
149430
|
}>;
|
|
149428
149431
|
type ExporterFunctionPayload = z$1.infer<typeof ExporterFunctionPayload>;
|
|
149429
149432
|
|
package/dist/index.d.ts
CHANGED
|
@@ -149412,18 +149412,21 @@ declare const ExporterFunctionPayload: z$1.ZodObject<{
|
|
|
149412
149412
|
designSystemId: z$1.ZodString;
|
|
149413
149413
|
workspaceId: z$1.ZodString;
|
|
149414
149414
|
exporterId: z$1.ZodString;
|
|
149415
|
+
runnerType: z$1.ZodEnum<["High", "Low"]>;
|
|
149415
149416
|
}, "strip", z$1.ZodTypeAny, {
|
|
149416
149417
|
workspaceId: string;
|
|
149417
149418
|
designSystemId: string;
|
|
149418
149419
|
exporterId: string;
|
|
149419
149420
|
exportJobId: string;
|
|
149420
149421
|
exportContextId: string;
|
|
149422
|
+
runnerType: "High" | "Low";
|
|
149421
149423
|
}, {
|
|
149422
149424
|
workspaceId: string;
|
|
149423
149425
|
designSystemId: string;
|
|
149424
149426
|
exporterId: string;
|
|
149425
149427
|
exportJobId: string;
|
|
149426
149428
|
exportContextId: string;
|
|
149429
|
+
runnerType: "High" | "Low";
|
|
149427
149430
|
}>;
|
|
149428
149431
|
type ExporterFunctionPayload = z$1.infer<typeof ExporterFunctionPayload>;
|
|
149429
149432
|
|
package/dist/index.js
CHANGED
|
@@ -6575,7 +6575,8 @@ var ExporterFunctionPayload = _zod.z.object({
|
|
|
6575
6575
|
exportContextId: _zod.z.string(),
|
|
6576
6576
|
designSystemId: _zod.z.string(),
|
|
6577
6577
|
workspaceId: _zod.z.string(),
|
|
6578
|
-
exporterId: _zod.z.string()
|
|
6578
|
+
exporterId: _zod.z.string(),
|
|
6579
|
+
runnerType: _zod.z.enum(["High", "Low"])
|
|
6579
6580
|
});
|
|
6580
6581
|
|
|
6581
6582
|
// src/export/export-jobs.ts
|