You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
- Added `wa_user_created` PostHog event fired on successful user sign-up. [#933](https://github.com/sourcebot-dev/sourcebot/pull/933)
15
15
- Added `wa_askgh_login_wall_prompted` PostHog event fired when an unauthenticated user attempts to ask a question on Ask GitHub. [#933](https://github.com/sourcebot-dev/sourcebot/pull/933)
16
16
- Added Bitbucket Server (Data Center) OAuth 2.0 SSO identity provider support (`provider: "bitbucket-server"`). [#934](https://github.com/sourcebot-dev/sourcebot/pull/934)
17
+
- Added Bitbucket Server (Data Center) sync all repositories support. [#927](https://github.com/sourcebot-dev/sourcebot/pull/927)
17
18
- Added permission syncing support for Bitbucket Server (Data Center), including account-driven and repo-driven sync. [#938](https://github.com/sourcebot-dev/sourcebot/pull/938)
Copy file name to clipboardExpand all lines: docs/snippets/schemas/v3/bitbucket.schema.mdx
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,11 @@
67
67
"default": "cloud",
68
68
"description": "The type of Bitbucket deployment"
69
69
},
70
+
"all": {
71
+
"type": "boolean",
72
+
"default": false,
73
+
"description": "Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`."
Copy file name to clipboardExpand all lines: docs/snippets/schemas/v3/connection.schema.mdx
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -744,6 +744,11 @@
744
744
"default": "cloud",
745
745
"description": "The type of Bitbucket deployment"
746
746
},
747
+
"all": {
748
+
"type": "boolean",
749
+
"default": false,
750
+
"description": "Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`."
Copy file name to clipboardExpand all lines: docs/snippets/schemas/v3/index.schema.mdx
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1159,6 +1159,11 @@
1159
1159
"default": "cloud",
1160
1160
"description": "The type of Bitbucket deployment"
1161
1161
},
1162
+
"all": {
1163
+
"type": "boolean",
1164
+
"default": false,
1165
+
"description": "Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`."
Copy file name to clipboardExpand all lines: packages/schemas/src/v3/bitbucket.schema.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,11 @@ const schema = {
66
66
"default": "cloud",
67
67
"description": "The type of Bitbucket deployment"
68
68
},
69
+
"all": {
70
+
"type": "boolean",
71
+
"default": false,
72
+
"description": "Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`."
* Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`.
42
+
*/
43
+
all?: boolean;
40
44
/**
41
45
* List of workspaces to sync. Ignored if deploymentType is server.
Copy file name to clipboardExpand all lines: packages/schemas/src/v3/connection.schema.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -743,6 +743,11 @@ const schema = {
743
743
"default": "cloud",
744
744
"description": "The type of Bitbucket deployment"
745
745
},
746
+
"all": {
747
+
"type": "boolean",
748
+
"default": false,
749
+
"description": "Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`."
* Sync all repositories visible to the provided `token` (if any) in the Bitbucket Server instance. This option is ignored if `deploymentType` is `cloud`.
293
+
*/
294
+
all?: boolean;
291
295
/**
292
296
* List of workspaces to sync. Ignored if deploymentType is server.
0 commit comments