@supernova-studio/client 0.47.5 → 0.47.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/client",
3
- "version": "0.47.5",
3
+ "version": "0.47.7",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -14,3 +14,13 @@ export const DTOWorkspaceIntegrationPATInput = z.object({
14
14
  });
15
15
 
16
16
  export type DTOWorkspaceIntegrationPATInput = z.infer<typeof DTOWorkspaceIntegrationPATInput>;
17
+
18
+ export const DTOWorkspaceIntegrationGetGitObjectsInput = z.object({
19
+ organization: z.string().optional(), // Azure Organization | Bitbucket Workspace slug | Gitlab Group | Github Account (User or Organization)
20
+ project: z.string().optional(), // Only for Bitbucket and Azure
21
+ repository: z.string().optional(), // For all providers. Pay attention for Gitlab, they call repositories "projects".
22
+ branch: z.string().optional(), // For all providers.
23
+ user: z.string().optional(), // Only for Gitlab
24
+ });
25
+
26
+ export type DTOWorkspaceIntegrationGetGitObjectsInput = z.infer<typeof DTOWorkspaceIntegrationGetGitObjectsInput>;