@supernova-studio/model 1.8.0 → 1.8.1
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
|
@@ -151635,14 +151635,17 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
151635
151635
|
exportContextId: z.ZodString;
|
|
151636
151636
|
designSystemId: z.ZodString;
|
|
151637
151637
|
workspaceId: z.ZodString;
|
|
151638
|
+
exporterId: z.ZodString;
|
|
151638
151639
|
}, "strip", z.ZodTypeAny, {
|
|
151639
151640
|
designSystemId: string;
|
|
151640
151641
|
workspaceId: string;
|
|
151642
|
+
exporterId: string;
|
|
151641
151643
|
exportJobId: string;
|
|
151642
151644
|
exportContextId: string;
|
|
151643
151645
|
}, {
|
|
151644
151646
|
designSystemId: string;
|
|
151645
151647
|
workspaceId: string;
|
|
151648
|
+
exporterId: string;
|
|
151646
151649
|
exportJobId: string;
|
|
151647
151650
|
exportContextId: string;
|
|
151648
151651
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -151635,14 +151635,17 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
151635
151635
|
exportContextId: z.ZodString;
|
|
151636
151636
|
designSystemId: z.ZodString;
|
|
151637
151637
|
workspaceId: z.ZodString;
|
|
151638
|
+
exporterId: z.ZodString;
|
|
151638
151639
|
}, "strip", z.ZodTypeAny, {
|
|
151639
151640
|
designSystemId: string;
|
|
151640
151641
|
workspaceId: string;
|
|
151642
|
+
exporterId: string;
|
|
151641
151643
|
exportJobId: string;
|
|
151642
151644
|
exportContextId: string;
|
|
151643
151645
|
}, {
|
|
151644
151646
|
designSystemId: string;
|
|
151645
151647
|
workspaceId: string;
|
|
151648
|
+
exporterId: string;
|
|
151646
151649
|
exportJobId: string;
|
|
151647
151650
|
exportContextId: string;
|
|
151648
151651
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -5681,7 +5681,8 @@ var ExporterFunctionPayload = _zod.z.object({
|
|
|
5681
5681
|
exportJobId: _zod.z.string(),
|
|
5682
5682
|
exportContextId: _zod.z.string(),
|
|
5683
5683
|
designSystemId: _zod.z.string(),
|
|
5684
|
-
workspaceId: _zod.z.string()
|
|
5684
|
+
workspaceId: _zod.z.string(),
|
|
5685
|
+
exporterId: _zod.z.string()
|
|
5685
5686
|
});
|
|
5686
5687
|
|
|
5687
5688
|
// src/export/export-jobs.ts
|