@supernova-studio/client 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.js +6 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6215,7 +6215,8 @@ var ExporterFunctionPayload = _zod.z.object({
|
|
|
6215
6215
|
exportContextId: _zod.z.string(),
|
|
6216
6216
|
designSystemId: _zod.z.string(),
|
|
6217
6217
|
workspaceId: _zod.z.string(),
|
|
6218
|
-
exporterId: _zod.z.string()
|
|
6218
|
+
exporterId: _zod.z.string(),
|
|
6219
|
+
runnerType: _zod.z.enum(["High", "Low"])
|
|
6219
6220
|
});
|
|
6220
6221
|
|
|
6221
6222
|
// ../model/src/export/export-jobs.ts
|
|
@@ -13064,14 +13065,10 @@ var DesignSystemCodeSnapshotsEndpoint = class {
|
|
|
13064
13065
|
});
|
|
13065
13066
|
}
|
|
13066
13067
|
finalize(snapshotId, body) {
|
|
13067
|
-
return this.requestExecutor.json(
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
-
method: "POST",
|
|
13072
|
-
body
|
|
13073
|
-
}
|
|
13074
|
-
);
|
|
13068
|
+
return this.requestExecutor.json(`/code-snapshots/${snapshotId}/finalize`, DTOCodeSnapshotFinalizeResponse, {
|
|
13069
|
+
method: "POST",
|
|
13070
|
+
body
|
|
13071
|
+
});
|
|
13075
13072
|
}
|
|
13076
13073
|
startProcessingRun(body) {
|
|
13077
13074
|
return this.requestExecutor.json(`/code-snapshots/process-run`, DTOCodeSnapshotProcessingRunResponse, {
|