Skip to content

Commit 3bf9d9d

Browse files
Add generated schema files
1 parent bcbc11f commit 3bf9d9d

File tree

9 files changed

+42
-0
lines changed

9 files changed

+42
-0
lines changed

docs/snippets/schemas/v3/bitbucket.schema.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@
6363
"default": "cloud",
6464
"description": "The type of Bitbucket deployment"
6565
},
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`."
70+
},
6671
"workspaces": {
6772
"type": "array",
6873
"items": {

docs/snippets/schemas/v3/connection.schema.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,11 @@
740740
"default": "cloud",
741741
"description": "The type of Bitbucket deployment"
742742
},
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`."
747+
},
743748
"workspaces": {
744749
"type": "array",
745750
"items": {

docs/snippets/schemas/v3/index.schema.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,11 @@
11551155
"default": "cloud",
11561156
"description": "The type of Bitbucket deployment"
11571157
},
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`."
1162+
},
11581163
"workspaces": {
11591164
"type": "array",
11601165
"items": {

packages/schemas/src/v3/bitbucket.schema.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ const schema = {
6262
"default": "cloud",
6363
"description": "The type of Bitbucket deployment"
6464
},
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`."
69+
},
6570
"workspaces": {
6671
"type": "array",
6772
"items": {

packages/schemas/src/v3/bitbucket.type.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ export interface BitbucketConnectionConfig {
3333
* The type of Bitbucket deployment
3434
*/
3535
deploymentType?: "cloud" | "server";
36+
/**
37+
* 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;
3640
/**
3741
* List of workspaces to sync. Ignored if deploymentType is server.
3842
*/

packages/schemas/src/v3/connection.schema.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,11 @@ const schema = {
739739
"default": "cloud",
740740
"description": "The type of Bitbucket deployment"
741741
},
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`."
746+
},
742747
"workspaces": {
743748
"type": "array",
744749
"items": {

packages/schemas/src/v3/connection.type.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,10 @@ export interface BitbucketConnectionConfig {
284284
* The type of Bitbucket deployment
285285
*/
286286
deploymentType?: "cloud" | "server";
287+
/**
288+
* 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;
287291
/**
288292
* List of workspaces to sync. Ignored if deploymentType is server.
289293
*/

packages/schemas/src/v3/index.schema.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,11 @@ const schema = {
11541154
"default": "cloud",
11551155
"description": "The type of Bitbucket deployment"
11561156
},
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`."
1161+
},
11571162
"workspaces": {
11581163
"type": "array",
11591164
"items": {

packages/schemas/src/v3/index.type.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,10 @@ export interface BitbucketConnectionConfig {
482482
* The type of Bitbucket deployment
483483
*/
484484
deploymentType?: "cloud" | "server";
485+
/**
486+
* 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;
485489
/**
486490
* List of workspaces to sync. Ignored if deploymentType is server.
487491
*/

0 commit comments

Comments
 (0)