@supernova-studio/model 1.8.0 → 1.9.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 +14 -8
- package/dist/index.d.ts +14 -8
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5650,7 +5650,7 @@ var ExportJobDebugContext = z177.object({
|
|
|
5650
5650
|
concurrency: z177.number().optional(),
|
|
5651
5651
|
preloadData: z177.string().optional(),
|
|
5652
5652
|
concurrencyMode: z177.string().optional(),
|
|
5653
|
-
cacheSdk: z177.
|
|
5653
|
+
cacheSdk: z177.string().optional(),
|
|
5654
5654
|
logSdkNetwork: z177.boolean().optional(),
|
|
5655
5655
|
profilerMode: z177.string().optional()
|
|
5656
5656
|
});
|
|
@@ -5681,7 +5681,8 @@ var ExporterFunctionPayload = z178.object({
|
|
|
5681
5681
|
exportJobId: z178.string(),
|
|
5682
5682
|
exportContextId: z178.string(),
|
|
5683
5683
|
designSystemId: z178.string(),
|
|
5684
|
-
workspaceId: z178.string()
|
|
5684
|
+
workspaceId: z178.string(),
|
|
5685
|
+
exporterId: z178.string()
|
|
5685
5686
|
});
|
|
5686
5687
|
|
|
5687
5688
|
// src/export/export-jobs.ts
|
|
@@ -5745,6 +5746,7 @@ var ExportJob = z179.object({
|
|
|
5745
5746
|
createdByUserId: z179.string().optional(),
|
|
5746
5747
|
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
5747
5748
|
previewMode: z179.boolean().optional(),
|
|
5749
|
+
exportContextId: z179.string().optional().nullable(),
|
|
5748
5750
|
// Destinations
|
|
5749
5751
|
...ExportDestinationsMap.shape
|
|
5750
5752
|
});
|