@supernova-studio/client 1.90.7 → 1.92.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 +151 -1
- package/dist/index.d.ts +151 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7262,6 +7262,8 @@ var DTOCodeHistoryRepositoryFilter = z229.object({
|
|
|
7262
7262
|
var DTOCodeHistoryQuery = z229.object({
|
|
7263
7263
|
/** Filters components and usages by component package name (e.g. `@supernovaio/dm`) */
|
|
7264
7264
|
packageNames: z229.array(z229.string()).optional(),
|
|
7265
|
+
/** Filters usages by component name (e.g. `Button`, `Icon`) */
|
|
7266
|
+
componentNames: z229.array(z229.string()).optional(),
|
|
7265
7267
|
/**
|
|
7266
7268
|
* Filters usages by repository and optionally by usage package within that repository.
|
|
7267
7269
|
*
|
|
@@ -12116,6 +12118,10 @@ var DTOSandboxTemplateBuildFinished = z349.object({
|
|
|
12116
12118
|
templateId: z349.string().optional()
|
|
12117
12119
|
})
|
|
12118
12120
|
});
|
|
12121
|
+
var DTOCodeScanFinished = z349.object({
|
|
12122
|
+
type: z349.literal("CodeScanFinished"),
|
|
12123
|
+
data: DTOCodeScanListItem
|
|
12124
|
+
});
|
|
12119
12125
|
var DTOWorkspaceRoomEvent = z349.discriminatedUnion("type", [
|
|
12120
12126
|
DTOForgeProjectUpdated,
|
|
12121
12127
|
DTOForgeProjectCreated,
|
|
@@ -12124,7 +12130,8 @@ var DTOWorkspaceRoomEvent = z349.discriminatedUnion("type", [
|
|
|
12124
12130
|
DTOForgeProjectContextDeleted,
|
|
12125
12131
|
DTOSandboxTemplateVersionCreated,
|
|
12126
12132
|
DTOSandboxTemplateBuildCreated,
|
|
12127
|
-
DTOSandboxTemplateBuildFinished
|
|
12133
|
+
DTOSandboxTemplateBuildFinished,
|
|
12134
|
+
DTOCodeScanFinished
|
|
12128
12135
|
]);
|
|
12129
12136
|
|
|
12130
12137
|
// src/api/dto/figma-components/assets/download.ts
|
|
@@ -21168,6 +21175,7 @@ export {
|
|
|
21168
21175
|
DTOCodeHistoryResponse,
|
|
21169
21176
|
DTOCodeHistorySnapshot,
|
|
21170
21177
|
DTOCodeScanDeleteResponse,
|
|
21178
|
+
DTOCodeScanFinished,
|
|
21171
21179
|
DTOCodeScanListItem,
|
|
21172
21180
|
DTOCodeScanListResponse,
|
|
21173
21181
|
DTOCodeScanUploadedBy,
|