@supernova-studio/model 1.77.1 → 1.77.2
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
|
@@ -149171,18 +149171,21 @@ declare const ExporterFunctionPayload: z$1.ZodObject<{
|
|
|
149171
149171
|
designSystemId: z$1.ZodString;
|
|
149172
149172
|
workspaceId: z$1.ZodString;
|
|
149173
149173
|
exporterId: z$1.ZodString;
|
|
149174
|
+
runnerType: z$1.ZodEnum<["High", "Low"]>;
|
|
149174
149175
|
}, "strip", z$1.ZodTypeAny, {
|
|
149175
149176
|
workspaceId: string;
|
|
149176
149177
|
designSystemId: string;
|
|
149177
149178
|
exporterId: string;
|
|
149178
149179
|
exportJobId: string;
|
|
149179
149180
|
exportContextId: string;
|
|
149181
|
+
runnerType: "High" | "Low";
|
|
149180
149182
|
}, {
|
|
149181
149183
|
workspaceId: string;
|
|
149182
149184
|
designSystemId: string;
|
|
149183
149185
|
exporterId: string;
|
|
149184
149186
|
exportJobId: string;
|
|
149185
149187
|
exportContextId: string;
|
|
149188
|
+
runnerType: "High" | "Low";
|
|
149186
149189
|
}>;
|
|
149187
149190
|
type ExporterFunctionPayload = z$1.infer<typeof ExporterFunctionPayload>;
|
|
149188
149191
|
|
package/dist/index.d.ts
CHANGED
|
@@ -149171,18 +149171,21 @@ declare const ExporterFunctionPayload: z$1.ZodObject<{
|
|
|
149171
149171
|
designSystemId: z$1.ZodString;
|
|
149172
149172
|
workspaceId: z$1.ZodString;
|
|
149173
149173
|
exporterId: z$1.ZodString;
|
|
149174
|
+
runnerType: z$1.ZodEnum<["High", "Low"]>;
|
|
149174
149175
|
}, "strip", z$1.ZodTypeAny, {
|
|
149175
149176
|
workspaceId: string;
|
|
149176
149177
|
designSystemId: string;
|
|
149177
149178
|
exporterId: string;
|
|
149178
149179
|
exportJobId: string;
|
|
149179
149180
|
exportContextId: string;
|
|
149181
|
+
runnerType: "High" | "Low";
|
|
149180
149182
|
}, {
|
|
149181
149183
|
workspaceId: string;
|
|
149182
149184
|
designSystemId: string;
|
|
149183
149185
|
exporterId: string;
|
|
149184
149186
|
exportJobId: string;
|
|
149185
149187
|
exportContextId: string;
|
|
149188
|
+
runnerType: "High" | "Low";
|
|
149186
149189
|
}>;
|
|
149187
149190
|
type ExporterFunctionPayload = z$1.infer<typeof ExporterFunctionPayload>;
|
|
149188
149191
|
|
package/dist/index.js
CHANGED
|
@@ -6566,7 +6566,8 @@ var ExporterFunctionPayload = _zod.z.object({
|
|
|
6566
6566
|
exportContextId: _zod.z.string(),
|
|
6567
6567
|
designSystemId: _zod.z.string(),
|
|
6568
6568
|
workspaceId: _zod.z.string(),
|
|
6569
|
-
exporterId: _zod.z.string()
|
|
6569
|
+
exporterId: _zod.z.string(),
|
|
6570
|
+
runnerType: _zod.z.enum(["High", "Low"])
|
|
6570
6571
|
});
|
|
6571
6572
|
|
|
6572
6573
|
// src/export/export-jobs.ts
|