@supernova-studio/client 1.90.7 → 1.91.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 +147 -1
- package/dist/index.d.ts +147 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12116,6 +12116,10 @@ var DTOSandboxTemplateBuildFinished = z349.object({
|
|
|
12116
12116
|
templateId: z349.string().optional()
|
|
12117
12117
|
})
|
|
12118
12118
|
});
|
|
12119
|
+
var DTOCodeScanFinished = z349.object({
|
|
12120
|
+
type: z349.literal("CodeScanFinished"),
|
|
12121
|
+
data: DTOCodeScanListItem
|
|
12122
|
+
});
|
|
12119
12123
|
var DTOWorkspaceRoomEvent = z349.discriminatedUnion("type", [
|
|
12120
12124
|
DTOForgeProjectUpdated,
|
|
12121
12125
|
DTOForgeProjectCreated,
|
|
@@ -12124,7 +12128,8 @@ var DTOWorkspaceRoomEvent = z349.discriminatedUnion("type", [
|
|
|
12124
12128
|
DTOForgeProjectContextDeleted,
|
|
12125
12129
|
DTOSandboxTemplateVersionCreated,
|
|
12126
12130
|
DTOSandboxTemplateBuildCreated,
|
|
12127
|
-
DTOSandboxTemplateBuildFinished
|
|
12131
|
+
DTOSandboxTemplateBuildFinished,
|
|
12132
|
+
DTOCodeScanFinished
|
|
12128
12133
|
]);
|
|
12129
12134
|
|
|
12130
12135
|
// src/api/dto/figma-components/assets/download.ts
|
|
@@ -21168,6 +21173,7 @@ export {
|
|
|
21168
21173
|
DTOCodeHistoryResponse,
|
|
21169
21174
|
DTOCodeHistorySnapshot,
|
|
21170
21175
|
DTOCodeScanDeleteResponse,
|
|
21176
|
+
DTOCodeScanFinished,
|
|
21171
21177
|
DTOCodeScanListItem,
|
|
21172
21178
|
DTOCodeScanListResponse,
|
|
21173
21179
|
DTOCodeScanUploadedBy,
|