@supernova-studio/client 0.47.5 → 0.47.6
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 +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/payloads/workspaces/workspace-integrations.ts +10 -0
package/dist/index.mjs
CHANGED
|
@@ -4459,6 +4459,18 @@ var DTOWorkspaceIntegrationPATInput = z165.object({
|
|
|
4459
4459
|
type: IntegrationType,
|
|
4460
4460
|
token: IntegrationToken
|
|
4461
4461
|
});
|
|
4462
|
+
var DTOWorkspaceIntegrationGetGitObjectsInput = z165.object({
|
|
4463
|
+
organization: z165.string().optional(),
|
|
4464
|
+
// Azure Organization | Bitbucket Workspace slug | Gitlab Group | Github Account (User or Organization)
|
|
4465
|
+
project: z165.string().optional(),
|
|
4466
|
+
// Only for Bitbucket and Azure
|
|
4467
|
+
repository: z165.string().optional(),
|
|
4468
|
+
// For all providers. Pay attention for Gitlab, they call repositories "projects".
|
|
4469
|
+
branch: z165.string().optional(),
|
|
4470
|
+
// For all providers.
|
|
4471
|
+
user: z165.string().optional()
|
|
4472
|
+
// Only for Gitlab
|
|
4473
|
+
});
|
|
4462
4474
|
|
|
4463
4475
|
// src/api/dto/design-systems/version.ts
|
|
4464
4476
|
var DTODesignSystemVersion = z166.object({
|
|
@@ -9047,6 +9059,7 @@ export {
|
|
|
9047
9059
|
DTOUserWorkspaceMembership,
|
|
9048
9060
|
DTOUserWorkspaceMembershipsResponse,
|
|
9049
9061
|
DTOWorkspace,
|
|
9062
|
+
DTOWorkspaceIntegrationGetGitObjectsInput,
|
|
9050
9063
|
DTOWorkspaceIntegrationOauthInput,
|
|
9051
9064
|
DTOWorkspaceIntegrationPATInput,
|
|
9052
9065
|
DTOWorkspaceRole,
|