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: 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
@@ -63,6 +63,11 @@
63
63
"default": "cloud",
64
64
"description": "The type of Bitbucket deployment"
65
65
},
66
+
"all": {
67
+
"type": "boolean",
68
+
"default": false,
69
+
"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
@@ -740,6 +740,11 @@
740
740
"default": "cloud",
741
741
"description": "The type of Bitbucket deployment"
742
742
},
743
+
"all": {
744
+
"type": "boolean",
745
+
"default": false,
746
+
"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
@@ -1155,6 +1155,11 @@
1155
1155
"default": "cloud",
1156
1156
"description": "The type of Bitbucket deployment"
1157
1157
},
1158
+
"all": {
1159
+
"type": "boolean",
1160
+
"default": false,
1161
+
"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
@@ -62,6 +62,11 @@ const schema = {
62
62
"default": "cloud",
63
63
"description": "The type of Bitbucket deployment"
64
64
},
65
+
"all": {
66
+
"type": "boolean",
67
+
"default": false,
68
+
"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`.
38
+
*/
39
+
all?: boolean;
36
40
/**
37
41
* 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
@@ -739,6 +739,11 @@ const schema = {
739
739
"default": "cloud",
740
740
"description": "The type of Bitbucket deployment"
741
741
},
742
+
"all": {
743
+
"type": "boolean",
744
+
"default": false,
745
+
"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`.
289
+
*/
290
+
all?: boolean;
287
291
/**
288
292
* List of workspaces to sync. Ignored if deploymentType is server.
Copy file name to clipboardExpand all lines: packages/schemas/src/v3/index.schema.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1154,6 +1154,11 @@ const schema = {
1154
1154
"default": "cloud",
1155
1155
"description": "The type of Bitbucket deployment"
1156
1156
},
1157
+
"all": {
1158
+
"type": "boolean",
1159
+
"default": false,
1160
+
"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`.
487
+
*/
488
+
all?: boolean;
485
489
/**
486
490
* List of workspaces to sync. Ignored if deploymentType is server.
0 commit comments