mobbdev 1.0.145 → 1.0.147
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.mjs +11 -16
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5240,23 +5240,18 @@ var ProjectVulnerabilityReport = z11.object({
|
|
|
5240
5240
|
expirationOn: z11.string()
|
|
5241
5241
|
})
|
|
5242
5242
|
});
|
|
5243
|
-
var
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
}),
|
|
5255
|
-
expirationOn: z11.string()
|
|
5256
|
-
})
|
|
5257
|
-
}).array()
|
|
5243
|
+
var GetProjectsQueryZ = z11.object({
|
|
5244
|
+
organization: z11.object({
|
|
5245
|
+
id: z11.string(),
|
|
5246
|
+
projects: z11.array(
|
|
5247
|
+
z11.object({
|
|
5248
|
+
id: z11.string().uuid(),
|
|
5249
|
+
name: z11.string(),
|
|
5250
|
+
numberOfUniqueRepos: z11.number()
|
|
5251
|
+
})
|
|
5252
|
+
)
|
|
5253
|
+
})
|
|
5258
5254
|
});
|
|
5259
|
-
var GetProjectsQueryZ = z11.array(ProjectGetProjectZ);
|
|
5260
5255
|
var ProjectPageQueryResultZ = z11.object({
|
|
5261
5256
|
name: z11.string(),
|
|
5262
5257
|
id: z11.string().uuid(),
|