/issues/import\n```",
"summary": "Import issues",
"responses": {
"202": {
@@ -6213,6 +7383,18 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/issue_job_status"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "issue_job_status",
+ "status": "ACCEPTED",
+ "phase": "Attachments",
+ "total": 15,
+ "count": 0,
+ "percent": 0
+ }
+ }
}
}
}
@@ -6711,7 +7893,7 @@
"/repositories/{workspace}/{repo_slug}/issues/{issue_id}/changes": {
"get": {
"tags": ["Issue tracker"],
- "description": "Returns the list of all changes that have been made to the specified\nissue. Changes are returned in chronological order with the oldest\nchange first.\n\nEach time an issue is edited in the UI or through the API, an immutable\nchange record is created under the `/issues/123/changes` endpoint. It\nalso has a comment associated with the change.\n\nNote that this operation is changing significantly, due to privacy changes.\nSee the [announcement](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/#changes-to-the-issue-changes-api)\nfor details.\n\n```\n$ curl -s https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/issues/1/changes - | jq .\n\n{\n \"pagelen\": 20,\n \"values\": [\n {\n \"changes\": {\n \"priority\": {\n \"new\": \"trivial\",\n \"old\": \"major\"\n },\n \"assignee\": {\n \"new\": \"\",\n \"old\": \"evzijst\"\n },\n \"assignee_account_id\": {\n \"new\": \"\",\n \"old\": \"557058:c0b72ad0-1cb5-4018-9cdc-0cde8492c443\"\n },\n \"kind\": {\n \"new\": \"enhancement\",\n \"old\": \"bug\"\n }\n },\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/issues/1/changes/2\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/evzijst/dogslow/issues/1#comment-2\"\n }\n },\n \"issue\": {\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/issues/1\"\n }\n },\n \"type\": \"issue\",\n \"id\": 1,\n \"repository\": {\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/evzijst/dogslow\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/evzijst/dogslow\"\n },\n \"avatar\": {\n \"href\": \"https://bitbucket.org/evzijst/dogslow/avatar/32/\"\n }\n },\n \"type\": \"repository\",\n \"name\": \"dogslow\",\n \"full_name\": \"evzijst/dogslow\",\n \"uuid\": \"{988b17c6-1a47-4e70-84ee-854d5f012bf6}\"\n },\n \"title\": \"Updated title\"\n },\n \"created_on\": \"2018-03-03T00:35:28.353630+00:00\",\n \"user\": {\n \"username\": \"evzijst\",\n \"nickname\": \"evzijst\",\n \"display_name\": \"evzijst\",\n \"type\": \"user\",\n \"uuid\": \"{aaa7972b-38af-4fb1-802d-6e3854c95778}\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/evzijst\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/evzijst/\"\n },\n \"avatar\": {\n \"href\": \"https://bitbucket.org/account/evzijst/avatar/32/\"\n }\n }\n },\n \"message\": {\n \"raw\": \"Removed assignee, changed kind and priority.\",\n \"markup\": \"markdown\",\n \"html\": \"Removed assignee, changed kind and priority.
\",\n \"type\": \"rendered\"\n },\n \"type\": \"issue_change\",\n \"id\": 2\n }\n ],\n \"page\": 1\n}\n```\n\nChanges support [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) that\ncan be used to search for specific changes. For instance, to see\nwhen an issue transitioned to \"resolved\":\n\n```\n$ curl -s https://api.bitbucket.org/2.0/repositories/site/master/issues/1/changes \\\n -G --data-urlencode='q=changes.state.new = \"resolved\"'\n```\n\nThis resource is only available on repositories that have the issue\ntracker enabled.\n\nN.B.\n\nThe `changes.assignee` and `changes.assignee_account_id` fields are not\na `user` object. Instead, they contain the raw `username` and\n`account_id` of the user. This is to protect the integrity of the audit\nlog even after a user account gets deleted.\n\nThe `changes.assignee` field is deprecated will disappear in the\nfuture. Use `changes.assignee_account_id` instead.",
+ "description": "Returns the list of all changes that have been made to the specified\nissue. Changes are returned in chronological order with the oldest\nchange first.\n\nEach time an issue is edited in the UI or through the API, an immutable\nchange record is created under the `/issues/123/changes` endpoint. It\nalso has a comment associated with the change.\n\nNote that this operation is changing significantly, due to privacy changes.\nSee the [announcement](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/#changes-to-the-issue-changes-api)\nfor details.\n\nChanges support [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) that\ncan be used to search for specific changes. For instance, to see\nwhen an issue transitioned to \"resolved\":\n\n```\n$ curl -s https://api.bitbucket.org/2.0/repositories/site/master/issues/1/changes \\\n -G --data-urlencode='q=changes.state.new = \"resolved\"'\n```\n\nThis resource is only available on repositories that have the issue\ntracker enabled.\n\nN.B.\n\nThe `changes.assignee` and `changes.assignee_account_id` fields are not\na `user` object. Instead, they contain the raw `username` and\n`account_id` of the user. This is to protect the integrity of the audit\nlog even after a user account gets deleted.\n\nThe `changes.assignee` field is deprecated will disappear in the\nfuture. Use `changes.assignee_account_id` instead.",
"summary": "List changes on an issue",
"responses": {
"200": {
@@ -6720,6 +7902,98 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_log_entries"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 20,
+ "values": [
+ {
+ "changes": {
+ "priority": {
+ "new": "trivial",
+ "old": "major"
+ },
+ "assignee": {
+ "new": "",
+ "old": "evzijst"
+ },
+ "assignee_account_id": {
+ "new": "",
+ "old": "557058:c0b72ad0-1cb5-4018-9cdc-0cde8492c443"
+ },
+ "kind": {
+ "new": "enhancement",
+ "old": "bug"
+ }
+ },
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/issues/1/changes/2"
+ },
+ "html": {
+ "href": "https://bitbucket.org/evzijst/dogslow/issues/1#comment-2"
+ }
+ },
+ "issue": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow/issues/1"
+ }
+ },
+ "type": "issue",
+ "id": 1,
+ "repository": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/evzijst/dogslow"
+ },
+ "html": {
+ "href": "https://bitbucket.org/evzijst/dogslow"
+ },
+ "avatar": {
+ "href": "https://bitbucket.org/evzijst/dogslow/avatar/32/"
+ }
+ },
+ "type": "repository",
+ "name": "dogslow",
+ "full_name": "evzijst/dogslow",
+ "uuid": "{988b17c6-1a47-4e70-84ee-854d5f012bf6}"
+ },
+ "title": "Updated title"
+ },
+ "created_on": "2018-03-03T00:35:28.353630+00:00",
+ "user": {
+ "username": "evzijst",
+ "nickname": "evzijst",
+ "display_name": "evzijst",
+ "type": "user",
+ "uuid": "{aaa7972b-38af-4fb1-802d-6e3854c95778}",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/evzijst"
+ },
+ "html": {
+ "href": "https://bitbucket.org/evzijst/"
+ },
+ "avatar": {
+ "href": "https://bitbucket.org/account/evzijst/avatar/32/"
+ }
+ }
+ },
+ "message": {
+ "raw": "Removed assignee, changed kind and priority.",
+ "markup": "markdown",
+ "html": "Removed assignee, changed kind and priority.
",
+ "type": "rendered"
+ },
+ "type": "issue_change",
+ "id": 2
+ }
+ ],
+ "page": 1
+ }
+ }
}
}
}
@@ -7597,6 +8871,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -7795,6 +9076,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:repository:bitbucket"]
+ }
]
},
"put": {
@@ -7826,6 +9114,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -7879,6 +9174,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -7914,7 +9216,7 @@
"/repositories/{workspace}/{repo_slug}/permissions-config/groups": {
"get": {
"tags": ["Repositories"],
- "description": "Returns a paginated list of explicit group permissions for the given repository.\nThis endpoint does not support BBQL features.\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups\n\nHTTP/1.1 200\nLocation: https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"type\": \"repository_group_permission\",\n \"group\": {\n \"type\": \"group\",\n \"name\": \"Administrators\",\n \"slug\": \"administrators\"\n },\n \"permission\": \"admin\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/\n geordi/permissions-config/groups/administrators\"\n }\n }\n },\n {\n \"type\": \"repository_group_permission\",\n \"group\": {\n \"type\": \"group\",\n \"name\": \"Developers\",\n \"slug\": \"developers\"\n },\n \"permission\": \"read\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/\n geordi/permissions-config/groups/developers\"\n }\n }\n }\n ],\n \"page\": 1,\n \"size\": 2\n}\n```",
+ "description": "Returns a paginated list of explicit group permissions for the given repository.\nThis endpoint does not support BBQL features.",
"summary": "List explicit group permissions for a repository",
"responses": {
"200": {
@@ -7923,6 +9225,45 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_repository_group_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "repository_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Administrators",
+ "slug": "administrators"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/administrators"
+ }
+ }
+ },
+ {
+ "type": "repository_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Developers",
+ "slug": "developers"
+ },
+ "permission": "read",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers"
+ }
+ }
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
}
}
}
@@ -7968,6 +9309,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -7994,7 +9342,7 @@
"/repositories/{workspace}/{repo_slug}/permissions-config/groups/{group_slug}": {
"delete": {
"tags": ["Repositories"],
- "description": "Deletes the repository group permission between the requested repository and group, if one exists.\n\nOnly users with admin permission for the repository may access this resource.\n\nExample:\n\n$ curl -X DELETE https://api.bitbucket.org/2.0/repositories/atlassian_tutorial\n/geordi/permissions-config/groups/developers\n\n\nHTTP/1.1 204",
+ "description": "Deletes the repository group permission between the requested repository and group, if one exists.\n\nOnly users with admin permission for the repository may access this resource.",
"summary": "Delete an explicit group permission for a repository",
"responses": {
"204": {
@@ -8021,7 +9369,7 @@
}
},
"404": {
- "description": "The workspace does not exist, the repository does not exist,or the group does not exist.",
+ "description": "The workspace does not exist, the repository does not exist, or the group does not exist.",
"content": {
"application/json": {
"schema": {
@@ -8045,7 +9393,7 @@
},
"get": {
"tags": ["Repositories"],
- "description": "Returns the group permission for a given group slug and repository\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n* `none`\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\n\nHTTP/1.1 200\nLocation:\nhttps://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\n\n{\n \"type\": \"repository_group_permission\",\n \"group\": {\n \"type\": \"group\",\n \"name\": \"Developers\",\n \"slug\": \"developers\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"read\",\n \"links\": {\n \"self\": {\n \"href\":\n \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\"\n }\n }\n}\n```",
+ "description": "Returns the group permission for a given group slug and repository\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n* `none`",
"summary": "Get an explicit group permission for a repository",
"responses": {
"200": {
@@ -8054,6 +9402,25 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/repository_group_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "repository_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Developers",
+ "slug": "developers",
+ "full_slug": "atlassian_tutorial:developers"
+ },
+ "permission": "read",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers"
+ }
+ }
+ }
+ }
}
}
}
@@ -8099,11 +9466,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"put": {
"tags": ["Repositories"],
- "description": "Updates the group permission if it exists.\n\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method supported for this endpoint is via app passwords.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nExample:\n```\n$ curl -X PUT -H \"Content-Type: application/json\"\nhttps://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\n-d\n'{\n \"permission\": \"write\"\n}'\n\nHTTP/1.1 200\nLocation:\nhttps://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\n\n{\n \"type\": \"repository_group_permission\",\n \"group\": {\n \"type\": \"group\",\n \"name\": \"Developers\",\n \"slug\": \"developers\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"write\",\n \"links\": {\n \"self\": {\n \"href\":\n \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers\"\n }\n }\n}\n```",
+ "description": "Updates the group permission, or grants a new permission if one does not already exist.\n\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method supported for this endpoint is via app passwords.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`",
"summary": "Update an explicit group permission for a repository",
"responses": {
"200": {
@@ -8112,6 +9486,25 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/repository_group_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "repository_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Developers",
+ "slug": "developers",
+ "full_slug": "atlassian_tutorial:developers"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/groups/developers"
+ }
+ }
+ }
+ }
}
}
}
@@ -8157,7 +9550,7 @@
}
},
"404": {
- "description": "The workspace does not exist, the repository does not exist,or the group does not exist.",
+ "description": "The workspace does not exist, the repository does not exist, or the group does not exist.",
"content": {
"application/json": {
"schema": {
@@ -8167,6 +9560,9 @@
}
}
},
+ "requestBody": {
+ "$ref": "#/components/requestBodies/bitbucket.apps.permissions.serializers.RepoPermissionUpdateSchema"
+ },
"security": [
{
"oauth2": ["repository:admin"]
@@ -8212,7 +9608,7 @@
"/repositories/{workspace}/{repo_slug}/permissions-config/users": {
"get": {
"tags": ["Repositories"],
- "description": "Returns a paginated list of explicit user permissions for the given repository.\nThis endpoint does not support BBQL features.\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/users\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"type\": \"repository_user_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Colin Cameron\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\",\n \"account_id\": \"557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n },\n \"permission\": \"admin\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n }\n }\n },\n {\n \"type\": \"repository_user_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Sean Conaty\",\n \"uuid\": \"{504c3b62-8120-4f0c-a7bc-87800b9d6f70}\",\n \"account_id\": \"557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c\"\n },\n \"permission\": \"write\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0//repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c\"\n }\n }\n }\n ],\n \"page\": 1,\n \"size\": 2\n}\n```",
+ "description": "Returns a paginated list of explicit user permissions for the given repository.\nThis endpoint does not support BBQL features.",
"summary": "List explicit user permissions for a repository",
"responses": {
"200": {
@@ -8221,6 +9617,47 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_repository_user_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "repository_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ },
+ {
+ "type": "repository_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Sean Conaty",
+ "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0//repositories/atlassian_tutorial/geordi/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c"
+ }
+ }
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
}
}
}
@@ -8266,6 +9703,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -8292,7 +9736,7 @@
"/repositories/{workspace}/{repo_slug}/permissions-config/users/{selected_user_id}": {
"delete": {
"tags": ["Repositories"],
- "description": "Deletes the repository user permission between the requested repository and user, if one exists.\n\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method for this endpoint is via app passwords.\n\n```\n$ curl -X DELETE https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\npermissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\n\n\nHTTP/1.1 204\n```",
+ "description": "Deletes the repository user permission between the requested repository and user, if one exists.\n\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method for this endpoint is via app passwords.",
"summary": "Delete an explicit user permission for a repository",
"responses": {
"204": {
@@ -8343,7 +9787,7 @@
},
"get": {
"tags": ["Repositories"],
- "description": "Returns the explicit user permission for a given user and repository.\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n* `none`\n\nExample:\n\n```\n$ curl 'https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a'\n\nHTTP/1.1 200\nLocation: 'https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a'\n\n{\n \"type\": \"repository_user_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Colin Cameron\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\",\n \"account_id\": \"557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"admin\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n }\n }\n}\n```",
+ "description": "Returns the explicit user permission for a given user and repository.\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n* `none`",
"summary": "Get an explicit user permission for a repository",
"responses": {
"200": {
@@ -8352,6 +9796,26 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/repository_user_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "repository_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a",
+ "nickname": "Colin Cameron"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ }
+ }
}
}
}
@@ -8397,11 +9861,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"put": {
"tags": ["Repositories"],
- "description": "Updates the explicit user permission for a given user and repository. The selected user must be a member of\nthe workspace, and cannot be the workspace owner.\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method for this endpoint is via app passwords.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nExample:\n\n```\n$ curl -X PUT -H \"Content-Type: application/json\" 'https://api.bitbucket.org/2.0/repositories/\natlassian_tutorial/geordi/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a'\n-d '{\n \"permission\": \"write\"\n}'\n\nHTTP/1.1 200\nLocation: 'https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\npermissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a'\n\n\n{\n \"type\": \"repository_user_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Colin Cameron\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\",\n \"account_id\": \"557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"write\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/\n permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a\"\n }\n }\n}\n```",
+ "description": "Updates the explicit user permission for a given user and repository. The selected user must be a member of\nthe workspace, and cannot be the workspace owner.\nOnly users with admin permission for the repository may access this resource.\n\nThe only authentication method for this endpoint is via app passwords.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`",
"summary": "Update an explicit user permission for a repository",
"responses": {
"200": {
@@ -8410,6 +9881,26 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/repository_user_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "repository_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a",
+ "nickname": "Colin Cameron"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian_tutorial/geordi/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ }
+ }
}
}
}
@@ -8465,6 +9956,9 @@
}
}
},
+ "requestBody": {
+ "$ref": "#/components/requestBodies/bitbucket.apps.permissions.serializers.RepoPermissionUpdateSchema"
+ },
"security": [
{
"oauth2": ["repository:admin"]
@@ -8507,168 +10001,7 @@
}
]
},
- "/repositories/{workspace}/{repo_slug}/pipelines-config/caches/": {
- "get": {
- "tags": ["Pipelines"],
- "summary": "List caches",
- "description": "Retrieve the repository pipelines caches.",
- "operationId": "getRepositoryPipelineCaches",
- "parameters": [
- {
- "name": "workspace",
- "description": "The account.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "repo_slug",
- "description": "The repository.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "The list of caches for the given repository.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/paginated_pipeline_caches"
- }
- }
- }
- },
- "404": {
- "description": "The account or repository was not found.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/error"
- }
- }
- }
- }
- }
- }
- },
- "/repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}": {
- "delete": {
- "tags": ["Pipelines"],
- "summary": "Delete a cache",
- "description": "Delete a repository cache.",
- "operationId": "deleteRepositoryPipelineCache",
- "parameters": [
- {
- "name": "workspace",
- "description": "The account.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "repo_slug",
- "description": "The repository.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "cache_uuid",
- "description": "The UUID of the cache to delete.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "204": {
- "description": "The cache was deleted."
- },
- "404": {
- "description": "The workspace, repository or cache_uuid with given UUID was not found.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/error"
- }
- }
- }
- }
- }
- }
- },
- "/repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}/content-uri": {
- "get": {
- "tags": ["Pipelines"],
- "summary": "Get cache content URI",
- "description": "Retrieve the URI of the content of the specified cache.",
- "operationId": "getRepositoryPipelineCacheContentURI",
- "parameters": [
- {
- "name": "workspace",
- "description": "The account.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "repo_slug",
- "description": "The repository.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "cache_uuid",
- "description": "The UUID of the cache.",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "The cache content uri.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/pipeline_cache_content_uri"
- }
- }
- }
- },
- "404": {
- "description": "The workspace, repository or cache_uuid with given UUID was not found.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/error"
- }
- }
- }
- }
- }
- }
- },
- "/repositories/{workspace}/{repo_slug}/pipelines/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines": {
"get": {
"tags": ["Pipelines"],
"summary": "List pipelines",
@@ -8705,12 +10038,30 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
"summary": "Run a pipeline",
- "description": "Endpoint to create and initiate a pipeline.\nThere are a couple of different options to initiate a pipeline, where the payload of the request will determine which type of pipeline will be instantiated.\n# Trigger a Pipeline for a branch\nOne way to trigger pipelines is by specifying the branch for which you want to trigger a pipeline.\nThe specified branch will be used to determine which pipeline definition from the `bitbucket-pipelines.yml` file will be applied to initiate the pipeline. The pipeline will then do a clone of the repository and checkout the latest revision of the specified branch.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"ref_type\": \"branch\",\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\"\n }\n }'\n```\n# Trigger a Pipeline for a commit on a branch or tag\nYou can initiate a pipeline for a specific commit and in the context of a specified reference (e.g. a branch, tag or bookmark).\nThe specified reference will be used to determine which pipeline definition from the bitbucket-pipelines.yml file will be applied to initiate the pipeline. The pipeline will clone the repository and then do a checkout the specified reference.\n\nThe following reference types are supported:\n\n* `branch`\n* `named_branch`\n* `bookmark`\n * `tag`\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"type\": \"commit\",\n \"hash\": \"ce5b7431602f7cbba007062eeb55225c6e18e956\"\n },\n \"ref_type\": \"branch\",\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\"\n }\n }'\n```\n# Trigger a specific pipeline definition for a commit\nYou can trigger a specific pipeline that is defined in your `bitbucket-pipelines.yml` file for a specific commit.\nIn addition to the commit revision, you specify the type and pattern of the selector that identifies the pipeline definition. The resulting pipeline will then clone the repository and checkout the specified revision.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"hash\":\"a3c4e02c9a3755eccdc3764e6ea13facdf30f923\",\n \"type\":\"commit\"\n },\n \"selector\": {\n \"type\":\"custom\",\n \"pattern\":\"Deploy to production\"\n },\n \"type\":\"pipeline_commit_target\"\n }\n }'\n```\n# Trigger a specific pipeline definition for a commit on a branch or tag\nYou can trigger a specific pipeline that is defined in your `bitbucket-pipelines.yml` file for a specific commit in the context of a specified reference.\nIn addition to the commit revision, you specify the type and pattern of the selector that identifies the pipeline definition, as well as the reference information. The resulting pipeline will then clone the repository a checkout the specified reference.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"hash\":\"a3c4e02c9a3755eccdc3764e6ea13facdf30f923\",\n \"type\":\"commit\"\n },\n \"selector\": {\n \"type\": \"custom\",\n \"pattern\": \"Deploy to production\"\n },\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\",\n \"ref_type\": \"branch\"\n }\n }'\n```\n\n\n# Trigger a custom pipeline with variables\nIn addition to triggering a custom pipeline that is defined in your `bitbucket-pipelines.yml` file as shown in the examples above, you can specify variables that will be available for your build. In the request, provide a list of variables, specifying the following for each variable: key, value, and whether it should be secured or not (this field is optional and defaults to not secured).\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/pipelines/ \\\n -d '\n {\n \"target\": {\n \"type\": \"pipeline_ref_target\",\n \"ref_type\": \"branch\",\n \"ref_name\": \"master\",\n \"selector\": {\n \"type\": \"custom\",\n \"pattern\": \"Deploy to production\"\n }\n },\n \"variables\": [\n {\n \"key\": \"var1key\",\n \"value\": \"var1value\",\n \"secured\": true\n },\n {\n \"key\": \"var2key\",\n \"value\": \"var2value\"\n }\n ]\n }'\n```\n\n# Trigger a pull request pipeline\n\nYou can also initiate a pipeline for a specific pull request.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/pipelines/ \\\n -d '\n {\n\t\"target\": {\n \"type\": \"pipeline_pullrequest_target\",\n\t \"source\": \"pull-request-branch\",\n \"destination\": \"master\",\n \"destination_commit\": {\n \t \"hash\" : \"9f848b7\"\n },\n \"commit\": {\n \t\"hash\" : \"1a372fc\"\n },\n \"pullrequest\" : {\n \t\"id\" : \"3\"\n },\n\t \"selector\": {\n \"type\": \"pull-requests\",\n \"pattern\": \"**\"\n }\n }\n }'\n```\n",
+ "description": "Endpoint to create and initiate a pipeline.\nThere are a couple of different options to initiate a pipeline, where the payload of the request will determine which type of pipeline will be instantiated.\n# Trigger a Pipeline for a branch\nOne way to trigger pipelines is by specifying the branch for which you want to trigger a pipeline.\nThe specified branch will be used to determine which pipeline definition from the `bitbucket-pipelines.yml` file will be applied to initiate the pipeline. The pipeline will then do a clone of the repository and checkout the latest revision of the specified branch.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"ref_type\": \"branch\",\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\"\n }\n }'\n```\n# Trigger a Pipeline for a commit on a branch or tag\nYou can initiate a pipeline for a specific commit and in the context of a specified reference (e.g. a branch, tag or bookmark).\nThe specified reference will be used to determine which pipeline definition from the bitbucket-pipelines.yml file will be applied to initiate the pipeline. The pipeline will clone the repository and then do a checkout the specified reference.\n\nThe following reference types are supported:\n\n* `branch`\n* `named_branch`\n* `bookmark`\n * `tag`\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"type\": \"commit\",\n \"hash\": \"ce5b7431602f7cbba007062eeb55225c6e18e956\"\n },\n \"ref_type\": \"branch\",\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\"\n }\n }'\n```\n# Trigger a specific pipeline definition for a commit\nYou can trigger a specific pipeline that is defined in your `bitbucket-pipelines.yml` file for a specific commit.\nIn addition to the commit revision, you specify the type and pattern of the selector that identifies the pipeline definition. The resulting pipeline will then clone the repository and checkout the specified revision.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"hash\":\"a3c4e02c9a3755eccdc3764e6ea13facdf30f923\",\n \"type\":\"commit\"\n },\n \"selector\": {\n \"type\":\"custom\",\n \"pattern\":\"Deploy to production\"\n },\n \"type\":\"pipeline_commit_target\"\n }\n }'\n```\n# Trigger a specific pipeline definition for a commit on a branch or tag\nYou can trigger a specific pipeline that is defined in your `bitbucket-pipelines.yml` file for a specific commit in the context of a specified reference.\nIn addition to the commit revision, you specify the type and pattern of the selector that identifies the pipeline definition, as well as the reference information. The resulting pipeline will then clone the repository a checkout the specified reference.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/jeroendr/meat-demo2/pipelines/ \\\n -d '\n {\n \"target\": {\n \"commit\": {\n \"hash\":\"a3c4e02c9a3755eccdc3764e6ea13facdf30f923\",\n \"type\":\"commit\"\n },\n \"selector\": {\n \"type\": \"custom\",\n \"pattern\": \"Deploy to production\"\n },\n \"type\": \"pipeline_ref_target\",\n \"ref_name\": \"master\",\n \"ref_type\": \"branch\"\n }\n }'\n```\n\n\n# Trigger a custom pipeline with variables\nIn addition to triggering a custom pipeline that is defined in your `bitbucket-pipelines.yml` file as shown in the examples above, you can specify variables that will be available for your build. In the request, provide a list of variables, specifying the following for each variable: key, value, and whether it should be secured or not (this field is optional and defaults to not secured).\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/pipelines/ \\\n -d '\n {\n \"target\": {\n \"type\": \"pipeline_ref_target\",\n \"ref_type\": \"branch\",\n \"ref_name\": \"master\",\n \"selector\": {\n \"type\": \"custom\",\n \"pattern\": \"Deploy to production\"\n }\n },\n \"variables\": [\n {\n \"key\": \"var1key\",\n \"value\": \"var1value\",\n \"secured\": true\n },\n {\n \"key\": \"var2key\",\n \"value\": \"var2value\"\n }\n ]\n }'\n```\n\n# Trigger a pull request pipeline\n\nYou can also initiate a pipeline for a specific pull request.\n\n### Example\n\n```\n$ curl -X POST -is -u username:password \\\n -H 'Content-Type: application/json' \\\n https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/pipelines/ \\\n -d '\n {\n \"target\": {\n \"type\": \"pipeline_pullrequest_target\",\n \"source\": \"pull-request-branch\",\n \"destination\": \"master\",\n \"destination_commit\": {\n \"hash\": \"9f848b7\"\n },\n \"commit\": {\n \"hash\": \"1a372fc\"\n },\n \"pullrequest\": {\n \"id\": \"3\"\n },\n \"selector\": {\n \"type\": \"pull-requests\",\n \"pattern\": \"**\"\n }\n }\n }'\n```\n",
"operationId": "createPipelineForRepository",
"parameters": [
{
@@ -8782,7 +10133,308 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket", "write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ }
+ },
+ "/repositories/{workspace}/{repo_slug}/pipelines-config/caches": {
+ "get": {
+ "tags": ["Pipelines"],
+ "summary": "List caches",
+ "description": "Retrieve the repository pipelines caches.",
+ "operationId": "getRepositoryPipelineCaches",
+ "parameters": [
+ {
+ "name": "workspace",
+ "description": "The account.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "description": "The repository.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The list of caches for the given repository.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/paginated_pipeline_caches"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "The account or repository was not found.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ },
+ "delete": {
+ "tags": ["Pipelines"],
+ "summary": "Delete caches",
+ "description": "Delete repository cache versions by name.",
+ "operationId": "deleteRepositoryPipelineCaches",
+ "parameters": [
+ {
+ "name": "workspace",
+ "description": "The account.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "description": "The repository.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "name",
+ "description": "The cache name.",
+ "required": true,
+ "in": "query",
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "204": {
+ "description": "The caches were deleted."
+ },
+ "404": {
+ "description": "The workspace, repository or cache name was not found.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ }
+ },
+ "/repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}": {
+ "delete": {
+ "tags": ["Pipelines"],
+ "summary": "Delete a cache",
+ "description": "Delete a repository cache.",
+ "operationId": "deleteRepositoryPipelineCache",
+ "parameters": [
+ {
+ "name": "workspace",
+ "description": "The account.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "description": "The repository.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "cache_uuid",
+ "description": "The UUID of the cache to delete.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "204": {
+ "description": "The cache was deleted."
+ },
+ "404": {
+ "description": "The workspace, repository or cache_uuid with given UUID was not found.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ }
+ },
+ "/repositories/{workspace}/{repo_slug}/pipelines-config/caches/{cache_uuid}/content-uri": {
+ "get": {
+ "tags": ["Pipelines"],
+ "summary": "Get cache content URI",
+ "description": "Retrieve the URI of the content of the specified cache.",
+ "operationId": "getRepositoryPipelineCacheContentURI",
+ "parameters": [
+ {
+ "name": "workspace",
+ "description": "The account.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "description": "The repository.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "cache_uuid",
+ "description": "The UUID of the cache.",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "The cache content uri.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/pipeline_cache_content_uri"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "The workspace, repository or cache_uuid with given UUID was not found.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}": {
@@ -8841,10 +10493,28 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
- "/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps": {
"get": {
"tags": ["Pipelines"],
"summary": "List steps for a pipeline",
@@ -8890,7 +10560,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}": {
@@ -8958,7 +10646,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/log": {
@@ -9039,7 +10745,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/logs/{log_uuid}": {
@@ -9109,7 +10833,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports": {
@@ -9169,7 +10911,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_cases": {
@@ -9229,7 +10989,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/steps/{step_uuid}/test_reports/test_cases/{test_case_uuid}/test_case_reasons": {
@@ -9298,7 +11076,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines/{pipeline_uuid}/stopPipeline": {
@@ -9360,7 +11156,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config": {
@@ -9400,7 +11214,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["repository:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -9449,7 +11274,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["repository:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config/build_number": {
@@ -9520,10 +11356,21 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
- "/repositories/{workspace}/{repo_slug}/pipelines_config/schedules/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines_config/schedules": {
"post": {
"tags": ["Pipelines"],
"summary": "Create a schedule",
@@ -9553,7 +11400,7 @@
"content": {
"application/json": {
"schema": {
- "$ref": "#/components/schemas/pipeline_schedule"
+ "$ref": "#/components/schemas/pipeline_schedule_post_request_body"
}
}
},
@@ -9601,7 +11448,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket", "write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"get": {
"tags": ["Pipelines"],
@@ -9649,7 +11514,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}": {
@@ -9708,7 +11591,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -9748,7 +11649,7 @@
"content": {
"application/json": {
"schema": {
- "$ref": "#/components/schemas/pipeline_schedule"
+ "$ref": "#/components/schemas/pipeline_schedule_put_request_body"
}
}
},
@@ -9776,7 +11677,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket", "write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -9826,10 +11745,28 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:write"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
- "/repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}/executions/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines_config/schedules/{schedule_uuid}/executions": {
"get": {
"tags": ["Pipelines"],
"summary": "List executions of a schedule",
@@ -9885,7 +11822,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config/ssh/key_pair": {
@@ -9935,7 +11890,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -9994,7 +11967,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -10035,10 +12019,28 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
- "/repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts": {
"get": {
"tags": ["Pipelines"],
"summary": "List known hosts",
@@ -10075,7 +12077,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
@@ -10152,7 +12172,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config/ssh/known_hosts/{known_host_uuid}": {
@@ -10211,7 +12242,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -10279,7 +12328,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -10329,10 +12389,28 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
- "/repositories/{workspace}/{repo_slug}/pipelines_config/variables/": {
+ "/repositories/{workspace}/{repo_slug}/pipelines_config/variables": {
"get": {
"tags": ["Pipelines"],
"summary": "List variables for a repository",
@@ -10369,7 +12447,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
@@ -10446,7 +12542,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pipelines_config/variables/{variable_uuid}": {
@@ -10505,7 +12612,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -10573,7 +12698,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -10623,7 +12759,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/properties/{app_key}/{property_name}": {
@@ -10677,7 +12831,18 @@
"requestBody": {
"$ref": "#/components/requestBodies/application_property"
},
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"responses": {
@@ -10726,7 +12891,18 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"get": {
"responses": {
@@ -10782,7 +12958,18 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/pullrequests": {
@@ -10836,6 +13023,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"post": {
@@ -10902,6 +13096,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -10958,6 +13162,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11021,6 +13232,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"put": {
@@ -11089,6 +13307,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -11154,6 +13382,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11195,6 +13430,16 @@
"204": {
"description": "An empty response indicating the authenticated user's approval has been withdrawn."
},
+ "400": {
+ "description": "Pull request cannot be unapproved because the pull request has already been merged.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
"401": {
"description": "The request wasn't authenticated.",
"content": {
@@ -11226,6 +13471,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pullrequest:bitbucket"]
+ }
]
},
"post": {
@@ -11274,6 +13526,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -11353,6 +13615,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"post": {
@@ -11420,6 +13689,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11492,6 +13768,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"get": {
@@ -11540,6 +13823,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"put": {
@@ -11599,6 +13889,166 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "comment_id",
+ "in": "path",
+ "description": "The id of the comment.",
+ "required": true,
+ "schema": {
+ "type": "integer"
+ }
+ },
+ {
+ "name": "pull_request_id",
+ "in": "path",
+ "description": "The id of the pull request.",
+ "required": true,
+ "schema": {
+ "type": "integer"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "in": "path",
+ "description": "This can either be the repository slug or the UUID of the repository,\nsurrounded by curly-braces, for example: `{repository UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
+ "/repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments/{comment_id}/resolve": {
+ "delete": {
+ "tags": ["Pullrequests"],
+ "description": "",
+ "summary": "Reopen a comment thread",
+ "responses": {
+ "204": {
+ "description": "The comment is reopened."
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request,\nor if the provided comment is not a top-level comment.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the comment does not exist, or if the comment has not been resolved",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "post": {
+ "tags": ["Pullrequests"],
+ "description": "",
+ "summary": "Resolve a comment thread",
+ "responses": {
+ "200": {
+ "description": "The comment resolution details.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/comment_resolution"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request,\nif the provided comment is not a top-level comment,\nor if the comment is not on the diff.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the comment does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "409": {
+ "description": "If the comment has already been resolved.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11680,6 +14130,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11749,6 +14206,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -11801,6 +14268,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11853,6 +14327,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -11945,6 +14426,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -12003,6 +14494,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -12064,6 +14562,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -12105,6 +14610,16 @@
"204": {
"description": "An empty response indicating the authenticated user's request for change has been withdrawn."
},
+ "400": {
+ "description": "Pull request requested changes cannot be removed because the pull request has already been merged.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
"401": {
"description": "The request wasn't authenticated.",
"content": {
@@ -12136,6 +14651,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:pullrequest:bitbucket"]
+ }
]
},
"post": {
@@ -12153,6 +14675,16 @@
}
}
},
+ "400": {
+ "description": "Pull request changes cannot be requested because the pull request has already been merged.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
"401": {
"description": "The request wasn't authenticated.",
"content": {
@@ -12184,6 +14716,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "read:pullrequest:bitbucket",
+ "write:pullrequest:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -12276,6 +14818,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -12308,6 +14857,434 @@
}
]
},
+ "/repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/tasks": {
+ "get": {
+ "tags": ["Pullrequests"],
+ "description": "Returns a paginated list of the pull request's tasks.\n\nThis endpoint supports filtering and sorting of the results by the 'task' field.\nSee [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) for more details.",
+ "summary": "List tasks on a pull request",
+ "responses": {
+ "200": {
+ "description": "A paginated list of pull request tasks for the given pull request.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/paginated_tasks"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "If the user provides an invalid filter, sort, or fields query parameter.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the pull request does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "parameters": [
+ {
+ "name": "q",
+ "in": "query",
+ "description": "\nQuery string to narrow down the response. See\n[filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) for details.",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "sort",
+ "in": "query",
+ "description": "\nField by which the results should be sorted as per\n[filtering and sorting](/cloud/bitbucket/rest/intro/#filtering).\nDefaults to `created_on`.\n",
+ "required": false,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "pagelen",
+ "in": "query",
+ "description": "\nCurrent number of objects on the existing page.\nThe default value is 10 with 100 being the maximum allowed value.\nIndividual APIs may enforce different values.\n",
+ "required": false,
+ "schema": {
+ "type": "integer"
+ }
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "post": {
+ "tags": ["Pullrequests"],
+ "description": "Creates a new pull request task.\n\nReturns the newly created pull request task.\n\nTasks can optionally be created in relation to a comment specified by the comment's ID which\nwill cause the task to appear below the comment on a pull request when viewed in Bitbucket.",
+ "summary": "Create a task on a pull request",
+ "responses": {
+ "201": {
+ "description": "The newly created task.",
+ "headers": {
+ "Location": {
+ "description": "The URL of the new task",
+ "schema": {
+ "type": "string"
+ }
+ }
+ },
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/A_pullrequest_comment_task"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "There is a missing required field in the request or the task content is blank.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the pull request does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "requestBody": {
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/A_pullrequest_task_create"
+ }
+ }
+ },
+ "description": "The contents of the task",
+ "required": true
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "pull_request_id",
+ "in": "path",
+ "description": "The id of the pull request.",
+ "required": true,
+ "schema": {
+ "type": "integer"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "in": "path",
+ "description": "This can either be the repository slug or the UUID of the repository,\nsurrounded by curly-braces, for example: `{repository UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
+ "/repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/tasks/{task_id}": {
+ "delete": {
+ "tags": ["Pullrequests"],
+ "description": "Deletes a specific pull request task.",
+ "summary": "Delete a task on a pull request",
+ "responses": {
+ "204": {
+ "description": "Successful deletion."
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to delete the task.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the task does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "get": {
+ "tags": ["Pullrequests"],
+ "description": "Returns a specific pull request task.",
+ "summary": "Get a task on a pull request",
+ "responses": {
+ "200": {
+ "description": "The task.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/A_pullrequest_comment_task"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the task does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "put": {
+ "tags": ["Pullrequests"],
+ "description": "Updates a specific pull request task.",
+ "summary": "Update a task on a pull request",
+ "responses": {
+ "200": {
+ "description": "The updated task.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/A_pullrequest_comment_task"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "There is a missing required field in the request or the task content is blank.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "If the authenticated user does not have access to the pull request.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "If the task does not exist.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "requestBody": {
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/A_pullrequest_task_update"
+ }
+ }
+ },
+ "description": "The updated state and content of the task.",
+ "required": true
+ },
+ "security": [
+ {
+ "oauth2": ["pullrequest"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "pull_request_id",
+ "in": "path",
+ "description": "The id of the pull request.",
+ "required": true,
+ "schema": {
+ "type": "integer"
+ }
+ },
+ {
+ "name": "repo_slug",
+ "in": "path",
+ "description": "This can either be the repository slug or the UUID of the repository,\nsurrounded by curly-braces, for example: `{repository UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "task_id",
+ "in": "path",
+ "description": "The ID of the task.",
+ "required": true,
+ "schema": {
+ "type": "integer"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
"/repositories/{workspace}/{repo_slug}/pullrequests/{pullrequest_id}/properties/{app_key}/{property_name}": {
"put": {
"responses": {
@@ -12368,7 +15345,18 @@
"requestBody": {
"$ref": "#/components/requestBodies/application_property"
},
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"responses": {
@@ -12426,7 +15414,18 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"get": {
"responses": {
@@ -12491,7 +15490,18 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/repositories/{workspace}/{repo_slug}/refs": {
@@ -12559,6 +15569,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -12585,7 +15602,7 @@
"/repositories/{workspace}/{repo_slug}/refs/branches": {
"get": {
"tags": ["Refs"],
- "description": "Returns a list of all open branches within the specified repository.\n Results will be in the order the source control manager returns them.\n\n ```\n $ curl -s https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches?pagelen=1 | jq .\n {\n \"pagelen\": 1,\n \"size\": 187,\n \"values\": [\n {\n \"name\": \"issue-9.3/AUI-5343-assistive-class\",\n \"links\": {\n \"commits\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commits/issue-9.3/AUI-5343-assistive-class\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches/issue-9.3/AUI-5343-assistive-class\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/branch/issue-9.3/AUI-5343-assistive-class\"\n }\n },\n \"default_merge_strategy\": \"squash\",\n \"merge_strategies\": [\n \"merge_commit\",\n \"squash\",\n \"fast_forward\"\n ],\n \"type\": \"branch\",\n \"target\": {\n \"hash\": \"e5d1cde9069fcb9f0af90403a4de2150c125a148\",\n \"repository\": {\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui\"\n },\n \"avatar\": {\n \"href\": \"https://bytebucket.org/ravatar/%7B585074de-7b60-4fd1-81ed-e0bc7fafbda5%7D?ts=86317\"\n }\n },\n \"type\": \"repository\",\n \"name\": \"aui\",\n \"full_name\": \"atlassian/aui\",\n \"uuid\": \"{585074de-7b60-4fd1-81ed-e0bc7fafbda5}\"\n },\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148\"\n },\n \"comments\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/comments\"\n },\n \"patch\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/patch/e5d1cde9069fcb9f0af90403a4de2150c125a148\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/commits/e5d1cde9069fcb9f0af90403a4de2150c125a148\"\n },\n \"diff\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/diff/e5d1cde9069fcb9f0af90403a4de2150c125a148\"\n },\n \"approve\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/approve\"\n },\n \"statuses\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/statuses\"\n }\n },\n \"author\": {\n \"raw\": \"Marcin Konopka \",\n \"type\": \"author\",\n \"user\": {\n \"display_name\": \"Marcin Konopka\",\n \"uuid\": \"{47cc24f4-2a05-4420-88fe-0417535a110a}\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/%7B47cc24f4-2a05-4420-88fe-0417535a110a%7D\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/%7B47cc24f4-2a05-4420-88fe-0417535a110a%7D/\"\n },\n \"avatar\": {\n \"href\": \"https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/initials/MK-1.png\"\n }\n },\n \"nickname\": \"Marcin Konopka\",\n \"type\": \"user\",\n \"account_id\": \"60113d2b47a9540069f4de03\"\n }\n },\n \"parents\": [\n {\n \"hash\": \"87f7fc92b00464ae47b13ef65c91884e4ac9be51\",\n \"type\": \"commit\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/87f7fc92b00464ae47b13ef65c91884e4ac9be51\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/commits/87f7fc92b00464ae47b13ef65c91884e4ac9be51\"\n }\n }\n }\n ],\n \"date\": \"2021-04-13T13:44:49+00:00\",\n \"message\": \"wip\n\",\n \"type\": \"commit\"\n }\n }\n ],\n \"page\": 1,\n \"next\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches?pagelen=1&page=2\"\n }\n ```\n\n Branches support [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering)\n that can be used to search for specific branches. For instance, to find\n all branches that have \"stab\" in their name:\n\n ```\n curl -s https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches -G --data-urlencode 'q=name ~ \"stab\"'\n ```\n\n By default, results will be in the order the underlying source control system returns them and identical to\n the ordering one sees when running \"$ git branch --list\". Note that this follows simple\n lexical ordering of the ref names.\n\n This can be undesirable as it does apply any natural sorting semantics, meaning for instance that tags are\n sorted [\"v10\", \"v11\", \"v9\"] instead of [\"v9\", \"v10\", \"v11\"].\n\n Sorting can be changed using the ?q= query parameter. When using ?q=name to explicitly sort on ref name,\n Bitbucket will apply natural sorting and interpret numerical values as numbers instead of strings.",
+ "description": "Returns a list of all open branches within the specified repository.\nResults will be in the order the source control manager returns them.\n\nBranches support [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering)\nthat can be used to search for specific branches. For instance, to find\nall branches that have \"stab\" in their name:\n\n```\ncurl -s https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches -G --data-urlencode 'q=name ~ \"stab\"'\n```\n\nBy default, results will be in the order the underlying source control system returns them and identical to\nthe ordering one sees when running \"$ git branch --list\". Note that this follows simple\nlexical ordering of the ref names.\n\nThis can be undesirable as it does apply any natural sorting semantics, meaning for instance that tags are\nsorted [\"v10\", \"v11\", \"v9\"] instead of [\"v9\", \"v10\", \"v11\"].\n\nSorting can be changed using the ?q= query parameter. When using ?q=name to explicitly sort on ref name,\nBitbucket will apply natural sorting and interpret numerical values as numbers instead of strings.",
"summary": "List open branches",
"responses": {
"200": {
@@ -12594,6 +15611,121 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_branches"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 1,
+ "size": 187,
+ "values": [
+ {
+ "name": "issue-9.3/AUI-5343-assistive-class",
+ "links": {
+ "commits": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commits/issue-9.3/AUI-5343-assistive-class"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches/issue-9.3/AUI-5343-assistive-class"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/branch/issue-9.3/AUI-5343-assistive-class"
+ }
+ },
+ "default_merge_strategy": "squash",
+ "merge_strategies": [
+ "merge_commit",
+ "squash",
+ "fast_forward"
+ ],
+ "type": "branch",
+ "target": {
+ "hash": "e5d1cde9069fcb9f0af90403a4de2150c125a148",
+ "repository": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui"
+ },
+ "avatar": {
+ "href": "https://bytebucket.org/ravatar/%7B585074de-7b60-4fd1-81ed-e0bc7fafbda5%7D?ts=86317"
+ }
+ },
+ "type": "repository",
+ "name": "aui",
+ "full_name": "atlassian/aui",
+ "uuid": "{585074de-7b60-4fd1-81ed-e0bc7fafbda5}"
+ },
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148"
+ },
+ "comments": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/comments"
+ },
+ "patch": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/patch/e5d1cde9069fcb9f0af90403a4de2150c125a148"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/commits/e5d1cde9069fcb9f0af90403a4de2150c125a148"
+ },
+ "diff": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/diff/e5d1cde9069fcb9f0af90403a4de2150c125a148"
+ },
+ "approve": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/approve"
+ },
+ "statuses": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e5d1cde9069fcb9f0af90403a4de2150c125a148/statuses"
+ }
+ },
+ "author": {
+ "raw": "Marcin Konopka ",
+ "type": "author",
+ "user": {
+ "display_name": "Marcin Konopka",
+ "uuid": "{47cc24f4-2a05-4420-88fe-0417535a110a}",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/%7B47cc24f4-2a05-4420-88fe-0417535a110a%7D"
+ },
+ "html": {
+ "href": "https://bitbucket.org/%7B47cc24f4-2a05-4420-88fe-0417535a110a%7D/"
+ },
+ "avatar": {
+ "href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/initials/MK-1.png"
+ }
+ },
+ "nickname": "Marcin Konopka",
+ "type": "user",
+ "account_id": "60113d2b47a9540069f4de03"
+ }
+ },
+ "parents": [
+ {
+ "hash": "87f7fc92b00464ae47b13ef65c91884e4ac9be51",
+ "type": "commit",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/87f7fc92b00464ae47b13ef65c91884e4ac9be51"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/commits/87f7fc92b00464ae47b13ef65c91884e4ac9be51"
+ }
+ }
+ }
+ ],
+ "date": "2021-04-13T13:44:49+00:00",
+ "message": "wip\n",
+ "type": "commit"
+ }
+ }
+ ],
+ "page": 1,
+ "next": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches?pagelen=1&page=2"
+ }
+ }
}
}
}
@@ -12647,6 +15779,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"post": {
@@ -12695,6 +15834,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "write:repository:bitbucket",
+ "read:repository:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -12758,11 +15907,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:repository:bitbucket"]
+ }
]
},
"get": {
"tags": ["Refs"],
- "description": "Returns a branch object within the specified repository.\n\n ```\n $ curl -s https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches/master | jq .\n {\n \"name\": \"master\",\n \"links\": {\n \"commits\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commits/master\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches/master\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/branch/master\"\n }\n },\n \"default_merge_strategy\": \"squash\",\n \"merge_strategies\": [\n \"merge_commit\",\n \"squash\",\n \"fast_forward\"\n ],\n \"type\": \"branch\",\n \"target\": {\n \"hash\": \"e7d158ff7ed5538c28f94cd97a9ad569680fc94e\",\n \"repository\": {\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui\"\n },\n \"avatar\": {\n \"href\": \"https://bytebucket.org/ravatar/%7B585074de-7b60-4fd1-81ed-e0bc7fafbda5%7D?ts=86317\"\n }\n },\n \"type\": \"repository\",\n \"name\": \"aui\",\n \"full_name\": \"atlassian/aui\",\n \"uuid\": \"{585074de-7b60-4fd1-81ed-e0bc7fafbda5}\"\n },\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e\"\n },\n \"comments\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/comments\"\n },\n \"patch\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/patch/e7d158ff7ed5538c28f94cd97a9ad569680fc94e\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/commits/e7d158ff7ed5538c28f94cd97a9ad569680fc94e\"\n },\n \"diff\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/diff/e7d158ff7ed5538c28f94cd97a9ad569680fc94e\"\n },\n \"approve\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/approve\"\n },\n \"statuses\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/statuses\"\n }\n },\n \"author\": {\n \"raw\": \"psre-renovate-bot \",\n \"type\": \"author\",\n \"user\": {\n \"display_name\": \"psre-renovate-bot\",\n \"uuid\": \"{250a442a-3ab3-4fcb-87c3-3c8f3df65ec7}\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/%7B250a442a-3ab3-4fcb-87c3-3c8f3df65ec7%7D\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/%7B250a442a-3ab3-4fcb-87c3-3c8f3df65ec7%7D/\"\n },\n \"avatar\": {\n \"href\": \"https://secure.gravatar.com/avatar/6972ee037c9f36360170a86f544071a2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FP-3.png\"\n }\n },\n \"nickname\": \"Renovate Bot\",\n \"type\": \"user\",\n \"account_id\": \"5d5355e8c6b9320d9ea5b28d\"\n }\n },\n \"parents\": [\n {\n \"hash\": \"eab868a309e75733de80969a7bed1ec6d4651e06\",\n \"type\": \"commit\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/eab868a309e75733de80969a7bed1ec6d4651e06\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/atlassian/aui/commits/eab868a309e75733de80969a7bed1ec6d4651e06\"\n }\n }\n }\n ],\n \"date\": \"2021-04-12T06:44:38+00:00\",\n \"message\": \"Merged in issue/NONE-renovate-master-babel-monorepo (pull request #2883)\n\nchore(deps): update babel monorepo to v7.13.15 (master)\n\nApproved-by: Chris \"Daz\" Darroch\n\",\n \"type\": \"commit\"\n }\n }\n ```\n\n This call requires authentication. Private repositories require the\n caller to authenticate with an account that has appropriate\n authorization.\n\n For Git, the branch name should not include any prefixes (e.g.\n refs/heads).",
+ "description": "Returns a branch object within the specified repository.\n\nThis call requires authentication. Private repositories require the\ncaller to authenticate with an account that has appropriate\nauthorization.\n\nFor Git, the branch name should not include any prefixes (e.g.\nrefs/heads).",
"summary": "Get a branch",
"responses": {
"200": {
@@ -12771,6 +15927,113 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/branch"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "name": "master",
+ "links": {
+ "commits": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commits/master"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/refs/branches/master"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/branch/master"
+ }
+ },
+ "default_merge_strategy": "squash",
+ "merge_strategies": [
+ "merge_commit",
+ "squash",
+ "fast_forward"
+ ],
+ "type": "branch",
+ "target": {
+ "hash": "e7d158ff7ed5538c28f94cd97a9ad569680fc94e",
+ "repository": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui"
+ },
+ "avatar": {
+ "href": "https://bytebucket.org/ravatar/%7B585074de-7b60-4fd1-81ed-e0bc7fafbda5%7D?ts=86317"
+ }
+ },
+ "type": "repository",
+ "name": "aui",
+ "full_name": "atlassian/aui",
+ "uuid": "{585074de-7b60-4fd1-81ed-e0bc7fafbda5}"
+ },
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e"
+ },
+ "comments": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/comments"
+ },
+ "patch": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/patch/e7d158ff7ed5538c28f94cd97a9ad569680fc94e"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/commits/e7d158ff7ed5538c28f94cd97a9ad569680fc94e"
+ },
+ "diff": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/diff/e7d158ff7ed5538c28f94cd97a9ad569680fc94e"
+ },
+ "approve": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/approve"
+ },
+ "statuses": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/e7d158ff7ed5538c28f94cd97a9ad569680fc94e/statuses"
+ }
+ },
+ "author": {
+ "raw": "psre-renovate-bot ",
+ "type": "author",
+ "user": {
+ "display_name": "psre-renovate-bot",
+ "uuid": "{250a442a-3ab3-4fcb-87c3-3c8f3df65ec7}",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/%7B250a442a-3ab3-4fcb-87c3-3c8f3df65ec7%7D"
+ },
+ "html": {
+ "href": "https://bitbucket.org/%7B250a442a-3ab3-4fcb-87c3-3c8f3df65ec7%7D/"
+ },
+ "avatar": {
+ "href": "https://secure.gravatar.com/avatar/6972ee037c9f36360170a86f544071a2?d=https%3A%2F%2Favatar-management--avatars.us-west-2.prod.public.atl-paas.net%2Finitials%2FP-3.png"
+ }
+ },
+ "nickname": "Renovate Bot",
+ "type": "user",
+ "account_id": "5d5355e8c6b9320d9ea5b28d"
+ }
+ },
+ "parents": [
+ {
+ "hash": "eab868a309e75733de80969a7bed1ec6d4651e06",
+ "type": "commit",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/atlassian/aui/commit/eab868a309e75733de80969a7bed1ec6d4651e06"
+ },
+ "html": {
+ "href": "https://bitbucket.org/atlassian/aui/commits/eab868a309e75733de80969a7bed1ec6d4651e06"
+ }
+ }
+ }
+ ],
+ "date": "2021-04-12T06:44:38+00:00",
+ "message": "Merged in issue/NONE-renovate-master-babel-monorepo (pull request #2883)\n\nchore(deps): update babel monorepo to v7.13.15 (master)\n\nApproved-by: Chris \"Daz\" Darroch\n",
+ "type": "commit"
+ }
+ }
+ }
}
}
}
@@ -12806,6 +16069,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -12903,6 +16173,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"post": {
@@ -12951,6 +16228,16 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": [
+ "write:repository:bitbucket",
+ "read:repository:bitbucket"
+ ]
+ }
]
},
"parameters": [
@@ -13014,6 +16301,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:repository:bitbucket"]
+ }
]
},
"get": {
@@ -13062,6 +16356,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -13143,11 +16444,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"post": {
"tags": ["Source", "Repositories"],
- "description": "This endpoint is used to create new commits in the repository by\nuploading files.\n\nTo add a new file to a repository:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/username/slug/src \\\n -F /repo/path/to/image.png=@image.png\n```\n\nThis will create a new commit on top of the main branch, inheriting the\ncontents of the main branch, but adding (or overwriting) the\n`image.png` file to the repository in the `/repo/path/to` directory.\n\nTo create a commit that deletes files, use the `files` parameter:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/username/slug/src \\\n -F files=/file/to/delete/1.txt \\\n -F files=/file/to/delete/2.txt\n```\n\nYou can add/modify/delete multiple files in a request. Rename/move a\nfile by deleting the old path and adding the content at the new path.\n\nThis endpoint accepts `multipart/form-data` (as in the examples above),\nas well as `application/x-www-form-urlencoded`.\n\n#### multipart/form-data\n\nA `multipart/form-data` post contains a series of \"form fields\" that\nidentify both the individual files that are being uploaded, as well as\nadditional, optional meta data.\n\nFiles are uploaded in file form fields (those that have a\n`Content-Disposition` parameter) whose field names point to the remote\npath in the repository where the file should be stored. Path field\nnames are always interpreted to be absolute from the root of the\nrepository, regardless whether the client uses a leading slash (as the\nabove `curl` example did).\n\nFile contents are treated as bytes and are not decoded as text.\n\nThe commit message, as well as other non-file meta data for the\nrequest, is sent along as normal form field elements. Meta data fields\nshare the same namespace as the file objects. For `multipart/form-data`\nbodies that should not lead to any ambiguity, as the\n`Content-Disposition` header will contain the `filename` parameter to\ndistinguish between a file named \"message\" and the commit message field.\n\n#### application/x-www-form-urlencoded\n\nIt is also possible to upload new files using a simple\n`application/x-www-form-urlencoded` POST. This can be convenient when\nuploading pure text files:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/atlassian/bbql/src \\\n --data-urlencode \"/path/to/me.txt=Lorem ipsum.\" \\\n --data-urlencode \"message=Initial commit\" \\\n --data-urlencode \"author=Erik van Zijst \"\n```\n\nThere could be a field name clash if a client were to upload a file\nnamed \"message\", as this filename clashes with the meta data property\nfor the commit message. To avoid this and to upload files whose names\nclash with the meta data properties, use a leading slash for the files,\ne.g. `curl --data-urlencode \"/message=file contents\"`.\n\nWhen an explicit slash is omitted for a file whose path matches that of\na meta data parameter, then it is interpreted as meta data, not as a\nfile.\n\n#### Executables and links\n\nWhile this API aims to facilitate the most common use cases, it is\npossible to perform some more advanced operations like creating a new\nsymlink in the repository, or creating an executable file.\n\nFiles can be supplied with a `x-attributes` value in the\n`Content-Disposition` header. For example, to upload an executable\nfile, as well as create a symlink from `README.txt` to `README`:\n\n```\n--===============1438169132528273974==\nContent-Type: text/plain; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-ID: \"bin/shutdown.sh\"\nContent-Disposition: attachment; filename=\"shutdown.sh\"; x-attributes:\"executable\"\n\n#!/bin/sh\nhalt\n\n--===============1438169132528273974==\nContent-Type: text/plain; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-ID: \"/README.txt\"\nContent-Disposition: attachment; filename=\"README.txt\"; x-attributes:\"link\"\n\nREADME\n--===============1438169132528273974==--\n```\n\nLinks are files that contain the target path and have\n`x-attributes:\"link\"` set.\n\nWhen overwriting links with files, or vice versa, the newly uploaded\nfile determines both the new contents, as well as the attributes. That\nmeans uploading a file without specifying `x-attributes=\"link\"` will\ncreate a regular file, even if the parent commit hosted a symlink at\nthe same path.\n\nThe same applies to executables. When modifying an existing executable\nfile, the form-data file element must include\n`x-attributes=\"executable\"` in order to preserve the executable status\nof the file.\n\nNote that this API does not support the creation or manipulation of\nsubrepos / submodules.",
+ "description": "This endpoint is used to create new commits in the repository by\nuploading files.\n\nTo add a new file to a repository:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/username/slug/src \\\n -F /repo/path/to/image.png=@image.png\n```\n\nThis will create a new commit on top of the main branch, inheriting the\ncontents of the main branch, but adding (or overwriting) the\n`image.png` file to the repository in the `/repo/path/to` directory.\n\nTo create a commit that deletes files, use the `files` parameter:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/username/slug/src \\\n -F files=/file/to/delete/1.txt \\\n -F files=/file/to/delete/2.txt\n```\n\nYou can add/modify/delete multiple files in a request. Rename/move a\nfile by deleting the old path and adding the content at the new path.\n\nThis endpoint accepts `multipart/form-data` (as in the examples above),\nas well as `application/x-www-form-urlencoded`.\n\nNote: `multipart/form-data` is currently not supported by Forge apps\nfor this API.\n\n#### multipart/form-data\n\nA `multipart/form-data` post contains a series of \"form fields\" that\nidentify both the individual files that are being uploaded, as well as\nadditional, optional meta data.\n\nFiles are uploaded in file form fields (those that have a\n`Content-Disposition` parameter) whose field names point to the remote\npath in the repository where the file should be stored. Path field\nnames are always interpreted to be absolute from the root of the\nrepository, regardless whether the client uses a leading slash (as the\nabove `curl` example did).\n\nFile contents are treated as bytes and are not decoded as text.\n\nThe commit message, as well as other non-file meta data for the\nrequest, is sent along as normal form field elements. Meta data fields\nshare the same namespace as the file objects. For `multipart/form-data`\nbodies that should not lead to any ambiguity, as the\n`Content-Disposition` header will contain the `filename` parameter to\ndistinguish between a file named \"message\" and the commit message field.\n\n#### application/x-www-form-urlencoded\n\nIt is also possible to upload new files using a simple\n`application/x-www-form-urlencoded` POST. This can be convenient when\nuploading pure text files:\n\n```\n$ curl https://api.bitbucket.org/2.0/repositories/atlassian/bbql/src \\\n --data-urlencode \"/path/to/me.txt=Lorem ipsum.\" \\\n --data-urlencode \"message=Initial commit\" \\\n --data-urlencode \"author=Erik van Zijst \"\n```\n\nThere could be a field name clash if a client were to upload a file\nnamed \"message\", as this filename clashes with the meta data property\nfor the commit message. To avoid this and to upload files whose names\nclash with the meta data properties, use a leading slash for the files,\ne.g. `curl --data-urlencode \"/message=file contents\"`.\n\nWhen an explicit slash is omitted for a file whose path matches that of\na meta data parameter, then it is interpreted as meta data, not as a\nfile.\n\n#### Executables and links\n\nWhile this API aims to facilitate the most common use cases, it is\npossible to perform some more advanced operations like creating a new\nsymlink in the repository, or creating an executable file.\n\nFiles can be supplied with a `x-attributes` value in the\n`Content-Disposition` header. For example, to upload an executable\nfile, as well as create a symlink from `README.txt` to `README`:\n\n```\n--===============1438169132528273974==\nContent-Type: text/plain; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-ID: \"bin/shutdown.sh\"\nContent-Disposition: attachment; filename=\"shutdown.sh\"; x-attributes:\"executable\"\n\n#!/bin/sh\nhalt\n\n--===============1438169132528273974==\nContent-Type: text/plain; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-ID: \"/README.txt\"\nContent-Disposition: attachment; filename=\"README.txt\"; x-attributes:\"link\"\n\nREADME\n--===============1438169132528273974==--\n```\n\nLinks are files that contain the target path and have\n`x-attributes:\"link\"` set.\n\nWhen overwriting links with files, or vice versa, the newly uploaded\nfile determines both the new contents, as well as the attributes. That\nmeans uploading a file without specifying `x-attributes=\"link\"` will\ncreate a regular file, even if the parent commit hosted a symlink at\nthe same path.\n\nThe same applies to executables. When modifying an existing executable\nfile, the form-data file element must include\n`x-attributes=\"executable\"` in order to preserve the executable status\nof the file.\n\nNote that this API does not support the creation or manipulation of\nsubrepos / submodules.",
"summary": "Create a commit by uploading a file",
"responses": {
"201": {
@@ -13231,6 +16539,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["write:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -13281,7 +16596,7 @@
}
},
"555": {
- "description": "If the call times out, possibly because the specifiedrecursion depth is too large.",
+ "description": "If the call times out, possibly because the specified recursion depth is too large.",
"content": {
"application/json": {
"schema": {
@@ -13295,7 +16610,7 @@
{
"name": "format",
"in": "query",
- "description": "If 'meta' is provided, returns the (json) meta data for the contents of the file. If 'rendered' is provided, returns the contents of a non-binary file in HTML-formatted rendered markup. Since Git does not generally track what text encoding scheme is used, this endpoint attempts to detect the most appropriate character encoding. While usually correct, determining the character encoding can be ambiguous which in exceptional cases can lead to misinterpretation of the characters. As such, the raw element in the response object should not be treated as equivalent to the file's actual contents.",
+ "description": "If 'meta' is provided, returns the (json) meta data for the contents of the file. If 'rendered' is provided, returns the contents of a non-binary file in HTML-formatted rendered markup. The 'rendered' option only supports these filetypes: `.md`, `.markdown`, `.mkd`, `.mkdn`, `.mdown`, `.text`, `.rst`, and `.textile`. Since Git does not generally track what text encoding scheme is used, this endpoint attempts to detect the most appropriate character encoding. While usually correct, determining the character encoding can be ambiguous which in exceptional cases can lead to misinterpretation of the characters. As such, the raw element in the response object should not be treated as equivalent to the file's actual contents.",
"required": false,
"schema": {
"type": "string",
@@ -13340,6 +16655,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -13537,6 +16859,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -15371,7 +18700,7 @@
}
]
},
- "/teams/{username}/pipelines_config/variables/": {
+ "/teams/{username}/pipelines_config/variables": {
"get": {
"tags": ["Pipelines"],
"summary": "List variables for an account",
@@ -15400,7 +18729,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
@@ -15461,7 +18801,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/teams/{username}/pipelines_config/variables/{variable_uuid}": {
@@ -15512,7 +18863,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -15564,7 +18926,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -15606,14 +18979,25 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/teams/{username}/search/code": {
"get": {
"tags": ["Search"],
"summary": "Search for code in a team's repositories",
- "description": "Search for code in the repositories of the specified team.\n\nSearching across all repositories:\n\n```\ncurl 'https://api.bitbucket.org/2.0/teams/team_name/search/code?search_query=foo'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 2,\n \"content_matches\": [\n {\n \"lines\": [\n {\n \"line\": 2,\n \"segments\": []\n },\n {\n \"line\": 3,\n \"segments\": [\n {\n \"text\": \"def \"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \"():\"\n }\n ]\n },\n {\n \"line\": 4,\n \"segments\": [\n {\n \"text\": \" print(\\\"snek\\\")\"\n }\n ]\n },\n {\n \"line\": 5,\n \"segments\": []\n }\n ]\n }\n ],\n \"path_matches\": [\n {\n \"text\": \"src/\"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \".py\"\n }\n ],\n \"file\": {\n \"path\": \"src/foo.py\",\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n }\n }\n }\n ]\n}\n```\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both as in the example above.\n\nYou can use the same syntax for the search query as in the UI, e.g.\nto only search within a specific repository:\n\n```\ncurl 'https://api.bitbucket.org/2.0/teams/team_name/search/code?search_query=foo+repo:demo'\n# results from the \"demo\" repository\n```\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files (the `%2B` is a URL-encoded `+`):\n\n```\ncurl 'https://api.bitbucket.org/2.0/teams/team_name/search/code'\\\n '?search_query=foo&fields=%2Bvalues.file.commit.repository'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 1,\n \"content_matches\": [...],\n \"path_matches\": [...],\n \"file\": {\n \"commit\": {\n \"type\": \"commit\",\n \"hash\": \"ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/commit/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo/commits/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n }\n },\n \"repository\": {\n \"name\": \"demo\",\n \"type\": \"repository\",\n \"full_name\": \"my-workspace/demo\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo\"\n },\n \"avatar\": {\n \"href\": \"https://bytebucket.org/ravatar/%7B850e1749-781a-4115-9316-df39d0600e7a%7D?ts=default\"\n }\n },\n \"uuid\": \"{850e1749-781a-4115-9316-df39d0600e7a}\"\n }\n },\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n },\n \"path\": \"src/foo.py\"\n }\n }\n ]\n}\n```\n\nTry `fields=%2Bvalues.*.*.*.*` to get an idea what's possible.\n",
+ "description": "Search for code in the repositories of the specified team.\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both.\n\nYou can use the same syntax for the search query as in the UI.\nE.g. to search for \"foo\" only within the repository \"demo\",\nuse the query parameter `search_query=foo+repo:demo`.\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files, use the query parameter\n`search_query=foo&fields=%2Bvalues.file.commit.repository`\n(the `%2B` is a URL-encoded `+`).\n\nTry `fields=%2Bvalues.*.*.*.*` to get an idea what's possible.\n",
"operationId": "searchTeam",
"parameters": [
{
@@ -15664,6 +19048,80 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/search_result_page"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "size": 1,
+ "page": 1,
+ "pagelen": 10,
+ "query_substituted": false,
+ "values": [
+ {
+ "type": "code_search_result",
+ "content_match_count": 2,
+ "content_matches": [
+ {
+ "lines": [
+ {
+ "line": 2,
+ "segments": []
+ },
+ {
+ "line": 3,
+ "segments": [
+ {
+ "text": "def "
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": "():"
+ }
+ ]
+ },
+ {
+ "line": 4,
+ "segments": [
+ {
+ "text": " print(\"snek\")"
+ }
+ ]
+ },
+ {
+ "line": 5,
+ "segments": []
+ }
+ ]
+ }
+ ],
+ "path_matches": [
+ {
+ "text": "src/"
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": ".py"
+ }
+ ],
+ "file": {
+ "path": "src/foo.py",
+ "type": "commit_file",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
}
}
}
@@ -15698,7 +19156,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["repository"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/user": {
@@ -15817,7 +19286,7 @@
"/user/permissions/repositories": {
"get": {
"tags": ["Repositories"],
- "description": "Returns an object for each repository the caller has explicit access\nto and their effective permission â the highest level of permission the\ncaller has. This does not return public repositories that the user was\nnot granted any specific permission in, and does not distinguish between\nexplicit and implicit privileges.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/user/permissions/repositories\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"nickname\": \"evzijst\",\n \"display_name\": \"Erik van Zijst\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"bitbucket/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"admin\"\n }\n ],\n \"page\": 1,\n \"size\": 1\n}\n```\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nrepository or permission by adding the following query string\nparameters:\n\n* `q=repository.name=\"geordi\"` or `q=permission>\"read\"`\n* `sort=repository.name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
+ "description": "Returns an object for each repository the caller has explicit access\nto and their effective permission â the highest level of permission the\ncaller has. This does not return public repositories that the user was\nnot granted any specific permission in, and does not distinguish between\nexplicit and implicit privileges.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nrepository or permission by adding the following query string\nparameters:\n\n* `q=repository.name=\"geordi\"` or `q=permission>\"read\"`\n* `sort=repository.name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
"summary": "List repository permissions for a user",
"responses": {
"200": {
@@ -15826,6 +19295,33 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_repository_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "nickname": "evzijst",
+ "display_name": "Erik van Zijst",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "geordi",
+ "full_name": "bitbucket/geordi",
+ "uuid": "{85d08b4e-571d-44e9-a507-fa476535aa98}"
+ },
+ "permission": "admin"
+ }
+ ],
+ "page": 1,
+ "size": 1
+ }
+ }
}
}
}
@@ -15868,7 +19364,7 @@
"/user/permissions/workspaces": {
"get": {
"tags": ["Workspaces"],
- "description": "Returns an object for each workspace the caller is a member of, and\ntheir effective role - the highest level of privilege the caller has.\nIf a user is a member of multiple groups with distinct roles, only the\nhighest level is returned.\n\nPermissions can be:\n\n* `owner`\n* `collaborator`\n* `member`\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/user/permissions/workspaces\n\n{\n \"pagelen\": 10,\n \"page\": 1,\n \"size\": 1,\n \"values\": [\n {\n \"type\": \"workspace_membership\",\n \"permission\": \"owner\",\n \"last_accessed\": \"2019-03-07T12:35:02.900024+00:00\",\n \"added_on\": \"2018-10-11T17:42:02.961424+00:00\",\n \"user\": {\n \"type\": \"user\",\n \"uuid\": \"{470c176d-3574-44ea-bb41-89e8638bcca4}\",\n \"nickname\": \"evzijst\",\n \"display_name\": \"Erik van Zijst\",\n },\n \"workspace\": {\n \"type\": \"workspace\",\n \"uuid\": \"{a15fb181-db1f-48f7-b41f-e1eff06929d6}\",\n \"slug\": \"bbworkspace1\",\n \"name\": \"Atlassian Bitbucket\",\n }\n }\n ]\n}\n```\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nworkspace or permission by adding the following query string parameters:\n\n* `q=workspace.slug=\"bbworkspace1\"` or `q=permission=\"owner\"`\n* `sort=workspace.slug`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
+ "description": "Returns an object for each workspace the caller is a member of, and\ntheir effective role - the highest level of privilege the caller has.\nIf a user is a member of multiple groups with distinct roles, only the\nhighest level is returned.\n\nPermissions can be:\n\n* `owner`\n* `collaborator`\n* `member`\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**\n\n**When you move your administration from Bitbucket Cloud to admin.atlassian.com, the following fields on\n`workspace_membership` will no longer be present: `last_accessed` and `added_on`. See the\n[deprecation announcement](/cloud/bitbucket/announcement-breaking-change-workspace-membership/).**\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nworkspace or permission by adding the following query string parameters:\n\n* `q=workspace.slug=\"bbworkspace1\"` or `q=permission=\"owner\"`\n* `sort=workspace.slug`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
"summary": "List workspaces for the current user",
"responses": {
"200": {
@@ -15877,6 +19373,35 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_workspace_memberships"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "page": 1,
+ "size": 1,
+ "values": [
+ {
+ "type": "workspace_membership",
+ "permission": "owner",
+ "last_accessed": "2019-03-07T12:35:02.900024+00:00",
+ "added_on": "2018-10-11T17:42:02.961424+00:00",
+ "user": {
+ "type": "user",
+ "uuid": "{470c176d-3574-44ea-bb41-89e8638bcca4}",
+ "nickname": "evzijst",
+ "display_name": "Erik van Zijst"
+ },
+ "workspace": {
+ "type": "workspace",
+ "uuid": "{a15fb181-db1f-48f7-b41f-e1eff06929d6}",
+ "slug": "bbworkspace1",
+ "name": "Atlassian Bitbucket"
+ }
+ }
+ ]
+ }
+ }
}
}
}
@@ -15969,7 +19494,7 @@
{
"name": "selected_user",
"in": "path",
- "description": "This can either be the UUID of the account, surrounded by curly-braces, for\nexample: `{account UUID}`, OR an Atlassian Account ID.\n",
+ "description": "This can either be an Atlassian Account ID OR the UUID of the account,\nsurrounded by curly-braces, for example: `{account UUID}`.\n",
"required": true,
"schema": {
"type": "string"
@@ -15977,7 +19502,7 @@
}
]
},
- "/users/{selected_user}/pipelines_config/variables/": {
+ "/users/{selected_user}/pipelines_config/variables": {
"get": {
"tags": ["Pipelines"],
"deprecated": true,
@@ -16006,7 +19531,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
@@ -16067,7 +19603,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/users/{selected_user}/pipelines_config/variables/{variable_uuid}": {
@@ -16118,7 +19665,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -16170,7 +19728,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -16212,7 +19781,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/users/{selected_user}/properties/{app_key}/{property_name}": {
@@ -16257,7 +19837,18 @@
"requestBody": {
"$ref": "#/components/requestBodies/application_property"
},
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"responses": {
@@ -16297,7 +19888,18 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"get": {
"responses": {
@@ -16344,14 +19946,25 @@
}
}
],
- "tags": ["properties"]
+ "tags": ["properties"],
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/users/{selected_user}/search/code": {
"get": {
"tags": ["Search"],
"summary": "Search for code in a user's repositories",
- "description": "Search for code in the repositories of the specified user.\n\nSearching across all repositories:\n\n```\ncurl 'https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/search/code?search_query=foo'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 2,\n \"content_matches\": [\n {\n \"lines\": [\n {\n \"line\": 2,\n \"segments\": []\n },\n {\n \"line\": 3,\n \"segments\": [\n {\n \"text\": \"def \"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \"():\"\n }\n ]\n },\n {\n \"line\": 4,\n \"segments\": [\n {\n \"text\": \" print(\\\"snek\\\")\"\n }\n ]\n },\n {\n \"line\": 5,\n \"segments\": []\n }\n ]\n }\n ],\n \"path_matches\": [\n {\n \"text\": \"src/\"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \".py\"\n }\n ],\n \"file\": {\n \"path\": \"src/foo.py\",\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n }\n }\n }\n ]\n}\n```\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both as in the example above.\n\nYou can use the same syntax for the search query as in the UI, e.g.\nto only search within a specific repository:\n\n```\ncurl 'https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/search/code?search_query=foo+repo:demo'\n# results from the \"demo\" repository\n```\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files (the `%2B` is a URL-encoded `+`):\n\n```\ncurl 'https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/search/code'\\\n '?search_query=foo&fields=%2Bvalues.file.commit.repository'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 1,\n \"content_matches\": [...],\n \"path_matches\": [...],\n \"file\": {\n \"commit\": {\n \"type\": \"commit\",\n \"hash\": \"ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/commit/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo/commits/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n }\n },\n \"repository\": {\n \"name\": \"demo\",\n \"type\": \"repository\",\n \"full_name\": \"my-workspace/demo\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo\"\n },\n \"avatar\": {\n \"href\": \"https://bytebucket.org/ravatar/%7B850e1749-781a-4115-9316-df39d0600e7a%7D?ts=default\"\n }\n },\n \"uuid\": \"{850e1749-781a-4115-9316-df39d0600e7a}\"\n }\n },\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n },\n \"path\": \"src/foo.py\"\n }\n }\n ]\n}\n```\n\nTry `fields=%2Bvalues.*.*.*.*` to get an idea what's possible.\n",
+ "description": "Search for code in the repositories of the specified user.\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both.\n\nYou can use the same syntax for the search query as in the UI.\nE.g. to search for \"foo\" only within the repository \"demo\",\nuse the query parameter `search_query=foo+repo:demo`.\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files, use the query parameter\n`search_query=foo&fields=%2Bvalues.file.commit.repository`\n(the `%2B` is a URL-encoded `+`).\n",
"operationId": "searchAccount",
"parameters": [
{
@@ -16402,6 +20015,80 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/search_result_page"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "size": 1,
+ "page": 1,
+ "pagelen": 10,
+ "query_substituted": false,
+ "values": [
+ {
+ "type": "code_search_result",
+ "content_match_count": 2,
+ "content_matches": [
+ {
+ "lines": [
+ {
+ "line": 2,
+ "segments": []
+ },
+ {
+ "line": 3,
+ "segments": [
+ {
+ "text": "def "
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": "():"
+ }
+ ]
+ },
+ {
+ "line": 4,
+ "segments": [
+ {
+ "text": " print(\"snek\")"
+ }
+ ]
+ },
+ {
+ "line": 5,
+ "segments": []
+ }
+ ]
+ }
+ ],
+ "path_matches": [
+ {
+ "text": "src/"
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": ".py"
+ }
+ ],
+ "file": {
+ "path": "src/foo.py",
+ "type": "commit_file",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
}
}
}
@@ -16436,13 +20123,24 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["repository"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/users/{selected_user}/ssh-keys": {
"get": {
"tags": ["Ssh"],
- "description": "Returns a paginated list of the user's SSH public keys.\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys\n{\n \"page\": 1,\n \"pagelen\": 10,\n \"size\": 1,\n \"values\": [\n {\n \"comment\": \"user@myhost\",\n \"created_on\": \"2018-03-14T13:17:05.196003+00:00\",\n \"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY\",\n \"label\": \"\",\n \"last_used\": \"2018-03-20T13:18:05.196003+00:00\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a\"\n }\n },\n \"owner\": {\n \"display_name\": \"Mark Adams\",\n \"links\": {\n \"avatar\": {\n \"href\": \"https://bitbucket.org/account/markadams-atl/avatar/32/\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/markadams-atl/\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}\"\n }\n },\n \"type\": \"user\",\n \"username\": \"markadams-atl\",\n \"nickname\": \"markadams-atl\",\n \"uuid\": \"{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}\"\n },\n \"type\": \"ssh_key\",\n \"uuid\": \"{b15b6026-9c02-4626-b4ad-b905f99f763a}\"\n }\n ]\n}\n```",
+ "description": "Returns a paginated list of the user's SSH public keys.",
"summary": "List SSH keys",
"responses": {
"200": {
@@ -16451,6 +20149,49 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_ssh_user_keys"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "page": 1,
+ "pagelen": 10,
+ "size": 1,
+ "values": [
+ {
+ "comment": "user@myhost",
+ "created_on": "2018-03-14T13:17:05.196003+00:00",
+ "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY",
+ "label": "",
+ "last_used": "2018-03-20T13:18:05.196003+00:00",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a"
+ }
+ },
+ "owner": {
+ "display_name": "Mark Adams",
+ "links": {
+ "avatar": {
+ "href": "https://bitbucket.org/account/markadams-atl/avatar/32/"
+ },
+ "html": {
+ "href": "https://bitbucket.org/markadams-atl/"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}"
+ }
+ },
+ "type": "user",
+ "username": "markadams-atl",
+ "nickname": "markadams-atl",
+ "uuid": "{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}"
+ },
+ "type": "ssh_key",
+ "uuid": "{b15b6026-9c02-4626-b4ad-b905f99f763a}"
+ }
+ ]
+ }
+ }
}
}
}
@@ -16483,7 +20224,7 @@
},
"post": {
"tags": ["Ssh"],
- "description": "Adds a new SSH public key to the specified user account and returns the resulting key.\n\nExample:\n```\n$ curl -X POST -H \"Content-Type: application/json\" -d '{\"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY user@myhost\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys\n\n{\n \"comment\": \"user@myhost\",\n \"created_on\": \"2018-03-14T13:17:05.196003+00:00\",\n \"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY\",\n \"label\": \"\",\n \"last_used\": \"2018-03-20T13:18:05.196003+00:00\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a\"\n }\n },\n \"owner\": {\n \"display_name\": \"Mark Adams\",\n \"links\": {\n \"avatar\": {\n \"href\": \"https://bitbucket.org/account/markadams-atl/avatar/32/\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/markadams-atl/\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}\"\n }\n },\n \"type\": \"user\",\n \"username\": \"markadams-atl\",\n \"nickname\": \"markadams-atl\",\n \"uuid\": \"{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}\"\n },\n \"type\": \"ssh_key\",\n \"uuid\": \"{b15b6026-9c02-4626-b4ad-b905f99f763a}\"\n}\n```",
+ "description": "Adds a new SSH public key to the specified user account and returns the resulting key.\n\nExample:\n\n```\n$ curl -X POST -H \"Content-Type: application/json\" -d '{\"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY user@myhost\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys\n```",
"summary": "Add a new SSH key",
"responses": {
"201": {
@@ -16492,6 +20233,42 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/ssh_account_key"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "comment": "user@myhost",
+ "created_on": "2018-03-14T13:17:05.196003+00:00",
+ "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY",
+ "label": "",
+ "last_used": "2018-03-20T13:18:05.196003+00:00",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a"
+ }
+ },
+ "owner": {
+ "display_name": "Mark Adams",
+ "links": {
+ "avatar": {
+ "href": "https://bitbucket.org/account/markadams-atl/avatar/32/"
+ },
+ "html": {
+ "href": "https://bitbucket.org/markadams-atl/"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}"
+ }
+ },
+ "type": "user",
+ "username": "markadams-atl",
+ "nickname": "markadams-atl",
+ "uuid": "{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}"
+ },
+ "type": "ssh_key",
+ "uuid": "{b15b6026-9c02-4626-b4ad-b905f99f763a}"
+ }
+ }
}
}
}
@@ -16546,7 +20323,7 @@
{
"name": "selected_user",
"in": "path",
- "description": "This can either be the UUID of the account, surrounded by curly-braces, for\nexample: `{account UUID}`, OR an Atlassian Account ID.\n",
+ "description": "This can either be an Atlassian Account ID OR the UUID of the account,\nsurrounded by curly-braces, for example: `{account UUID}`.\n",
"required": true,
"schema": {
"type": "string"
@@ -16557,7 +20334,7 @@
"/users/{selected_user}/ssh-keys/{key_id}": {
"delete": {
"tags": ["Ssh"],
- "description": "Deletes a specific SSH public key from a user's account\n\nExample:\n```\n$ curl -X DELETE https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/{b15b6026-9c02-4626-b4ad-b905f99f763a}\n```",
+ "description": "Deletes a specific SSH public key from a user's account.",
"summary": "Delete a SSH key",
"responses": {
"204": {
@@ -16601,7 +20378,7 @@
},
"get": {
"tags": ["Ssh"],
- "description": "Returns a specific SSH public key belonging to a user.\n\nExample:\n```\n$ curl https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/{fbe4bbab-f6f7-4dde-956b-5c58323c54b3}\n\n{\n \"comment\": \"user@myhost\",\n \"created_on\": \"2018-03-14T13:17:05.196003+00:00\",\n \"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY\",\n \"label\": \"\",\n \"last_used\": \"2018-03-20T13:18:05.196003+00:00\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a\"\n }\n },\n \"owner\": {\n \"display_name\": \"Mark Adams\",\n \"links\": {\n \"avatar\": {\n \"href\": \"https://bitbucket.org/account/markadams-atl/avatar/32/\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/markadams-atl/\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}\"\n }\n },\n \"type\": \"user\",\n \"username\": \"markadams-atl\",\n \"nickname\": \"markadams-atl\",\n \"uuid\": \"{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}\"\n },\n \"type\": \"ssh_key\",\n \"uuid\": \"{b15b6026-9c02-4626-b4ad-b905f99f763a}\"\n}\n```",
+ "description": "Returns a specific SSH public key belonging to a user.",
"summary": "Get a SSH key",
"responses": {
"200": {
@@ -16610,6 +20387,42 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/ssh_account_key"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "comment": "user@myhost",
+ "created_on": "2018-03-14T13:17:05.196003+00:00",
+ "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY",
+ "label": "",
+ "last_used": "2018-03-20T13:18:05.196003+00:00",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a"
+ }
+ },
+ "owner": {
+ "display_name": "Mark Adams",
+ "links": {
+ "avatar": {
+ "href": "https://bitbucket.org/account/markadams-atl/avatar/32/"
+ },
+ "html": {
+ "href": "https://bitbucket.org/markadams-atl/"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}"
+ }
+ },
+ "type": "user",
+ "username": "markadams-atl",
+ "nickname": "markadams-atl",
+ "uuid": "{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}"
+ },
+ "type": "ssh_key",
+ "uuid": "{b15b6026-9c02-4626-b4ad-b905f99f763a}"
+ }
+ }
}
}
}
@@ -16642,7 +20455,7 @@
},
"put": {
"tags": ["Ssh"],
- "description": "Updates a specific SSH public key on a user's account\n\nNote: Only the 'comment' field can be updated using this API. To modify the key or comment values, you must delete and add the key again.\n\nExample:\n```\n$ curl -X PUT -H \"Content-Type: application/json\" -d '{\"label\": \"Work key\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/{b15b6026-9c02-4626-b4ad-b905f99f763a}\n\n{\n \"comment\": \"\",\n \"created_on\": \"2018-03-14T13:17:05.196003+00:00\",\n \"key\": \"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY\",\n \"label\": \"Work key\",\n \"last_used\": \"2018-03-20T13:18:05.196003+00:00\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a\"\n }\n },\n \"owner\": {\n \"display_name\": \"Mark Adams\",\n \"links\": {\n \"avatar\": {\n \"href\": \"https://bitbucket.org/account/markadams-atl/avatar/32/\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/markadams-atl/\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}\"\n }\n },\n \"type\": \"user\",\n \"username\": \"markadams-atl\",\n \"nickname\": \"markadams-atl\",\n \"uuid\": \"{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}\"\n },\n \"type\": \"ssh_key\",\n \"uuid\": \"{b15b6026-9c02-4626-b4ad-b905f99f763a}\"\n}\n```",
+ "description": "Updates a specific SSH public key on a user's account\n\nNote: Only the 'comment' field can be updated using this API. To modify the key or comment values, you must delete and add the key again.\n\nExample:\n\n```\n$ curl -X PUT -H \"Content-Type: application/json\" -d '{\"label\": \"Work key\"}' https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/{b15b6026-9c02-4626-b4ad-b905f99f763a}\n```",
"summary": "Update a SSH key",
"responses": {
"200": {
@@ -16651,6 +20464,42 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/ssh_account_key"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "comment": "",
+ "created_on": "2018-03-14T13:17:05.196003+00:00",
+ "key": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqP3Cr632C2dNhhgKVcon4ldUSAeKiku2yP9O9/bDtY",
+ "label": "Work key",
+ "last_used": "2018-03-20T13:18:05.196003+00:00",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}/ssh-keys/b15b6026-9c02-4626-b4ad-b905f99f763a"
+ }
+ },
+ "owner": {
+ "display_name": "Mark Adams",
+ "links": {
+ "avatar": {
+ "href": "https://bitbucket.org/account/markadams-atl/avatar/32/"
+ },
+ "html": {
+ "href": "https://bitbucket.org/markadams-atl/"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/{ed08f5e1-605b-4f4a-aee4-6c97628a673e}"
+ }
+ },
+ "type": "user",
+ "username": "markadams-atl",
+ "nickname": "markadams-atl",
+ "uuid": "{d7dd0e2d-3994-4a50-a9ee-d260b6cefdab}"
+ },
+ "type": "ssh_key",
+ "uuid": "{b15b6026-9c02-4626-b4ad-b905f99f763a}"
+ }
+ }
}
}
}
@@ -16714,7 +20563,7 @@
{
"name": "selected_user",
"in": "path",
- "description": "This can either be the UUID of the account, surrounded by curly-braces, for\nexample: `{account UUID}`, OR an Atlassian Account ID.\n",
+ "description": "This can either be an Atlassian Account ID OR the UUID of the account,\nsurrounded by curly-braces, for example: `{account UUID}`.\n",
"required": true,
"schema": {
"type": "string"
@@ -16725,7 +20574,7 @@
"/workspaces": {
"get": {
"tags": ["Workspaces"],
- "description": "Returns a list of workspaces accessible by the authenticated user.\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/workspaces\n\n{\n \"pagelen\": 10,\n \"page\": 1,\n \"size\": 1,\n \"values\": [\n {\n \"uuid\": \"{a15fb181-db1f-48f7-b41f-e1eff06929d6}\",\n \"links\": {\n \"owners\": {\n \"href\": \"https://api.bitbucket.org/2.0/workspaces/bbworkspace1/members?q=permission%3D%22owner%22\"\n },\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/workspaces/bbworkspace1\"\n },\n \"repositories\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/bbworkspace1\"\n },\n \"snippets\": {\n \"href\": \"https://api.bitbucket.org/2.0/snippets/bbworkspace1\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/bbworkspace1/\"\n },\n \"avatar\": {\n \"href\": \"https://bitbucket.org/workspaces/bbworkspace1/avatar/?ts=1543465801\"\n },\n \"members\": {\n \"href\": \"https://api.bitbucket.org/2.0/workspaces/bbworkspace1/members\"\n },\n \"projects\": {\n \"href\": \"https://api.bitbucket.org/2.0/workspaces/bbworkspace1/projects\"\n }\n },\n \"created_on\": \"2018-11-14T19:15:05.058566+00:00\",\n \"type\": \"workspace\",\n \"slug\": \"bbworkspace1\",\n \"is_private\": true,\n \"name\": \"Atlassian Bitbucket\"\n }\n ]\n}\n```\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nworkspace or permission by adding the following query string parameters:\n\n* `q=slug=\"bbworkspace1\"` or `q=is_private=true`\n* `sort=created_on`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**",
+ "description": "Returns a list of workspaces accessible by the authenticated user.\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering) by\nworkspace or permission by adding the following query string parameters:\n\n* `q=slug=\"bbworkspace1\"` or `q=is_private=true`\n* `sort=created_on`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**",
"summary": "List workspaces for user",
"responses": {
"200": {
@@ -16734,6 +20583,51 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_workspaces"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "page": 1,
+ "size": 1,
+ "values": [
+ {
+ "uuid": "{a15fb181-db1f-48f7-b41f-e1eff06929d6}",
+ "links": {
+ "owners": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/bbworkspace1/members?q=permission%3D%22owner%22"
+ },
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/bbworkspace1"
+ },
+ "repositories": {
+ "href": "https://api.bitbucket.org/2.0/repositories/bbworkspace1"
+ },
+ "snippets": {
+ "href": "https://api.bitbucket.org/2.0/snippets/bbworkspace1"
+ },
+ "html": {
+ "href": "https://bitbucket.org/bbworkspace1/"
+ },
+ "avatar": {
+ "href": "https://bitbucket.org/workspaces/bbworkspace1/avatar/?ts=1543465801"
+ },
+ "members": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/bbworkspace1/members"
+ },
+ "projects": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/bbworkspace1/projects"
+ }
+ },
+ "created_on": "2018-11-14T19:15:05.058566+00:00",
+ "type": "workspace",
+ "slug": "bbworkspace1",
+ "is_private": true,
+ "name": "Atlassian Bitbucket"
+ }
+ ]
+ }
+ }
}
}
}
@@ -16895,7 +20789,7 @@
},
"post": {
"tags": ["Workspaces", "Webhooks"],
- "description": "Creates a new webhook on the specified workspace.\n\nWorkspace webhooks are fired for events from all repositories contained\nby that workspace.\n\nExample:\n\n```\n$ curl -X POST -u credentials -H 'Content-Type: application/json'\n https://api.bitbucket.org/2.0/workspaces/my-workspace/hooks\n -d '\n {\n \"description\": \"Webhook Description\",\n \"url\": \"https://example.com/\",\n \"active\": true,\n \"events\": [\n \"repo:push\",\n \"issue:created\",\n \"issue:updated\"\n ]\n }'\n```\n\nThis call requires the webhook scope, as well as any scope\nthat applies to the events that the webhook subscribes to. In the\nexample above that means: `webhook`, `repository` and `issue`.\n\nThe `url` must properly resolve and cannot be an internal, non-routed address.\n\nOnly workspace owners can install webhooks on workspaces.",
+ "description": "Creates a new webhook on the specified workspace.\n\nWorkspace webhooks are fired for events from all repositories contained\nby that workspace.\n\nExample:\n\n```\n$ curl -X POST -u credentials -H 'Content-Type: application/json'\n https://api.bitbucket.org/2.0/workspaces/my-workspace/hooks\n -d '\n {\n \"description\": \"Webhook Description\",\n \"url\": \"https://example.com/\",\n \"active\": true,\n \"secret\": \"this is a really bad secret\",\n \"events\": [\n \"repo:push\",\n \"issue:created\",\n \"issue:updated\"\n ]\n }'\n```\n\nWhen the `secret` is provided it will be used as the key to generate a HMAC\ndigest value sent in the `X-Hub-Signature` header at delivery time. Passing\na `null` or empty `secret` or not passing a `secret` will leave the webhook's\nsecret unset. Bitbucket only generates the `X-Hub-Signature` when the webhook's\nsecret is set.\n\nThis call requires the webhook scope, as well as any scope\nthat applies to the events that the webhook subscribes to. In the\nexample above that means: `webhook`, `repository` and `issue`.\n\nThe `url` must properly resolve and cannot be an internal, non-routed address.\n\nOnly workspace owners can install webhooks on workspaces.",
"summary": "Create a webhook for a workspace",
"responses": {
"201": {
@@ -17043,7 +20937,7 @@
},
"put": {
"tags": ["Workspaces", "Webhooks"],
- "description": "Updates the specified webhook subscription.\n\nThe following properties can be mutated:\n\n* `description`\n* `url`\n* `active`\n* `events`",
+ "description": "Updates the specified webhook subscription.\n\nThe following properties can be mutated:\n\n* `description`\n* `url`\n* `secret`\n* `active`\n* `events`\n\nThe hook's secret is used as a key to generate the HMAC hex digest sent in the\n`X-Hub-Signature` header at delivery time. This signature is only generated\nwhen the hook has a secret.\n\nSet the hook's secret by passing the new value in the `secret` field. Passing a\n`null` value in the `secret` field will remove the secret from the hook. The\nhook's secret can be left unchanged by not passing the `secret` field in the\nrequest.",
"summary": "Update a webhook for a workspace",
"responses": {
"200": {
@@ -17147,6 +21041,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:workspace:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -17208,6 +21109,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:workspace:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -17234,7 +21142,7 @@
"/workspaces/{workspace}/permissions": {
"get": {
"tags": ["Workspaces"],
- "description": "Returns the list of members in a workspace\nand their permission levels.\nPermission can be:\n* `owner`\n* `collaborator`\n* `member`\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**\n\nExample:\n\n```\n$ curl -X https://api.bitbucket.org/2.0/workspaces/bbworkspace1/permissions\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"permission\": \"owner\",\n \"type\": \"workspace_membership\",\n \"user\": {\n \"type\": \"user\",\n \"uuid\": \"{470c176d-3574-44ea-bb41-89e8638bcca4}\",\n \"display_name\": \"Erik van Zijst\",\n },\n \"workspace\": {\n \"type\": \"workspace\",\n \"uuid\": \"{a15fb181-db1f-48f7-b41f-e1eff06929d6}\",\n \"slug\": \"bbworkspace1\",\n \"name\": \"Atlassian Bitbucket\",\n }\n },\n {\n \"permission\": \"member\",\n \"type\": \"workspace_membership\",\n \"user\": {\n \"type\": \"user\",\n \"nickname\": \"seanaty\",\n \"display_name\": \"Sean Conaty\",\n \"uuid\": \"{504c3b62-8120-4f0c-a7bc-87800b9d6f70}\"\n },\n \"workspace\": {\n \"type\": \"workspace\",\n \"uuid\": \"{a15fb181-db1f-48f7-b41f-e1eff06929d6}\",\n \"slug\": \"bbworkspace1\",\n \"name\": \"Atlassian Bitbucket\",\n }\n }\n ],\n \"page\": 1,\n \"size\": 2\n}\n```\n\nResults may be further [filtered](/cloud/bitbucket/rest/intro/#filtering) by\npermission by adding the following query string parameters:\n\n* `q=permission=\"owner\"`",
+ "description": "Returns the list of members in a workspace\nand their permission levels.\nPermission can be:\n* `owner`\n* `collaborator`\n* `member`\n\n**The `collaborator` role is being removed from the Bitbucket Cloud API. For more information,\nsee the [deprecation announcement](/cloud/bitbucket/deprecation-notice-collaborator-role/).**\n\n**When you move your administration from Bitbucket Cloud to admin.atlassian.com, the following fields on\n`workspace_membership` will no longer be present: `last_accessed` and `added_on`. See the\n[deprecation announcement](/cloud/bitbucket/announcement-breaking-change-workspace-membership/).**\n\nResults may be further [filtered](/cloud/bitbucket/rest/intro/#filtering) by\npermission by adding the following query string parameters:\n\n* `q=permission=\"owner\"`",
"summary": "List user permissions in a workspace",
"responses": {
"200": {
@@ -17243,6 +21151,48 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_workspace_memberships"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "permission": "owner",
+ "type": "workspace_membership",
+ "user": {
+ "type": "user",
+ "uuid": "{470c176d-3574-44ea-bb41-89e8638bcca4}",
+ "display_name": "Erik van Zijst"
+ },
+ "workspace": {
+ "type": "workspace",
+ "uuid": "{a15fb181-db1f-48f7-b41f-e1eff06929d6}",
+ "slug": "bbworkspace1",
+ "name": "Atlassian Bitbucket"
+ }
+ },
+ {
+ "permission": "member",
+ "type": "workspace_membership",
+ "user": {
+ "type": "user",
+ "nickname": "seanaty",
+ "display_name": "Sean Conaty",
+ "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}"
+ },
+ "workspace": {
+ "type": "workspace",
+ "uuid": "{a15fb181-db1f-48f7-b41f-e1eff06929d6}",
+ "slug": "bbworkspace1",
+ "name": "Atlassian Bitbucket"
+ }
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
}
}
}
@@ -17279,6 +21229,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:workspace:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -17296,7 +21253,7 @@
"/workspaces/{workspace}/permissions/repositories": {
"get": {
"tags": ["Workspaces"],
- "description": "Returns an object for each repository permission for all of a\nworkspace's repositories.\n\nPermissions returned are effective permissions: the highest level of\npermission the user has. This does not distinguish between direct and\nindirect (group) privileges.\n\nOnly users with admin permission for the team may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/permissions/repositories\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Erik van Zijst\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"admin\"\n },\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Sean Conaty\",\n \"uuid\": \"{504c3b62-8120-4f0c-a7bc-87800b9d6f70}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"write\"\n },\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Jeff Zeng\",\n \"uuid\": \"{47f92a9a-c3a3-4d0b-bc4e-782a969c5c72}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"whee\",\n \"full_name\": \"atlassian_tutorial/whee\",\n \"uuid\": \"{30ba25e9-51ff-4555-8dd0-fc7ee2fa0895}\"\n },\n \"permission\": \"admin\"\n }\n ],\n \"page\": 1,\n \"size\": 3\n}\n```\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering)\nby repository, user, or permission by adding the following query string\nparameters:\n\n* `q=repository.name=\"geordi\"` or `q=permission>\"read\"`\n* `sort=user.display_name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
+ "description": "Returns an object for each repository permission for all of a\nworkspace's repositories.\n\nPermissions returned are effective permissions: the highest level of\npermission the user has. This does not distinguish between direct and\nindirect (group) privileges.\n\nOnly users with admin permission for the team may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering)\nby repository, user, or permission by adding the following query string\nparameters:\n\n* `q=repository.name=\"geordi\"` or `q=permission>\"read\"`\n* `sort=user.display_name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
"summary": "List all repository permissions for a workspace",
"responses": {
"200": {
@@ -17305,6 +21262,62 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_repository_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Erik van Zijst",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "geordi",
+ "full_name": "atlassian_tutorial/geordi",
+ "uuid": "{85d08b4e-571d-44e9-a507-fa476535aa98}"
+ },
+ "permission": "admin"
+ },
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Sean Conaty",
+ "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "geordi",
+ "full_name": "atlassian_tutorial/geordi",
+ "uuid": "{85d08b4e-571d-44e9-a507-fa476535aa98}"
+ },
+ "permission": "write"
+ },
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Jeff Zeng",
+ "uuid": "{47f92a9a-c3a3-4d0b-bc4e-782a969c5c72}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "whee",
+ "full_name": "atlassian_tutorial/whee",
+ "uuid": "{30ba25e9-51ff-4555-8dd0-fc7ee2fa0895}"
+ },
+ "permission": "admin"
+ }
+ ],
+ "page": 1,
+ "size": 3
+ }
+ }
}
}
}
@@ -17350,6 +21363,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -17367,7 +21387,7 @@
"/workspaces/{workspace}/permissions/repositories/{repo_slug}": {
"get": {
"tags": ["Workspaces"],
- "description": "Returns an object for the repository permission of each user in the\nrequested repository.\n\nPermissions returned are effective permissions: the highest level of\npermission the user has. This does not distinguish between direct and\nindirect (group) privileges.\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nExample:\n\n```\n$ curl https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/permissions/repositories/geordi\n\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Erik van Zijst\",\n \"uuid\": \"{d301aafa-d676-4ee0-88be-962be7417567}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"admin\"\n },\n {\n \"type\": \"repository_permission\",\n \"user\": {\n \"type\": \"user\",\n \"display_name\": \"Sean Conaty\",\n \"uuid\": \"{504c3b62-8120-4f0c-a7bc-87800b9d6f70}\"\n },\n \"repository\": {\n \"type\": \"repository\",\n \"name\": \"geordi\",\n \"full_name\": \"atlassian_tutorial/geordi\",\n \"uuid\": \"{85d08b4e-571d-44e9-a507-fa476535aa98}\"\n },\n \"permission\": \"write\"\n }\n ],\n \"page\": 1,\n \"size\": 2\n}\n```\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering)\nby user, or permission by adding the following query string parameters:\n\n* `q=permission>\"read\"`\n* `sort=user.display_name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
+ "description": "Returns an object for the repository permission of each user in the\nrequested repository.\n\nPermissions returned are effective permissions: the highest level of\npermission the user has. This does not distinguish between direct and\nindirect (group) privileges.\n\nOnly users with admin permission for the repository may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `write`\n* `read`\n\nResults may be further [filtered or sorted](/cloud/bitbucket/rest/intro/#filtering)\nby user, or permission by adding the following query string parameters:\n\n* `q=permission>\"read\"`\n* `sort=user.display_name`\n\nNote that the query parameter values need to be URL escaped so that `=`\nwould become `%3D`.",
"summary": "List a repository permissions for a workspace",
"responses": {
"200": {
@@ -17376,6 +21396,47 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_repository_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Erik van Zijst",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "geordi",
+ "full_name": "atlassian_tutorial/geordi",
+ "uuid": "{85d08b4e-571d-44e9-a507-fa476535aa98}"
+ },
+ "permission": "admin"
+ },
+ {
+ "type": "repository_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Sean Conaty",
+ "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}"
+ },
+ "repository": {
+ "type": "repository",
+ "name": "geordi",
+ "full_name": "atlassian_tutorial/geordi",
+ "uuid": "{85d08b4e-571d-44e9-a507-fa476535aa98}"
+ },
+ "permission": "write"
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
}
}
}
@@ -17421,6 +21482,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket", "read:user:bitbucket"]
+ }
]
},
"parameters": [
@@ -17475,7 +21543,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/workspaces/{workspace}/pipelines-config/identity/oidc/keys.json": {
@@ -17509,7 +21588,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": []
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/workspaces/{workspace}/pipelines-config/variables": {
@@ -17540,7 +21630,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"post": {
"tags": ["Pipelines"],
@@ -17600,7 +21708,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/workspaces/{workspace}/pipelines-config/variables/{variable_uuid}": {
@@ -17650,7 +21769,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"put": {
"tags": ["Pipelines"],
@@ -17701,7 +21838,18 @@
}
}
}
- }
+ },
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
},
"delete": {
"tags": ["Pipelines"],
@@ -17742,7 +21890,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:pipeline:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["pipeline:variable"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
},
"/workspaces/{workspace}/projects": {
@@ -17782,11 +21948,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket"]
+ }
]
},
"post": {
"tags": ["Projects"],
- "description": "Creates a new project.\n\nNote that the avatar has to be embedded as either a data-url\nor a URL to an external image as shown in the examples below:\n\n```\n$ body=$(cat << EOF\n{\n \"name\": \"Mars Project\",\n \"key\": \"MARS\",\n \"description\": \"Software for colonizing mars.\",\n \"links\": {\n \"avatar\": {\n \"href\": \"data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/...\"\n }\n },\n \"is_private\": false\n}\nEOF\n)\n$ curl -H \"Content-Type: application/json\" \\\n -X POST \\\n -d \"$body\" \\\n https://api.bitbucket.org/2.0/teams/teams-in-space/projects/ | jq .\n{\n // Serialized project document\n}\n```\n\nor even:\n\n```\n$ body=$(cat << EOF\n{\n \"name\": \"Mars Project\",\n \"key\": \"MARS\",\n \"description\": \"Software for colonizing mars.\",\n \"links\": {\n \"avatar\": {\n \"href\": \"http://i.imgur.com/72tRx4w.gif\"\n }\n },\n \"is_private\": false\n}\nEOF\n)\n$ curl -H \"Content-Type: application/json\" \\\n -X POST \\\n -d \"$body\" \\\n https://api.bitbucket.org/2.0/teams/teams-in-space/projects/ | jq .\n{\n // Serialized project document\n}\n```",
+ "description": "Creates a new project.\n\nNote that the avatar has to be embedded as either a data-url\nor a URL to an external image as shown in the examples below:\n\n```\n$ body=$(cat << EOF\n{\n \"name\": \"Mars Project\",\n \"key\": \"MARS\",\n \"description\": \"Software for colonizing mars.\",\n \"links\": {\n \"avatar\": {\n \"href\": \"data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/...\"\n }\n },\n \"is_private\": false\n}\nEOF\n)\n$ curl -H \"Content-Type: application/json\" \\\n -X POST \\\n -d \"$body\" \\\n https://api.bitbucket.org/2.0/workspaces/teams-in-space/projects/ | jq .\n{\n // Serialized project document\n}\n```\n\nor even:\n\n```\n$ body=$(cat << EOF\n{\n \"name\": \"Mars Project\",\n \"key\": \"MARS\",\n \"description\": \"Software for colonizing mars.\",\n \"links\": {\n \"avatar\": {\n \"href\": \"http://i.imgur.com/72tRx4w.gif\"\n }\n },\n \"is_private\": false\n}\nEOF\n)\n$ curl -H \"Content-Type: application/json\" \\\n -X POST \\\n -d \"$body\" \\\n https://api.bitbucket.org/2.0/workspaces/teams-in-space/projects/ | jq .\n{\n // Serialized project document\n}\n```",
"summary": "Create a project in a workspace",
"responses": {
"201": {
@@ -17841,6 +22014,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"parameters": [
@@ -17858,7 +22038,7 @@
"/workspaces/{workspace}/projects/{project_key}": {
"delete": {
"tags": ["Projects"],
- "description": "Deletes this project. This is an irreversible operation.\n\nYou cannot delete a project that still contains repositories.\nTo delete the project, [delete](/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-delete)\nor transfer the repositories first.\n\nExample:\n```\n$ curl -X DELETE https://api.bitbucket.org/2.0/bbworkspace1/PROJ\n```",
+ "description": "Deletes this project. This is an irreversible operation.\n\nYou cannot delete a project that still contains repositories.\nTo delete the project, [delete](/cloud/bitbucket/rest/api-group-repositories/#api-repositories-workspace-repo-slug-delete)\nor transfer the repositories first.\n\nExample:\n```\n$ curl -X DELETE https://api.bitbucket.org/2.0/workspaces/bbworkspace1/projects/PROJ\n```",
"summary": "Delete a project for a workspace",
"responses": {
"204": {
@@ -17895,6 +22075,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"get": {
@@ -17953,6 +22140,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket"]
+ }
]
},
"put": {
@@ -18030,6 +22224,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"parameters": [
@@ -18056,7 +22257,7 @@
"/workspaces/{workspace}/projects/{project_key}/branching-model": {
"get": {
"tags": ["Branching model"],
- "description": "Return the branching model set at the project level. This view is\nread-only. The branching model settings can be changed using the\n[settings](#api-workspaces-workspace-projects-project-key-branching-model-settings-get)\nAPI.\n\nThe returned object:\n\n1. Always has a `development` property. `development.name` is\n the user-specified branch that can be inherited by an individual repository's\n branching model.\n2. Might have a `production` property. `production` will not\n be present when `production` is disabled.\n `production.name` is the user-specified branch that can be\n inherited by an individual repository's branching model.\n3. Always has a `branch_types` array which contains all enabled branch\n types.\n\nExample body:\n\n```\n{\n \"development\": {\n \"name\": \"master\",\n \"use_mainbranch\": true\n },\n \"production\": {\n \"name\": \"production\",\n \"use_mainbranch\": false\n },\n \"branch_types\": [\n {\n \"kind\": \"release\",\n \"prefix\": \"release/\"\n },\n {\n \"kind\": \"hotfix\",\n \"prefix\": \"hotfix/\"\n },\n {\n \"kind\": \"feature\",\n \"prefix\": \"feature/\"\n },\n {\n \"kind\": \"bugfix\",\n \"prefix\": \"bugfix/\"\n }\n ],\n \"type\": \"project_branching_model\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/.../branching-model\"\n }\n }\n}\n```",
+ "description": "Return the branching model set at the project level. This view is\nread-only. The branching model settings can be changed using the\n[settings](#api-workspaces-workspace-projects-project-key-branching-model-settings-get)\nAPI.\n\nThe returned object:\n\n1. Always has a `development` property. `development.name` is\n the user-specified branch that can be inherited by an individual repository's\n branching model.\n2. Might have a `production` property. `production` will not\n be present when `production` is disabled.\n `production.name` is the user-specified branch that can be\n inherited by an individual repository's branching model.\n3. Always has a `branch_types` array which contains all enabled branch\n types.",
"summary": "Get the branching model for a project",
"responses": {
"200": {
@@ -18065,6 +22266,44 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/project_branching_model"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "development": {
+ "name": "master",
+ "use_mainbranch": true
+ },
+ "production": {
+ "name": "production",
+ "use_mainbranch": false
+ },
+ "branch_types": [
+ {
+ "kind": "release",
+ "prefix": "release/"
+ },
+ {
+ "kind": "hotfix",
+ "prefix": "hotfix/"
+ },
+ {
+ "kind": "feature",
+ "prefix": "feature/"
+ },
+ {
+ "kind": "bugfix",
+ "prefix": "bugfix/"
+ }
+ ],
+ "type": "project_branching_model",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/.../branching-model"
+ }
+ }
+ }
+ }
}
}
}
@@ -18110,6 +22349,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
]
},
"parameters": [
@@ -18136,7 +22382,7 @@
"/workspaces/{workspace}/projects/{project_key}/branching-model/settings": {
"get": {
"tags": ["Branching model"],
- "description": "Return the branching model configuration for a project. The returned\nobject:\n\n1. Always has a `development` property for the development branch.\n2. Always a `production` property for the production branch. The\n production branch can be disabled.\n3. The `branch_types` contains all the branch types.\n\n\nThis is the raw configuration for the branching model. A client\nwishing to see the branching model with its actual current branches may find the\n[active model API](#api-workspaces-workspace-projects-project-key-branching-model-get)\nmore useful.\n\nExample body:\n\n```\n{\n \"development\": {\n \"name\": null,\n \"use_mainbranch\": true\n },\n \"production\": {\n \"name\": \"production\",\n \"use_mainbranch\": false,\n \"enabled\": false\n },\n \"branch_types\": [\n {\n \"kind\": \"release\",\n \"enabled\": true,\n \"prefix\": \"release/\"\n },\n {\n \"kind\": \"hotfix\",\n \"enabled\": true,\n \"prefix\": \"hotfix/\"\n },\n {\n \"kind\": \"feature\",\n \"enabled\": true,\n \"prefix\": \"feature/\"\n },\n {\n \"kind\": \"bugfix\",\n \"enabled\": false,\n \"prefix\": \"bugfix/\"\n }\n ],\n \"type\": \"branching_model_settings\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/.../branching-model/settings\"\n }\n }\n}\n```",
+ "description": "Return the branching model configuration for a project. The returned\nobject:\n\n1. Always has a `development` property for the development branch.\n2. Always a `production` property for the production branch. The\n production branch can be disabled.\n3. The `branch_types` contains all the branch types.\n\n\nThis is the raw configuration for the branching model. A client\nwishing to see the branching model with its actual current branches may find the\n[active model API](#api-workspaces-workspace-projects-project-key-branching-model-get)\nmore useful.",
"summary": "Get the branching model config for a project",
"responses": {
"200": {
@@ -18145,6 +22391,49 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/branching_model_settings"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "development": {
+ "name": "null",
+ "use_mainbranch": true
+ },
+ "production": {
+ "name": "production",
+ "use_mainbranch": false,
+ "enabled": false
+ },
+ "branch_types": [
+ {
+ "kind": "release",
+ "enabled": true,
+ "prefix": "release/"
+ },
+ {
+ "kind": "hotfix",
+ "enabled": true,
+ "prefix": "hotfix/"
+ },
+ {
+ "kind": "feature",
+ "enabled": true,
+ "prefix": "feature/"
+ },
+ {
+ "kind": "bugfix",
+ "enabled": false,
+ "prefix": "bugfix/"
+ }
+ ],
+ "type": "branching_model_settings",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/.../branching-model/settings"
+ }
+ }
+ }
+ }
}
}
}
@@ -18190,11 +22479,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"put": {
"tags": ["Branching model"],
- "description": "Update the branching model configuration for a project.\n\nThe `development` branch can be configured to a specific branch or to\ntrack the main branch. Any branch name can be supplied, but will only\nsuccessfully be applied to a repository via inheritance if that branch\nexists for that repository. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. A request without a\n`development` property will leave the development branch unchanged.\n\nThe `production` branch can be a specific branch, the main\nbranch or disabled. Any branch name can be supplied, but will only\nsuccessfully be applied to a repository via inheritance if that branch\nexists for that repository. The `enabled` property can be used to enable (`true`)\nor disable (`false`) it. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. A request without a\n`production` property will leave the production branch unchanged.\n\nThe `branch_types` property contains the branch types to be updated.\nOnly the branch types passed will be updated. All updates will be\nrejected if it would leave the branching model in an invalid state.\nFor branch types this means that:\n\n1. The prefixes for all enabled branch types are valid. For example,\n it is not possible to use '*' inside a Git prefix.\n2. A prefix of an enabled branch type must not be a prefix of another\n enabled branch type. This is to ensure that a branch can be easily\n classified by its prefix unambiguously.\n\nIt is possible to store an invalid prefix if that branch type would be\nleft disabled. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. Each branch type must\nhave a `kind` property to identify it.\n\nExample Body:\n\n```\n {\n \"development\": {\n \"use_mainbranch\": true\n },\n \"production\": {\n \"enabled\": true,\n \"use_mainbranch\": false,\n \"name\": \"production\"\n },\n \"branch_types\": [\n {\n \"kind\": \"bugfix\",\n \"enabled\": true,\n \"prefix\": \"bugfix/\"\n },\n {\n \"kind\": \"feature\",\n \"enabled\": true,\n \"prefix\": \"feature/\"\n },\n {\n \"kind\": \"hotfix\",\n \"prefix\": \"hotfix/\"\n },\n {\n \"kind\": \"release\",\n \"enabled\": false,\n }\n ]\n }\n```",
+ "description": "Update the branching model configuration for a project.\n\nThe `development` branch can be configured to a specific branch or to\ntrack the main branch. Any branch name can be supplied, but will only\nsuccessfully be applied to a repository via inheritance if that branch\nexists for that repository. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. A request without a\n`development` property will leave the development branch unchanged.\n\nThe `production` branch can be a specific branch, the main\nbranch or disabled. Any branch name can be supplied, but will only\nsuccessfully be applied to a repository via inheritance if that branch\nexists for that repository. The `enabled` property can be used to enable (`true`)\nor disable (`false`) it. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. A request without a\n`production` property will leave the production branch unchanged.\n\nThe `branch_types` property contains the branch types to be updated.\nOnly the branch types passed will be updated. All updates will be\nrejected if it would leave the branching model in an invalid state.\nFor branch types this means that:\n\n1. The prefixes for all enabled branch types are valid. For example,\n it is not possible to use '*' inside a Git prefix.\n2. A prefix of an enabled branch type must not be a prefix of another\n enabled branch type. This is to ensure that a branch can be easily\n classified by its prefix unambiguously.\n\nIt is possible to store an invalid prefix if that branch type would be\nleft disabled. Only the passed properties will be updated. The\nproperties not passed will be left unchanged. Each branch type must\nhave a `kind` property to identify it.",
"summary": "Update the branching model config for a project",
"responses": {
"200": {
@@ -18203,6 +22499,40 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/branching_model_settings"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "development": {
+ "use_mainbranch": true
+ },
+ "production": {
+ "enabled": true,
+ "use_mainbranch": false,
+ "name": "production"
+ },
+ "branch_types": [
+ {
+ "kind": "bugfix",
+ "enabled": true,
+ "prefix": "bugfix/"
+ },
+ {
+ "kind": "feature",
+ "enabled": true,
+ "prefix": "feature/"
+ },
+ {
+ "kind": "hotfix",
+ "prefix": "hotfix/"
+ },
+ {
+ "kind": "release",
+ "enabled": false
+ }
+ ]
+ }
+ }
}
}
}
@@ -18258,6 +22588,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"parameters": [
@@ -18284,7 +22621,7 @@
"/workspaces/{workspace}/projects/{project_key}/default-reviewers": {
"get": {
"tags": ["Projects"],
- "description": "Return a list of all default reviewers for a project. This is a list of users that will be added as default\nreviewers to pull requests for any repository within the project.\n\nExample:\n```\n$ curl https://api.bitbucket.org/2.0/.../projects/.../default-reviewers | jq .\n{\n \"pagelen\": 10,\n \"values\": [\n {\n \"user\": {\n \"display_name\": \"Davis Lee\",\n \"uuid\": \"{f0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6}\"\n },\n \"reviewer_type\": \"project\",\n \"type\": \"default_reviewer\"\n },\n {\n \"user\": {\n \"display_name\": \"Jorge Rodriguez\",\n \"uuid\": \"{1aa43376-260d-4a0b-9660-f62672b9655d}\"\n },\n \"reviewer_type\": \"project\",\n \"type\": \"default_reviewer\"\n }\n ],\n \"page\": 1,\n \"size\": 2\n}\n```",
+ "description": "Return a list of all default reviewers for a project. This is a list of users that will be added as default\nreviewers to pull requests for any repository within the project.",
"summary": "List the default reviewers in a project",
"responses": {
"200": {
@@ -18293,6 +22630,33 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_default_reviewer_and_type"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "user": {
+ "display_name": "Davis Lee",
+ "uuid": "{f0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6}"
+ },
+ "reviewer_type": "project",
+ "type": "default_reviewer"
+ },
+ {
+ "user": {
+ "display_name": "Jorge Rodriguez",
+ "uuid": "{1aa43376-260d-4a0b-9660-f62672b9655d}"
+ },
+ "reviewer_type": "project",
+ "type": "default_reviewer"
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
}
}
}
@@ -18328,6 +22692,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"parameters": [
@@ -18358,7 +22729,7 @@
"summary": "Remove the specific user from the project's default reviewers",
"responses": {
"204": {
- "description": "The specified user was removed from the list of project default reviewers"
+ "description": "The specified user was removed from the list of project default reviewers"
},
"400": {
"description": "If the specified user is not a default reviewer for the project",
@@ -18401,11 +22772,18 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"get": {
"tags": ["Projects"],
- "description": "Returns the specified default reviewer.\n\nExample:\n```\n$ curl https://api.bitbucket.org/2.0/.../default-reviewers/%7Bf0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6%7D\n{\n \"display_name\": \"Davis Lee\",\n \"type\": \"user\",\n \"uuid\": \"{f0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6}\"\n}\n```",
+ "description": "Returns the specified default reviewer.",
"summary": "Get a default reviewer",
"responses": {
"200": {
@@ -18414,6 +22792,15 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/user"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "display_name": "Davis Lee",
+ "type": "user",
+ "uuid": "{f0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6}"
+ }
+ }
}
}
}
@@ -18459,19 +22846,48 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:pullrequest:bitbucket"]
+ }
]
},
"put": {
"tags": ["Projects"],
- "description": "Adds the specified user to the project's list of default reviewers. The method is\nidempotent. Accepts an optional body containing the `uuid` of the user to be added.\n\nExample:\n```\n$ curl -XPUT https://api.bitbucket.org/2.0/.../default-reviewers/%7Bf0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6%7D\n-d { 'uuid': '{f0e0e8e9-66c1-4b85-a784-44a9eb9ef1a6}' }\n\nHTTP/1.1 204\n```",
+ "description": "Adds the specified user to the project's list of default reviewers. The method is\nidempotent. Accepts an optional body containing the `uuid` of the user to be added.",
"summary": "Add the specific user as a default reviewer for the project",
"responses": {
- "204": {
+ "200": {
"description": "The specified user was added as a project default reviewer",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/user"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "display_name": "Yaniv Sagy",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/users/%7Bdd5db7f2-6389-458d-a62a-716773910b7a%7D"
+ },
+ "avatar": {
+ "href": "https://secure.gravatar.com/avatar/YS-2.png"
+ },
+ "html": {
+ "href": "https://api.bitbucket.org/%7Bdd5db7f2-6389-458d-a62a-716773910b7a%7D/"
+ }
+ },
+ "type": "user",
+ "uuid": "{dd5db7f2-6389-458d-a62a-716773910b7a}",
+ "account_id": "712020:4efe52fa-b4b4-475b-9eb0-c0a23b7eb194",
+ "nickname": "Yaniv Sagy"
+ }
+ }
}
}
}
@@ -18517,6 +22933,13 @@
{
"api_key": []
}
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["admin:project:bitbucket"]
+ }
]
},
"parameters": [
@@ -18552,7 +22975,7 @@
"/workspaces/{workspace}/projects/{project_key}/deploy-keys": {
"get": {
"tags": ["Deployments"],
- "description": "Returns all deploy keys belonging to a project.\n\nExample:\n```\n$ curl -H \"Authorization \" \\\nhttps://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys\n\nOutput:\n{\n \"pagelen\":10,\n \"values\":[\n {\n \"comment\":\"thakseth@C02W454JHTD8\",\n \"last_used\":null,\n \"links\":{\n \"self\":{\n \"href\":\"https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/1234\"\n }\n },\n \"label\":\"test\",\n \"project\":{\n \"links\":{\n \"self\":{\n \"href\":\"https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT\"\n }\n },\n \"type\":\"project\",\n \"name\":\"cooperative standard\",\n \"key\":\"TEST_PROJECT\",\n \"uuid\":\"{3b3e510b-7f2b-414d-a2b7-76c4e405c1c0}\"\n },\n \"created_on\":\"2021-07-28T21:20:19.491721+00:00\",\n \"key\":\"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDX5yfMOEw6HG9jKTYTisbmDTJ4MCUTSVGr5e4OWvY3UuI2A6F8SdzQqa2f5BABA/4g5Sk5awJrYHlNu3EzV1V2I44tR3A4fnZAG71ZKyDPi1wvdO7UYmFgxV/Vd18H9QZFFjICGDM7W0PT2mI0kON/jN3qNWi+GiB/xgaeQKSqynysdysDp8lnnI/8Sh3ikURP9UP83ShRCpAXszOUNaa+UUlcYQYBDLIGowsg51c4PCkC3DNhAMxppkNRKoSOWwyl+oRVXHSDylkiJSBHW3HH4Q6WHieD54kGrjbhWBKdnnxKX7QAAZBDseY+t01N36m6/ljvXSUEcBWtHxBYye0r\",\n \"type\":\"project_deploy_key\",\n \"id\":1234\n }\n ],\n \"page\":1,\n \"size\":1\n}\n```",
+ "description": "Returns all deploy keys belonging to a project.",
"summary": "List project deploy keys",
"responses": {
"200": {
@@ -18561,6 +22984,42 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/paginated_project_deploy_keys"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "comment": "thakseth@C02W454JHTD8",
+ "last_used": null,
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/1234"
+ }
+ },
+ "label": "test",
+ "project": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT"
+ }
+ },
+ "type": "project",
+ "name": "cooperative standard",
+ "key": "TEST_PROJECT",
+ "uuid": "{3b3e510b-7f2b-414d-a2b7-76c4e405c1c0}"
+ },
+ "created_on": "2021-07-28T21:20:19.491721+00:00",
+ "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDX5yfMOEw6HG9jKTYTisbmDTJ4MCUTSVGr5e4OWvY3UuI2A6F8SdzQqa2f5BABA/4g5Sk5awJrYHlNu3EzV1V2I44tR3A4fnZAG71ZKyDPi1wvdO7UYmFgxV/Vd18H9QZFFjICGDM7W0PT2mI0kON/jN3qNWi+GiB/xgaeQKSqynysdysDp8lnnI/8Sh3ikURP9UP83ShRCpAXszOUNaa+UUlcYQYBDLIGowsg51c4PCkC3DNhAMxppkNRKoSOWwyl+oRVXHSDylkiJSBHW3HH4Q6WHieD54kGrjbhWBKdnnxKX7QAAZBDseY+t01N36m6/ljvXSUEcBWtHxBYye0r",
+ "type": "project_deploy_key",
+ "id": 1234
+ }
+ ],
+ "page": 1,
+ "size": 1
+ }
+ }
}
}
}
@@ -18600,7 +23059,7 @@
},
"post": {
"tags": ["Deployments"],
- "description": "Create a new deploy key in a project.\n\nExample:\n```\n$ curl -XPOST \\\n-H \"Authorization \" \\\n-H \"Content-type: application/json\" \\\nhttps://api.bitbucket.org/2.0/workspaces/jzeng/projects/JZ/deploy-keys/ -d \\\n'{\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5 mleu@C02W454JHTD8\",\n \"label\": \"mydeploykey\"\n}'\n\nOutput:\n{\n \"comment\": \"mleu@C02W454JHTD8\",\n \"last_used\": null,\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/workspaces/testadfsa/projects/ASDF/deploy-keys/5/\"\n }\n },\n \"label\": \"myprojectkey\",\n \"project\": {\n ...\n },\n \"created_on\": \"2021-08-10T05:28:00.570859+00:00\",\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5\",\n \"type\": \"project_deploy_key\",\n \"id\": 5\n}\n```",
+ "description": "Create a new deploy key in a project.\n\nExample:\n```\n$ curl -X POST \\\n-H \"Authorization \" \\\n-H \"Content-type: application/json\" \\\nhttps://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/ -d \\\n'{\n \"key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5 mleu@C02W454JHTD8\",\n \"label\": \"mydeploykey\"\n}'\n```",
"summary": "Create a project deploy key",
"responses": {
"200": {
@@ -18609,6 +23068,35 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/project_deploy_key"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "comment": "mleu@C02W454JHTD8",
+ "last_used": null,
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/5/"
+ }
+ },
+ "label": "myprojectkey",
+ "project": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT"
+ }
+ },
+ "type": "project",
+ "name": "cooperative standard",
+ "key": "TEST_PROJECT",
+ "uuid": "{3b3e510b-7f2b-414d-a2b7-76c4e405c1c0}"
+ },
+ "created_on": "2021-08-10T05:28:00.570859+00:00",
+ "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAK/b1cHHDr/TEV1JGQl+WjCwStKG6Bhrv0rFpEsYlyTBm1fzN0VOJJYn4ZOPCPJwqse6fGbXntEs+BbXiptR+++HycVgl65TMR0b5ul5AgwrVdZdT7qjCOCgaSV74/9xlHDK8oqgGnfA7ZoBBU+qpVyaloSjBdJfLtPY/xqj4yHnXKYzrtn/uFc4Kp9Tb7PUg9Io3qohSTGJGVHnsVblq/rToJG7L5xIo0OxK0SJSQ5vuId93ZuFZrCNMXj8JDHZeSEtjJzpRCBEXHxpOPhAcbm4MzULgkFHhAVgp4JbkrT99/wpvZ7r9AdkTg7HGqL3rlaDrEcWfL7Lu6TnhBdq5",
+ "type": "project_deploy_key",
+ "id": 5
+ }
+ }
}
}
}
@@ -18680,7 +23168,7 @@
"/workspaces/{workspace}/projects/{project_key}/deploy-keys/{key_id}": {
"delete": {
"tags": ["Deployments"],
- "description": "This deletes a deploy key from a project.\n\nExample:\n```\n$ curl -XDELETE \\\n-H \"Authorization \" \\\nhttps://api.bitbucket.org/2.0/workspaces/jzeng/projects/JZ/deploy-keys/1234\n```",
+ "description": "This deletes a deploy key from a project.",
"summary": "Delete a deploy key from a project",
"responses": {
"204": {
@@ -18721,7 +23209,7 @@
},
"get": {
"tags": ["Deployments"],
- "description": "Returns the deploy key belonging to a specific key ID.\n\nExample:\n```\n$ curl -H \"Authorization \" \\\nhttps://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/1234\n\nOutput:\n{\n \"pagelen\":10,\n \"values\":[\n {\n \"comment\":\"thakseth@C02W454JHTD8\",\n \"last_used\":null,\n \"links\":{\n \"self\":{\n \"href\":\"https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/1234\"\n }\n },\n \"label\":\"test\",\n \"project\":{\n \"links\":{\n \"self\":{\n \"href\":\"https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT\"\n }\n },\n \"type\":\"project\",\n \"name\":\"cooperative standard\",\n \"key\":\"TEST_PROJECT\",\n \"uuid\":\"{3b3e510b-7f2b-414d-a2b7-76c4e405c1c0}\"\n },\n \"created_on\":\"2021-07-28T21:20:19.491721+00:00\",\n \"key\":\"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDX5yfMOEw6HG9jKTYTisbmDTJ4MCUTSVGr5e4OWvY3UuI2A6F8SdzQqa2f5BABA/4g5Sk5awJrYHlNu3EzV1V2I44tR3A4fnZAG71ZKyDPi1wvdO7UYmFgxV/Vd18H9QZFFjICGDM7W0PT2mI0kON/jN3qNWi+GiB/xgaeQKSqynysdysDp8lnnI/8Sh3ikURP9UP83ShRCpAXszOUNaa+UUlcYQYBDLIGowsg51c4PCkC3DNhAMxppkNRKoSOWwyl+oRVXHSDylkiJSBHW3HH4Q6WHieD54kGrjbhWBKdnnxKX7QAAZBDseY+t01N36m6/ljvXSUEcBWtHxBYye0r\",\n \"type\":\"project_deploy_key\",\n \"id\":1234\n }\n ],\n}\n```",
+ "description": "Returns the deploy key belonging to a specific key ID.",
"summary": "Get a project deploy key",
"responses": {
"200": {
@@ -18730,6 +23218,40 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/project_deploy_key"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "comment": "thakseth@C02W454JHTD8",
+ "last_used": null,
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT/deploy-keys/1234"
+ }
+ },
+ "label": "test",
+ "project": {
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/standard/projects/TEST_PROJECT"
+ }
+ },
+ "type": "project",
+ "name": "cooperative standard",
+ "key": "TEST_PROJECT",
+ "uuid": "{3b3e510b-7f2b-414d-a2b7-76c4e405c1c0}"
+ },
+ "created_on": "2021-07-28T21:20:19.491721+00:00",
+ "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDX5yfMOEw6HG9jKTYTisbmDTJ4MCUTSVGr5e4OWvY3UuI2A6F8SdzQqa2f5BABA/4g5Sk5awJrYHlNu3EzV1V2I44tR3A4fnZAG71ZKyDPi1wvdO7UYmFgxV/Vd18H9QZFFjICGDM7W0PT2mI0kON/jN3qNWi+GiB/xgaeQKSqynysdysDp8lnnI/8Sh3ikURP9UP83ShRCpAXszOUNaa+UUlcYQYBDLIGowsg51c4PCkC3DNhAMxppkNRKoSOWwyl+oRVXHSDylkiJSBHW3HH4Q6WHieD54kGrjbhWBKdnnxKX7QAAZBDseY+t01N36m6/ljvXSUEcBWtHxBYye0r",
+ "type": "project_deploy_key",
+ "id": 1234
+ }
+ ]
+ }
+ }
}
}
}
@@ -18797,11 +23319,795 @@
}
]
},
+ "/workspaces/{workspace}/projects/{project_key}/permissions-config/groups": {
+ "get": {
+ "tags": ["Projects"],
+ "description": "Returns a paginated list of explicit group permissions for the given project.\nThis endpoint does not support BBQL features.",
+ "summary": "List explicit group permissions for a project",
+ "responses": {
+ "200": {
+ "description": "Paginated list of project group permissions",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/paginated_project_group_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "project_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Administrators",
+ "slug": "administrators"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/groups/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ },
+ {
+ "type": "project_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Developers",
+ "slug": "developers"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/groups/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c"
+ }
+ }
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The user doesn't have admin access to the project.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or both of the workspace and project don't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket", "read:user:bitbucket"]
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "project_key",
+ "in": "path",
+ "description": "The project in question. This is the actual key assigned to the project.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
+ "/workspaces/{workspace}/projects/{project_key}/permissions-config/groups/{group_slug}": {
+ "delete": {
+ "tags": ["Projects"],
+ "description": "Deletes the project group permission between the requested project and group, if one exists.\n\nOnly users with admin permission for the project may access this resource.",
+ "summary": "Delete an explicit group permission for a project",
+ "responses": {
+ "204": {
+ "description": "The project group permission was deleted and no content returned."
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The requesting user isn't an admin of the project, or the authentication method was not via app password.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and group doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ },
+ "get": {
+ "tags": ["Projects"],
+ "description": "Returns the group permission for a given group and project.\n\nOnly users with admin permission for the project may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `create-repo`\n* `write`\n* `read`\n* `none`",
+ "summary": "Get an explicit group permission for a project",
+ "responses": {
+ "200": {
+ "description": "Project group permission",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/project_group_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "project_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Administrators",
+ "slug": "administrators"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/groups/administrators"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The user doesn't have admin access to the project.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and group doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket", "read:user:bitbucket"]
+ }
+ ]
+ },
+ "put": {
+ "tags": ["Projects"],
+ "description": "Updates the group permission, or grants a new permission if one does not already exist.\n\nOnly users with admin permission for the project may access this resource.\n\nDue to security concerns, the JWT and OAuth authentication methods are unsupported.\nThis is to ensure integrations and add-ons are not allowed to change permissions.\n\nPermissions can be:\n\n* `admin`\n* `create-repo`\n* `write`\n* `read`",
+ "summary": "Update an explicit group permission for a project",
+ "responses": {
+ "200": {
+ "description": "Project group permission updated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/project_group_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "project_group_permission",
+ "group": {
+ "type": "group",
+ "name": "Administrators",
+ "slug": "administrators"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/groups/administrators"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "No permission value was provided or the value is invalid(not one of read, write, create-repo, or admin).",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "402": {
+ "description": "You have reached your plan's user limit and must upgrade before giving access to additional users.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The requesting user isn't an admin of the project, or the authentication method was not via app password.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and group doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "requestBody": {
+ "$ref": "#/components/requestBodies/bitbucket.apps.permissions.serializers.ProjectPermissionUpdateSchema"
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "group_slug",
+ "in": "path",
+ "description": "Slug of the requested group.",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "project_key",
+ "in": "path",
+ "description": "The project in question. This is the actual key assigned to the project.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
+ "/workspaces/{workspace}/projects/{project_key}/permissions-config/users": {
+ "get": {
+ "tags": ["Projects"],
+ "description": "Returns a paginated list of explicit user permissions for the given project.\nThis endpoint does not support BBQL features.",
+ "summary": "List explicit user permissions for a project",
+ "responses": {
+ "200": {
+ "description": "Paginated list of explicit user permissions.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/paginated_project_user_permissions"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "pagelen": 10,
+ "values": [
+ {
+ "type": "project_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ },
+ {
+ "type": "project_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Sean Conaty",
+ "uuid": "{504c3b62-8120-4f0c-a7bc-87800b9d6f70}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324c"
+ }
+ }
+ }
+ ],
+ "page": 1,
+ "size": 2
+ }
+ }
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The user doesn't have admin access to the project.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or both of the workspace and project don't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket", "read:user:bitbucket"]
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "project_key",
+ "in": "path",
+ "description": "The project in question. This is the actual key assigned to the project.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
+ "/workspaces/{workspace}/projects/{project_key}/permissions-config/users/{selected_user_id}": {
+ "delete": {
+ "tags": ["Projects"],
+ "description": "Deletes the project user permission between the requested project and user, if one exists.\n\nOnly users with admin permission for the project may access this resource.\n\nDue to security concerns, the JWT and OAuth authentication methods are unsupported.\nThis is to ensure integrations and add-ons are not allowed to change permissions.",
+ "summary": "Delete an explicit user permission for a project",
+ "responses": {
+ "204": {
+ "description": "The project user permission was deleted and no content returned."
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The requesting user isn't an admin of the project, or the authentication method was not via app password.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and selected user doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ },
+ "get": {
+ "tags": ["Projects"],
+ "description": "Returns the explicit user permission for a given user and project.\n\nOnly users with admin permission for the project may access this resource.\n\nPermissions can be:\n\n* `admin`\n* `create-repo`\n* `write`\n* `read`\n* `none`",
+ "summary": "Get an explicit user permission for a project",
+ "responses": {
+ "200": {
+ "description": "Explicit user permission for user and project",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/project_user_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "project_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ },
+ "permission": "admin",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The requesting user isn't an admin of the project.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and selected user doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ],
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:project:bitbucket", "read:user:bitbucket"]
+ }
+ ]
+ },
+ "put": {
+ "tags": ["Projects"],
+ "description": "Updates the explicit user permission for a given user and project. The selected\nuser must be a member of the workspace, and cannot be the workspace owner.\n\nOnly users with admin permission for the project may access this resource.\n\nDue to security concerns, the JWT and OAuth authentication methods are unsupported.\nThis is to ensure integrations and add-ons are not allowed to change permissions.\n\nPermissions can be:\n\n* `admin`\n* `create-repo`\n* `write`\n* `read`",
+ "summary": "Update an explicit user permission for a project",
+ "responses": {
+ "200": {
+ "description": "Explicit user permission updated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/project_user_permission"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "type": "project_user_permission",
+ "user": {
+ "type": "user",
+ "display_name": "Colin Cameron",
+ "uuid": "{d301aafa-d676-4ee0-88be-962be7417567}",
+ "account_id": "557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ },
+ "permission": "write",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/workspaces/atlassian_tutorial/projects/PRJ/permissions-config/users/557058:ba8948b2-49da-43a9-9e8b-e7249b8e324a"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "No permission value was provided or the value is invalid (not one of read, write, create-repo, or admin)",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "The user couldn't be authenticated.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "402": {
+ "description": "You have reached your plan's user limit and must upgrade before giving access to additional users.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "403": {
+ "description": "The requesting user isn't an admin of the project, or the authentication method was not via app password.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "One or more of the workspace, project, and selected user doesn't exist for the given identifiers or the requesting user is not authenticated",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/error"
+ }
+ }
+ }
+ }
+ },
+ "requestBody": {
+ "$ref": "#/components/requestBodies/bitbucket.apps.permissions.serializers.ProjectPermissionUpdateSchema"
+ },
+ "security": [
+ {
+ "oauth2": ["project:admin"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
+ },
+ "parameters": [
+ {
+ "name": "project_key",
+ "in": "path",
+ "description": "The project in question. This is the actual key assigned to the project.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "selected_user_id",
+ "in": "path",
+ "description": "This can either be the username, the user's UUID surrounded by curly-braces,\nfor example: {account UUID}, or the user's Atlassian ID.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "workspace",
+ "in": "path",
+ "description": "This can either be the workspace ID (slug) or the workspace UUID\nsurrounded by curly-braces, for example: `{workspace UUID}`.\n",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ]
+ },
"/workspaces/{workspace}/search/code": {
"get": {
"tags": ["Search"],
"summary": "Search for code in a workspace",
- "description": "Search for code in the repositories of the specified workspace.\n\nSearching across all repositories:\n\n```\ncurl 'https://api.bitbucket.org/2.0/workspaces/workspace_slug_or_uuid/search/code?search_query=foo'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 2,\n \"content_matches\": [\n {\n \"lines\": [\n {\n \"line\": 2,\n \"segments\": []\n },\n {\n \"line\": 3,\n \"segments\": [\n {\n \"text\": \"def \"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \"():\"\n }\n ]\n },\n {\n \"line\": 4,\n \"segments\": [\n {\n \"text\": \" print(\\\"snek\\\")\"\n }\n ]\n },\n {\n \"line\": 5,\n \"segments\": []\n }\n ]\n }\n ],\n \"path_matches\": [\n {\n \"text\": \"src/\"\n },\n {\n \"text\": \"foo\",\n \"match\": true\n },\n {\n \"text\": \".py\"\n }\n ],\n \"file\": {\n \"path\": \"src/foo.py\",\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n }\n }\n }\n ]\n}\n```\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both as in the example above.\n\nYou can use the same syntax for the search query as in the UI, e.g.\nto only search within a specific repository:\n\n```\ncurl 'https://api.bitbucket.org/2.0/workspaces/my-workspace/search/code?search_query=foo+repo:demo'\n# results from the \"demo\" repository\n```\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files (the `%2B` is a URL-encoded `+`):\n\n```\ncurl 'https://api.bitbucket.org/2.0/workspaces/my-workspace/search/code'\\\n '?search_query=foo&fields=%2Bvalues.file.commit.repository'\n{\n \"size\": 1,\n \"page\": 1,\n \"pagelen\": 10,\n \"query_substituted\": false,\n \"values\": [\n {\n \"type\": \"code_search_result\",\n \"content_match_count\": 1,\n \"content_matches\": [...],\n \"path_matches\": [...],\n \"file\": {\n \"commit\": {\n \"type\": \"commit\",\n \"hash\": \"ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/commit/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo/commits/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b\"\n }\n },\n \"repository\": {\n \"name\": \"demo\",\n \"type\": \"repository\",\n \"full_name\": \"my-workspace/demo\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo\"\n },\n \"html\": {\n \"href\": \"https://bitbucket.org/my-workspace/demo\"\n },\n \"avatar\": {\n \"href\": \"https://bytebucket.org/ravatar/%7B850e1749-781a-4115-9316-df39d0600e7a%7D?ts=default\"\n }\n },\n \"uuid\": \"{850e1749-781a-4115-9316-df39d0600e7a}\"\n }\n },\n \"type\": \"commit_file\",\n \"links\": {\n \"self\": {\n \"href\": \"https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py\"\n }\n },\n \"path\": \"src/foo.py\"\n }\n }\n ]\n}\n```\n\nTry `fields=%2Bvalues.*.*.*.*` to get an idea what's possible.\n",
+ "description": "Search for code in the repositories of the specified workspace.\n\nNote that searches can match in the file's text (`content_matches`),\nthe path (`path_matches`), or both.\n\nYou can use the same syntax for the search query as in the UI.\nE.g. to search for \"foo\" only within the repository \"demo\",\nuse the query parameter `search_query=foo+repo:demo`.\n\nSimilar to other APIs, you can request more fields using a\n`fields` query parameter. E.g. to get some more information about\nthe repository of matched files, use the query parameter\n`search_query=foo&fields=%2Bvalues.file.commit.repository`\n(the `%2B` is a URL-encoded `+`).\n\nTry `fields=%2Bvalues.*.*.*.*` to get an idea what's possible.\n",
"operationId": "searchWorkspace",
"parameters": [
{
@@ -18852,6 +24158,80 @@
"application/json": {
"schema": {
"$ref": "#/components/schemas/search_result_page"
+ },
+ "examples": {
+ "response": {
+ "value": {
+ "size": 1,
+ "page": 1,
+ "pagelen": 10,
+ "query_substituted": false,
+ "values": [
+ {
+ "type": "code_search_result",
+ "content_match_count": 2,
+ "content_matches": [
+ {
+ "lines": [
+ {
+ "line": 2,
+ "segments": []
+ },
+ {
+ "line": 3,
+ "segments": [
+ {
+ "text": "def "
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": "():"
+ }
+ ]
+ },
+ {
+ "line": 4,
+ "segments": [
+ {
+ "text": " print(\"snek\")"
+ }
+ ]
+ },
+ {
+ "line": 5,
+ "segments": []
+ }
+ ]
+ }
+ ],
+ "path_matches": [
+ {
+ "text": "src/"
+ },
+ {
+ "text": "foo",
+ "match": true
+ },
+ {
+ "text": ".py"
+ }
+ ],
+ "file": {
+ "path": "src/foo.py",
+ "type": "commit_file",
+ "links": {
+ "self": {
+ "href": "https://api.bitbucket.org/2.0/repositories/my-workspace/demo/src/ad6964b5fe2880dbd9ddcad1c89000f1dbcbc24b/src/foo.py"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
}
}
}
@@ -18886,7 +24266,25 @@
}
}
}
- }
+ },
+ "x-atlassian-oauth2-scopes": [
+ {
+ "state": "Current",
+ "scheme": "oauth2",
+ "scopes": ["read:repository:bitbucket"]
+ }
+ ],
+ "security": [
+ {
+ "oauth2": ["repository"]
+ },
+ {
+ "basic": []
+ },
+ {
+ "api_key": []
+ }
+ ]
}
}
},
@@ -18921,7 +24319,7 @@
},
{
"name": "Issue tracker",
- "description": "The issue resources provide functionality for getting information on\nissues in an issue tracker, creating new issues, updating them and deleting\nthem.\n\nYou can access public issues without authentication, but you can't gain access\nto private repositories' issues. By authenticating, you will get the ability\nto create issues, as well as access to updating data or deleting issues you\nhave access to.\n"
+ "description": "The issue resources provide functionality for getting information on\nissues in an issue tracker, creating new issues, updating them and deleting\nthem.\n\nYou can access public issues without authentication, but you can't gain access\nto private repositories' issues. By authenticating, you will get the ability\nto create issues, as well as access to updating data or deleting issues you\nhave access to. Issue Tracker features are not supported for repositories in workspaces administered through admin.atlassian.com.\n"
},
{
"name": "Pipelines",
@@ -18980,7 +24378,7 @@
"description": "A workspace is where you create repositories, collaborate on\nyour code, and organize different streams of work in your Bitbucket\nCloud account. Workspaces replace the use of teams and users in API\ncalls.\n"
}
],
- "x-revision": "607fbe8bfcb2",
+ "x-revision": "d8aa33b24a80",
"x-atlassian-narrative": {
"documents": [
{
@@ -18988,7 +24386,7 @@
"title": "Authentication methods",
"description": "How to authenticate API actions",
"icon": "data:image/svg+xml;base64,b'PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTcuNjQ3MyAxODYuODEzOCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgaXNvbGF0aW9uOiBpc29sYXRlOwogICAgICB9CgogICAgICAuY2xzLTIgewogICAgICAgIGZpbGw6ICNkZTM1MGI7CiAgICAgIH0KCiAgICAgIC5jbHMtMyB7CiAgICAgICAgZmlsbDogI2ZmNTYzMDsKICAgICAgfQoKICAgICAgLmNscy00IHsKICAgICAgICBmaWxsOiAjZGZlMWU1OwogICAgICAgIG1peC1ibGVuZC1tb2RlOiBtdWx0aXBseTsKICAgICAgfQoKICAgICAgLmNscy01IHsKICAgICAgICBmaWxsOiAjZmFmYmZjOwogICAgICB9CgogICAgICAuY2xzLTYgewogICAgICAgIGZpbGw6ICNlYmVjZjA7CiAgICAgIH0KCiAgICAgIC5jbHMtNyB7CiAgICAgICAgZmlsbDogbm9uZTsKICAgICAgICBzdHJva2U6ICMwMDY1ZmY7CiAgICAgICAgc3Ryb2tlLW1pdGVybGltaXQ6IDEwOwogICAgICAgIHN0cm9rZS13aWR0aDogMnB4OwogICAgICB9CgogICAgICAuY2xzLTggewogICAgICAgIGZpbGw6ICM1ZTZjODQ7CiAgICAgIH0KCiAgICAgIC5jbHMtOSB7CiAgICAgICAgZmlsbDogIzI1Mzg1ODsKICAgICAgfQoKICAgICAgLmNscy0xMCB7CiAgICAgICAgZmlsbDogIzI2ODRmZjsKICAgICAgfQoKICAgICAgLmNscy0xMSB7CiAgICAgICAgZmlsbDogIzAwNjVmZjsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHRpdGxlPlNlY3VyaXR5IHdpdGggS2V5PC90aXRsZT4KICA8ZyBjbGFzcz0iY2xzLTEiPgogICAgPGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+CiAgICAgIDxnIGlkPSJPYmplY3RzIj4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00Mi4wNjcyLDBoLjYxMTRhOCw4LDAsMCwxLDgsOFYyMy4yMzM4YTAsMCwwLDAsMSwwLDBIMzQuMDY3MmEwLDAsMCwwLDEsMCwwVjhBOCw4LDAsMCwxLDQyLjA2NzIsMFoiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xMDguMjIsMGguNjExNGE4LDgsMCwwLDEsOCw4VjIzLjIzMzhhMCwwLDAsMCwxLDAsMEgxMDAuMjJhMCwwLDAsMCwxLDAsMFY4QTgsOCwwLDAsMSwxMDguMjIsMFoiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xNzQuMzcyMiwwaC42MTE0YTgsOCwwLDAsMSw4LDhWMjMuMjMzOGEwLDAsMCwwLDEsMCwwSDE2Ni4zNzIyYTAsMCwwLDAsMSwwLDBWOEE4LDgsMCwwLDEsMTc0LjM3MjIsMFoiLz4KICAgICAgICA8cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjM0LjA2NzIiIHk9IjIzLjIzMzgiIHdpZHRoPSIxNjMuNTgiIGhlaWdodD0iMTYzLjU4Ii8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNDIuMDY3MiwwSDU5LjI5YTgsOCwwLDAsMSw4LDhWMjMuMjIyOGEwLDAsMCwwLDEsMCwwSDM0LjA2NzJhMCwwLDAsMCwxLDAsMFY4YTgsOCwwLDAsMSw4LThaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTA3LjI0NTgsMGgxNy4yMjI4YTgsOCwwLDAsMSw4LDhWMjMuMjIyOGEwLDAsMCwwLDEsMCwwSDk5LjI0NThhMCwwLDAsMCwxLDAsMFY4YTgsOCwwLDAsMSw4LThaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTcyLjQyNDQsMGgxNy4yMjI4YTgsOCwwLDAsMSw4LDhWMjMuMjIyOGEwLDAsMCwwLDEsMCwwSDE2NC40MjQ0YTAsMCwwLDAsMSwwLDBWOGE4LDgsMCwwLDEsOC04WiIvPgogICAgICAgIDxyZWN0IGNsYXNzPSJjbHMtMyIgeD0iMTcuNDU1OCIgeT0iMjMuMjMzOCIgd2lkdGg9IjE2My41OCIgaGVpZ2h0PSIxNjMuNTgiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0yNS40NTU4LDBINDIuNjc4NmE4LDgsMCwwLDEsOCw4VjIzLjIyMjhhMCwwLDAsMCwxLDAsMEgxNy40NTU4YTAsMCwwLDAsMSwwLDBWOEE4LDgsMCwwLDEsMjUuNDU1OCwwWiIvPgogICAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTkwLjYzNDQsMGgxNy4yMjI4YTgsOCwwLDAsMSw4LDhWMjMuMjIyOGEwLDAsMCwwLDEsMCwwSDgyLjYzNDRhMCwwLDAsMCwxLDAsMFY4QTgsOCwwLDAsMSw5MC42MzQ0LDBaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMTU1LjgxMywwaDE3LjIyMjhhOCw4LDAsMCwxLDgsOFYyMy4yMjI4YTAsMCwwLDAsMSwwLDBIMTQ3LjgxM2EwLDAsMCwwLDEsMCwwVjhBOCw4LDAsMCwxLDE1NS44MTMsMFoiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0yNS40NTU4LDBINDIuNjc4NmE4LDgsMCwwLDEsOCw4VjIzLjIyMjhhMCwwLDAsMCwxLDAsMEgxNy40NTU4YTAsMCwwLDAsMSwwLDBWOEE4LDgsMCwwLDEsMjUuNDU1OCwwWiIvPgogICAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMyIgZD0iTTkwLjYzNDQsMGgxNy4yMjI4YTgsOCwwLDAsMSw4LDhWMjMuMjIyOGEwLDAsMCwwLDEsMCwwSDgyLjYzNDRhMCwwLDAsMCwxLDAsMFY4QTgsOCwwLDAsMSw5MC42MzQ0LDBaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0zIiBkPSJNMTU1LjgxMywwaDE3LjIyMjhhOCw4LDAsMCwxLDgsOFYyMy4yMjI4YTAsMCwwLDAsMSwwLDBIMTQ3LjgxM2EwLDAsMCwwLDEsMCwwVjhBOCw4LDAsMCwxLDE1NS44MTMsMFoiLz4KICAgICAgICA8cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjM1Ljc1OTYiIHk9IjU2LjgwNjUiIHdpZHRoPSIzMy4yMjI4IiBoZWlnaHQ9IjE1LjYwMzgiLz4KICAgICAgICA8cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjEzMS4yMDE2IiB5PSIxMzYuOTYxNSIgd2lkdGg9IjMzLjIyMjgiIGhlaWdodD0iMTUuNjAzOCIvPgogICAgICAgIDxwYXRoIGNsYXNzPSJjbHMtNCIgZD0iTTU3LjM3MDksNzEuNjAzNmg3MC43NWE5LDksMCwwLDEsOSw5djM1LjM3NDlhNDQuMzc0OCw0NC4zNzQ4LDAsMCwxLTQ0LjM3NDgsNDQuMzc0OGgwYTQ0LjM3NDgsNDQuMzc0OCwwLDAsMS00NC4zNzQ4LTQ0LjM3NDhWODAuNjAzNkE5LDksMCwwLDEsNTcuMzcwOSw3MS42MDM2WiIvPgogICAgICAgIDxwYXRoIGNsYXNzPSJjbHMtNSIgZD0iTTY2LjM3MSw2Ni42NjE3aDcwLjc1YTksOSwwLDAsMSw5LDl2MzUuMzc0OWE0NC4zNzQ4LDQ0LjM3NDgsMCwwLDEtNDQuMzc0OCw0NC4zNzQ4aDBBNDQuMzc0OCw0NC4zNzQ4LDAsMCwxLDU3LjM3MSwxMTEuMDM2NlY3NS42NjE3YTksOSwwLDAsMSw5LTlaIi8+CiAgICAgICAgPHBhdGggaWQ9Il9SZWN0YW5nbGVfIiBkYXRhLW5hbWU9IiZsdDtSZWN0YW5nbGUmZ3Q7IiBjbGFzcz0iY2xzLTYiIGQ9Ik02MS4zNzEsNjYuNjYxN2g3MC43NWE5LDksMCwwLDEsOSw5djM1LjM3NDlhNDQuMzc0OCw0NC4zNzQ4LDAsMCwxLTQ0LjM3NDgsNDQuMzc0OGgwQTQ0LjM3NDgsNDQuMzc0OCwwLDAsMSw1Mi4zNzEsMTExLjAzNjZWNzUuNjYxN0E5LDksMCwwLDEsNjEuMzcxLDY2LjY2MTdaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy03IiBkPSJNOTYuNzQ1OSwxNDcuNzQ0MWEzNi43NDg3LDM2Ljc0ODcsMCwwLDEtMzYuNzA3NC0zNi43MDc0Vjc4LjA1ODRhMy43MzMzLDMuNzMzMywwLDAsMSwzLjcyOS0zLjcyOWg2NS45NTYzYTMuNzMzMywzLjczMzMsMCwwLDEsMy43MjksMy43Mjl2MzIuOTc4NEEzNi43NDg2LDM2Ljc0ODYsMCwwLDEsOTYuNzQ1OSwxNDcuNzQ0MVoiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik0xMDAuNjg5MywxNjMuMzE2N1YxMTEuMDk3M2EzLjk0NDMsMy45NDQzLDAsMCwwLTcuODg4NywwdjUyLjIyYTIyLjUyNTIsMjIuNTI1MiwwLDAsMC0xOC41NDc5LDIyLjE0YzAsLjQ1Ni4wMTc4LjkwNzguMDQ0NywxLjM1NzFIODIuMjFjLS4wNDE0LS40NDc0LS4wNjg4LS44OTktLjA2ODgtMS4zNTcxYTE0LjYyLDE0LjYyLDAsMCwxLDE0LjU5NzQtMTQuNjA0MWwuMDA2MS4wMDA2LjAwNjgtLjAwMDdBMTQuNjIxMSwxNC42MjExLDAsMCwxLDExMS4zNSwxODUuNDU2NmMwLC40NTgxLS4wMjczLjkxLS4wNjg4LDEuMzU3MWg3LjkxMjhjLjAyNjktLjQ0OTMuMDQ0Ny0uOTAxMS4wNDQ3LTEuMzU3MUEyMi41MjU5LDIyLjUyNTksMCwwLDAsMTAwLjY4OTMsMTYzLjMxNjdaIi8+CiAgICAgICAgPHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxNy40NTU4IiB5PSIzNi40NzAyIiB3aWR0aD0iMzMuMjIyOCIgaGVpZ2h0PSIxNS42MDM4Ii8+CiAgICAgICAgPHJlY3QgY2xhc3M9ImNscy0yIiB4PSIxNy40NTU4IiB5PSIxNTguMTIxNyIgd2lkdGg9IjMzLjIyMjgiIGhlaWdodD0iMTUuNjAzOCIvPgogICAgICAgIDxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTQ3LjgxMyIgeT0iMzYuNDcwMiIgd2lkdGg9IjMzLjIyMjgiIGhlaWdodD0iMTUuNjAzOCIvPgogICAgICAgIDxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iMTUwLjA2NDMiIHk9IjE1Ny41NTEzIiB3aWR0aD0iMzMuMjIyOCIgaGVpZ2h0PSIxNS42MDM4Ii8+CiAgICAgICAgPHBhdGggaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGNsYXNzPSJjbHMtOCIgZD0iTTEwNy41MjU0LDEwMS4wMDI3YTExLjc3OTQsMTEuNzc5NCwwLDEsMC0xOS44Niw4LjU1NDhBNC4wNDE3LDQuMDQxNywwLDAsMSw4OC44NSwxMTMuNjJsLTIuMTA0LDcuMjY4MWEzLDMsMCwwLDAsMi44ODE3LDMuODM0MmgxMi4yMzcxYTMsMywwLDAsMCwyLjg4MTctMy44MzQybC0yLjA5NTktNy4yNGE0LjA3NDMsNC4wNzQzLDAsMCwxLDEuMTgwOC00LjA5NDVBMTEuNzE3MiwxMS43MTcyLDAsMCwwLDEwNy41MjU0LDEwMS4wMDI3WiIvPgogICAgICAgIDxwYXRoIGNsYXNzPSJjbHMtOSIgZD0iTTEwNC43NDYxLDEyMC44ODc3bC0yLjA5NTktNy4yNGE0LjA3NDQsNC4wNzQ0LDAsMCwxLDEuMTgwOC00LjA5NDUsMTEuNzYyOSwxMS43NjI5LDAsMCwwLTUuMDYtMTkuOTMxMywxMS45MSwxMS45MSwwLDAsMC04Ljc5OCwxMC45OTQ5LDExLjcxODUsMTEuNzE4NSwwLDAsMCwzLjY5MjksOC45NDFBNC4wNDE2LDQuMDQxNiwwLDAsMSw5NC44NSwxMTMuNjJsLTMuMjE0LDExLjEwMjNoMTAuMjI4OEEzLDMsMCwwLDAsMTA0Ljc0NjEsMTIwLjg4NzdaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0xMCIgZD0iTTgxLjc5NzUsMTAwLjMxYTMuOTQzOSwzLjk0MzksMCwwLDAtMy45NDQzLTMuOTQ0M0g0MS4wNDE3YTMuOTQ0MywzLjk0NDMsMCwwLDAsMCw3Ljg4ODdINzcuODUzMkEzLjk0MzksMy45NDM5LDAsMCwwLDgxLjc5NzUsMTAwLjMxWiIvPgogICAgICAgIDxwYXRoIGlkPSJfUGF0aF8yIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgY2xhc3M9ImNscy0xMSIgZD0iTTQxLjA0MTYsMTA0LjI1MzlIOTYuODUzMmEzLjk0NDMsMy45NDQzLDAsMCwwLDAtNy44ODg3SDQxLjA0MTZhMy45NDQzLDMuOTQ0MywwLDAsMCwwLDcuODg4N1oiLz4KICAgICAgICA8cGF0aCBjbGFzcz0iY2xzLTEwIiBkPSJNODEuNzk3NSwxMDAuMzFhMy45NDM5LDMuOTQzOSwwLDAsMC0zLjk0NDMtMy45NDQzSDQxLjA0MTdhMy45NDQzLDMuOTQ0MywwLDAsMCwwLDcuODg4N0g3Ny44NTMyQTMuOTQzOSwzLjk0MzksMCwwLDAsODEuNzk3NSwxMDAuMzFaIi8+CiAgICAgICAgPHBhdGggY2xhc3M9ImNscy0xMCIgZD0iTTIyLjQ5MzIsMTIyLjgwMjlBMjIuNDkyOSwyMi40OTI5LDAsMSwxLDQ0Ljk4NTgsMTAwLjMxLDIyLjUxODUsMjIuNTE4NSwwLDAsMSwyMi40OTMyLDEyMi44MDI5Wm0wLTM3LjA5NzJBMTQuNjA0MiwxNC42MDQyLDAsMSwwLDM3LjA5NzIsMTAwLjMxLDE0LjYyMDcsMTQuNjIwNywwLDAsMCwyMi40OTMyLDg1LjcwNTdaIi8+CiAgICAgIDwvZz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo='",
- "body": "\nThe purpose of this section is to describe how to authenticate when making API calls using the Bitbucket REST API.\n\n-----\n\n* [Oauth 2](#oauth-2)\n * [Making requests](#making-requests)\n * [Repository cloning](#repository-cloning)\n * [Refresh tokens](#refresh-tokens)\n* [Scopes](#scopes)\n* [Basic auth](#basic-auth)\n* [Repository Access Tokens](#repository-access-tokens)\n* [App passwords](#app-passwords)\n\n---\n\n### OAuth 2.0\n\nOur OAuth 2 implementation is merged in with our existing OAuth 1 in\nsuch a way that existing OAuth 1 consumers automatically become\nvalid OAuth 2 clients. The only thing you need to do is edit your\nexisting consumer and configure a callback URL.\n\nOnce that is in place, you'll have the following 2 URLs:\n\n https://bitbucket.org/site/oauth2/authorize\n https://bitbucket.org/site/oauth2/access_token\n\nFor obtaining access/bearer tokens, we support three of RFC-6749's grant\nflows, plus a custom Bitbucket flow for exchanging JWT tokens for access tokens.\nNote that Resource Owner Password Credentials Grant (4.3) is no longer supported.\n\n\n#### 1. Authorization Code Grant (4.1)\n\nThe full-blown 3-LO flow. Request authorization from the end user by\nsending their browser to:\n\n https://bitbucket.org/site/oauth2/authorize?client_id={client_id}&response_type=code\n\nThe callback includes the `?code={}` query parameter that you can swap\nfor an access token:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=authorization_code -d code={code}\n\n\n#### 2. Implicit Grant (4.2)\n\nThis flow is useful for browser-based add-ons that operate without server-side backends.\n\nRequest the end user for authorization by directing the browser to:\n\n https://bitbucket.org/site/oauth2/authorize?client_id={client_id}&response_type=token\n\nThat will redirect to your preconfigured callback URL with a fragment\ncontaining the access token\n(`#access_token={token}&token_type=bearer`) where your page's js can\npull it out of the URL.\n\n\n#### 3. Client Credentials Grant (4.4)\n\nSomewhat like our existing \"2-LO\" flow for OAuth 1. Obtain an access\ntoken that represents not an end user, but the owner of the\nclient/consumer:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=client_credentials\n\n\n#### 4. Bitbucket Cloud JWT Grant (urn:bitbucket:oauth2:jwt)\n\nIf your Atlassian Connect add-on uses JWT authentication, you can swap a\nJWT for an OAuth access token. The resulting access token represents the\naccount for which the add-on is installed.\n\nMake sure you send the JWT token in the Authorization request header\nusing the \"JWT\" scheme (case sensitive). Note that this custom scheme\nmakes this different from HTTP Basic Auth (and so you cannot use \"curl\n-u\").\n\n $ curl -X POST -H \"Authorization: JWT {jwt_token}\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=urn:bitbucket:oauth2:jwt\n\n\n#### Making Requests\n\nOnce you have an access token, as per RFC-6750, you can use it in a request in any of\nthe following ways (in decreasing order of desirability):\n\n1. Send it in a request header: `Authorization: Bearer {access_token}`\n2. Include it in a (application/x-www-form-urlencoded) POST body as `access_token={access_token}`\n3. Put it in the query string of a non-POST: `?access_token={access_token}`\n\n\n#### Repository Cloning\n\nSince add-ons will not be able to upload their own SSH keys to clone\nwith, access tokens can be used as Basic HTTP Auth credentials to\nclone securely over HTTPS. This is much like GitHub, yet slightly\ndifferent:\n\n $ git clone https://x-token-auth:{access_token}@bitbucket.org/user/repo.git\n\nThe literal string `x-token-auth` as a substitute for username is\nrequired (note the difference with GitHub where the actual token is in\nthe username field).\n\n\n#### Refresh Tokens\n\nOur access tokens expire in one hour. When this happens you'll get 401\nresponses.\n\nMost access tokens grant responses (Implicit and JWT excluded). Therefore, you should include a\nrefresh token that can then be used to generate a new access token,\nwithout the need for end user participation:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=refresh_token -d refresh_token={refresh_token}\n\n\n### Scopes\n\nBitbucket's API applies a number of privilege scopes to endpoints. In order to access an endpoint, a request will need to have the necessary scopes.\n\nScopes are declared in the descriptor as a list of strings, with each string being the name of a unique scope.\n\nA descriptor lacking the `scopes` element is implicitly assumed to require all scopes and as a result, Bitbucket will require end users authorizing/installing the add-on\nto explicitly accept all scopes.\n\nOur best practice suggests you add the scopes your add-on needs, but no more than it needs.\n\nInvalid scope strings will cause the descriptor to be rejected and the installation to fail.\n\nThe available scopes are:\n\n- [project](#project)\n- [project:write](#project-write)\n- [project:admin](#project-admin)\n- [repository](#repository)\n- [repository:write](#repository-write)\n- [repository:admin](#repository-admin)\n- [repository:delete](#repository-delete)\n- [pullrequest](#pullrequest)\n- [pullrequest:write](#pullrequest-write)\n- [issue](#issue)\n- [issue:write](#issue-write)\n- [wiki](#wiki)\n- [webhook](#webhook)\n- [snippet](#snippet)\n- [snippet:write](#snippet-write)\n- [email](#email)\n- [account](#account)\n- [account:write](#account-write)\n- [pipeline](#pipeline)\n- [pipeline:write](#pipeline-write)\n- [pipeline:variable](#pipeline-variable)\n- [runner](#runner)\n- [runner:write](#runner-write)\n\n#### project\n\nProvides the [`repository`](#repository) scope permission for every repository under a project or projects.\n\n#### project:write\n\nThis scope is deprecated, and has been made obsolete by `project:admin`. Please see the deprecation notice [here](/cloud/bitbucket/deprecation-notice-project-write-scope).\n\n#### project:admin\n\nProvides admin access to a project or projects. No distinction is made between public and private projects. This scope doesn't implicitly grant the [`project`](#project) scope or the [`repository:write`](#repository-write) scope on any repositories under the project. It gives access to the admin features of a project only, not direct access to its repositories' contents.\n\n* ability to create the project\n* ability to update the project\n* ability to delete the project\n\n#### repository\n\nProvides read access to a repository or repositories.\nNote that this scope does not give access to a repository's pull requests.\n\n* access to the repo's source code\n* clone over HTTPS\n* access the file browsing API\n* download zip archives of the repo's contents\n* the ability to view and use the issue tracker on any repo (created issues, comment, vote, etc)\n* the ability to view and use the wiki on any repo (create/edit pages)\n\n#### repository:write\n\nProvides write (not admin) access to a repository or repositories. No distinction is made between public and private repositories. This scope implicitly grants the [`repository`](#repository) scope, which does not need to be requested separately.\nThis scope alone does not give access to the pull requests API.\n\n* push access over HTTPS\n* fork repos\n\n#### repository:admin\n\nProvides admin access to a repository or repositories. No distinction is made between public and private repositories. This scope doesn't implicitly grant the [`repository`](#repository) or the [`repository:write`](#repository-write) scopes. It gives access to the admin features of a repo only, not direct access to its contents. This scope can be used or misused to grant read access to other users, who can then clone the repo, but users that need to read and write source code would also request explicit read or write.\nThis scope comes with access to the following functionality:\n\n* view and manipulate committer mappings\n* list and edit deploy keys\n* ability to delete the repo\n* view and edit repo permissions\n* view and edit branch permissions\n* import and export the issue tracker\n* enable and disable the issue tracker\n* list and edit issue tracker version, milestones and components\n* enable and disable the wiki\n* list and edit default reviewers\n* list and edit repo links (Jira/Bamboo/Custom)\n* list and edit the repository webhooks\n* initiate a repo ownership transfer\n\n#### repository:delete\n\nProvides access to delete a repository or repositories.\n\n#### pullrequest\n\nProvides read access to pull requests.\nThis scope implies the [`repository`](#repository) scope, giving read access to the pull request's destination repository.\n\n* see and list pull requests\n* create and resolve tasks\n* comment on pull requests\n\n#### pullrequest:write\n\nImplicitly grants the [`pullrequest`](#pullrequest) scope and adds the ability to create, merge and decline pull requests.\nThis scope also implicitly grants the [`repository:write`](#repository-write) scope, giving write access to the pull request's destination repository. This is necessary to allow merging.\n\n* merge pull requests\n* decline pull requests\n* create pull requests\n* approve pull requests\n\n#### issue\n\nAbility to interact with issue trackers the way non-repo members can.\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* view, list and search issues\n* create new issues\n* comment on issues\n* watch issues\n* vote for issues\n\n#### issue:write\n\nThis scope implicitly grants the [`issue`](#issue) scope and adds the ability to transition and delete issues.\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* transition issues\n* delete issues\n\n#### wiki\n\nProvides access to wikis. This scope provides both read and write access (wikis are always editable by anyone with access to them).\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* view wikis\n* create pages\n* edit pages\n* push to wikis\n* clone wikis\n\n#### webhook\n\nGives access to webhooks. This scope is required for any webhook-related operation.\n\nThis scope gives read access to existing webhook subscriptions on all\nresources the authorization mechanism can access, without needing further scopes. \nFor example:\n\n- A client can list all existing webhook subscriptions on a repository. The [`repository`](#repository) scope is not required.\n- Existing webhook subscriptions for the issue tracker on a repo can be retrieved without the [`issue`](#issue) scope. All that is required is the `webhook` scope.\n\nTo create webhooks, the client will need read access to the resource. Such as: for [`issue:created`](#issue-created), the client will need to\nhave both the `webhook` and the [`issue`](#issue) scope.\n\n* list webhook subscriptions on any accessible repository, user, team, or snippet\n* create/update/delete webhook subscriptions.\n\n#### snippet\n\nProvides read access to snippets.\nNo distinction is made between public and private snippets (public snippets are accessible without any form of authentication).\n\n* view any snippet\n* create snippet comments\n\n#### snippet:write\n\nProvides write access to snippets.\nNo distinction is made between public and private snippets (public snippets are accessible without any form of authentication).\nThis scope implicitly grants the [`snippet`](#snippet) scope which does not need to be requested separately.\n\n* create snippets\n* edit snippets\n* delete snippets\n\n#### email\n\nAbility to see the user's primary email address. This should make it easier to use Bitbucket Cloud as a login provider for apps or external applications.\n\n#### account\n\nAbility to see all the user's account information. Note that this doesn't include any ability to change any of the data.\n\n* see all email addresses\n* language\n* location\n* website\n* full name\n* SSH keys\n* user groups\n\n#### account:write\n\nAbility to change properties on the user's account.\n\n* delete the authorizing user's account\n* manage the user's groups\n* change a user's email addresses\n* change username, display name and avatar\n\n#### pipeline\n\nGives read-only access to pipelines, steps, deployment environments and variables.\n\n#### pipeline:write\n\nGives write access to pipelines. This scope allows a user to:\n* Stop pipelines\n* Rerun failed pipelines\n* Resume halted pipelines\n* Trigger manual pipelines.\n\nThis scope is not needed to trigger a build using a push. Performing a `git push` (or equivalent actions) will trigger the build. The token doing the push only needs the [`repository:write`](#repository-write) scope.\n\nThis doesn't give write access to create variables.\n\n#### pipeline:variable\n\nGives write access to create variables in pipelines at the various levels:\n* Workspace\n* Repository\n* Deployment\n\n#### runner\n\nGives read-only access to pipelines runners setup against a workspace or repository.\n\n#### runner:write\n\nGives write access to create/edit/disable/delete pipelines runners setup against a workspace or repository.\n\n### Basic auth\n\nBasic HTTP Authentication as per [RFC-2617](https://tools.ietf.org/html/rfc2617) (Digest not supported). Note that Basic Auth is available only with username and [app password](https://bitbucket.org/account/settings/app-passwords/) as credentials.\n\n### Repository Access Tokens\n\nRepository Access Tokens are passwords (or tokens) that provide access to\n_a single repository_. These tokens can authenticate with Bitbucket APIs for\nscripting, CI/CD tools, Bitbucket Cloud-connected apps, and Bitbucket Cloud\nintegrations. The level of access provided by the token is set when a repository\nadmin creates it, by setting permission scopes. Repository Access Tokens are\nlinked to their repository, not a user or a workspace, preventing them from\nbeing used to access any other repositories or workspaces.\n\nWhen using Bitbucket APIs with a Repository Access Token, the token will be\ntreated as the \"user\" in the Bitbucket UI and Bitbucket logs. This includes\nusing the Repository Access Token to leave a comment on a pull request, push a\ncommit, or merge a pull request. The Bitbucket UI and API responses will show\nthe Repository Access Token as a user. This user uses the Repository Access\nToken name and a custom icon to differentiate it from a regular user in the UI.\n\nFor details on creating, managing, and using Repository Access Tokens, visit\n[Repository Access Tokens](https://support.atlassian.com/bitbucket-cloud/docs/repository-access-tokens/).\n\n#### Considerations for using Repository Access Tokens\n\n* After creation, a Repository Access Token can't be viewed or modified. The\ntoken's name, created date, last accessed date, and scopes are visible on the\nRepository Access Token page.\n* Repository Access Tokens can only be granted a limited set of Bitbucket's \npermission scopes.\n* Provided you set the correct permission scopes, you can use a Repository Access\nToken to clone (`repository`) and push (`repository:write`) code to the\ntoken's corresponding repository.\n* You can't use a Repository Access Token to log into the Bitbucket website.\n* Repository Access Tokens don't require two-step verification.\n* You can set permission scopes (specific access rights) for each Repository\nAccess Token.\n* You can't use a Repository Access Token to manipulate or query repository\npermissions.\n* Repository Access Tokens will not be listed in any repository or workspace \npermission API response.\n* Repository Access Tokens are deactivated when a repository is transferred or deleted.\n* Any content created by the Repository Access Token will persist after the\nRepository Access Token has been revoked.\n\n#### Available permissions scopes\n\nThe available scopes for Repository Access Tokens are:\n\n- [repository](#repository)\n- [repository:write](#repository-write)\n- [repository:admin](#repository-admin)\n- [repository:delete](#repository-delete)\n- [pullrequest](#pullrequest)\n- [pullrequest:write](#pullrequest-write)\n- [webhook](#webhook)\n- [pipeline](#pipeline)\n- [pipeline:write](#pipeline-write)\n- [pipeline:variable](#pipeline-variable)\n- [runner](#runner)\n- [runner:write](#runner-write)\n\nThere are some APIs which are inaccessible for Repository Access Tokens, these are: \n\n* [Add a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-post)\n* [Update a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-key-id-put)\n* [Delete a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-key-id-delete)\n\n### App passwords\n\nApp passwords allow users to make API calls to their Bitbucket account through apps such as Sourcetree.\n\nSome important points about app passwords:\n\n* You cannot view an app password or adjust permissions after you create the app password. Because app passwords are encrypted on our database and cannot be viewed by anyone. They are essentially designed to be disposable. If you need to change the scopes or lost the password just create a new one.\n* You cannot use them to log into your Bitbucket account.\n* You cannot use app passwords to manage team actions.\n\n App passwords are tied to an individual account's credentials and should not be shared. If you're sharing your app password you're essentially giving direct, authenticated, access to everything that password has been scoped to do with the Bitbucket API's.\n\n* You can use them for API call authentication, even if you don't have two-step verification enabled.\n* You can set permission scopes (specific access rights) for each app password.\n\n#### Create an app password\n\nTo create an app password:\n\n1. Select **Avatar > Bitbucket settings**.\n2. [Click **App passwords** in the Access management section.](https://bitbucket.org/account/settings/app-passwords/)\n3. Click **Create app password**.\n4. Give the app password a name related to the application that will use the password.\n5. Select the specific access and permissions you want this application password to have.\n6. Copy the generated password and either record or paste it into the application you want to give access. The password is only displayed this one time.\n\nThat's all there is to creating an app password. See your applications documentation for how to apply the app password for a specific application."
+ "body": "\nThe purpose of this section is to describe how to authenticate when making API calls using the Bitbucket REST API.\n\n-----\n\n* [Basic auth](#basic-auth)\n* [Access Tokens](#access-tokens)\n * [Repository Access Tokens](#repository-access-tokens)\n * [Project Access Tokens](#project-access-tokens)\n * [Workspace Access Tokens](#workspace-access-tokens)\n* [App passwords](#app-passwords)\n* [OAuth 2.0](#oauth-2-0)\n * [Making requests](#making-requests)\n * [Repository cloning](#repository-cloning)\n * [Refresh tokens](#refresh-tokens)\n* [Bitbucket OAuth 2.0 Scopes](#bitbucket-oauth-2-0-scopes)\n* [Forge App Scopes](#forge-app-scopes)\n\n---\n\n### Basic auth\n\nBasic HTTP Authentication as per [RFC-2617](https://tools.ietf.org/html/rfc2617) (Digest not supported).\nNote that Basic Auth is available only with username and [app password](https://bitbucket.org/account/settings/app-passwords/) as credentials.\n\n### Access Tokens\n\nAccess Tokens are passwords (or tokens) that provide access to a _single_ repository, project or workspace.\nThese tokens can authenticate with Bitbucket APIs for scripting, CI/CD tools, Bitbucket Cloud-connected apps,\nand Bitbucket Cloud integrations.\n\nAccess Tokens are linked to a repository, project, or workspace, not a user account.\nThe level of access provided by the token is set when a repository, or workspace admin creates it,\nby setting permission scopes.\n\nThere are three types of Access Token:\n\n* **Repository Access Tokens** can connect to a single repository, preventing them from accessing any other repositories or workspaces.\n* **Project Access Tokens** can connect to a single project, providing access to any repositories within the project.\n* **Workspace Access Tokens** can connect to a single workspace and have access to any projects and repositories within that workspace.\n\nWhen using Bitbucket APIs with an Access Token, the token will be treated as the \"user\" in the\nBitbucket UI and Bitbucket logs. This includes when using the Access Token to leave a comment on a pull request,\npush a commit, or merge a pull request. The Bitbucket UI and API responses will show the\nRepository/Project/Workspace Access Token as a user. The username shown in the Bitbucket UI is the Access\nToken _name_, and a custom icon is used to differentiate it from a regular user in the UI.\n\n#### Considerations for using Access Tokens\n\n* After creation, an Access Token can't be viewed or modified. The token's name, created date,\nlast accessed date, and scopes are visible on the repository, project, or workspace **Access Tokens** page.\n* Access Tokens can access a limited set of Bitbucket's permission scopes.\n* Provided you set the correct permission scopes, you can use an Access Token to clone (`repository`)\nand push (`repository:write`) code to the token's repository or the repositories the token can access.\n* You can't use an Access Token to log into the Bitbucket website.\n* Access Tokens don't require two-step verification.\n* You can set permission scopes (specific access rights) for each Access Token.\n* You can't use an Access Token to manipulate or query repository, project, or workspace permissions.\n* Access Tokens are not listed in any repository or workspace permission API response.\n* Access Tokens are deactivated when deleting the resource tied to it (a repository, project, or workspace).\nRepository Access Tokens are also revoked when transferring the repository to another workspace.\n* Any content created by the Access Token will persist after the Access Token has been revoked.\n* Access Tokens can interact with branch restriction APIs, but the token can't be configured as a user with merge access when using branch restrictions.\n\nThere are some APIs which are inaccessible for Access Tokens, these are:\n\n* [Add a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-post)\n* [Update a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-key-id-put)\n* [Delete a repository deploy key](/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-deploy-keys-key-id-delete)\n\n#### Repository Access Tokens\n\nFor details on creating, managing, and using Repository Access Tokens, visit\n[Repository Access Tokens](https://support.atlassian.com/bitbucket-cloud/docs/repository-access-tokens/).\n\nThe available scopes for Repository Access Tokens are:\n\n- [`repository`](#repository)\n- [`repository:write`](#repository-write)\n- [`repository:admin`](#repository-admin)\n- [`repository:delete`](#repository-delete)\n- [`pullrequest`](#pullrequest)\n- [`pullrequest:write`](#pullrequest-write)\n- [`webhook`](#webhook)\n- [`pipeline`](#pipeline)\n- [`pipeline:write`](#pipeline-write)\n- [`pipeline:variable`](#pipeline-variable)\n- [`runner`](#runner)\n- [`runner:write`](#runner-write)\n\n#### Project Access Tokens\n\nFor details on creating, managing, and using Project Access Tokens, visit\n[Project Access Tokens](https://support.atlassian.com/bitbucket-cloud/docs/project-access-tokens/).\n\nThe available scopes for Project Access Tokens are:\n\n- [`project`](#project)\n- [`repository`](#repository)\n- [`repository:write`](#repository-write)\n- [`repository:admin`](#repository-admin)\n- [`repository:delete`](#repository-delete)\n- [`pullrequest`](#pullrequest)\n- [`pullrequest:write`](#pullrequest-write)\n- [`webhook`](#webhook)\n- [`pipeline`](#pipeline)\n- [`pipeline:write`](#pipeline-write)\n- [`pipeline:variable`](#pipeline-variable)\n- [`runner`](#runner)\n- [`runner:write`](#runner-write)\n\n#### Workspace Access Tokens\n\nFor details on creating, managing, and using Workspace Access Tokens, visit\n[Workspace Access Tokens](https://support.atlassian.com/bitbucket-cloud/docs/workspace-access-tokens/).\n\nThe available scopes for Workspace Access Tokens are:\n\n- [`project`](#project)\n- [`project:admin`](#project-admin)\n- [`repository`](#repository)\n- [`repository:write`](#repository-write)\n- [`repository:admin`](#repository-admin)\n- [`repository:delete`](#repository-delete)\n- [`pullrequest`](#pullrequest)\n- [`pullrequest:write`](#pullrequest-write)\n- [`webhook`](#webhook)\n- [`account`](#account)\n- [`pipeline`](#pipeline)\n- [`pipeline:write`](#pipeline-write)\n- [`pipeline:variable`](#pipeline-variable)\n- [`runner`](#runner)\n- [`runner:write`](#runner-write)\n\n### App passwords\n\nApp passwords allow users to make API calls to their Bitbucket account through apps such as Sourcetree.\n\nSome important points about app passwords:\n\n* You cannot view an app password or adjust permissions after you create the app password. Because app passwords are encrypted on our database and cannot be viewed by anyone. They are essentially designed to be disposable. If you need to change the scopes or lost the password just create a new one.\n* You cannot use them to log into your Bitbucket account.\n* You cannot use app passwords to manage team actions.\n\n App passwords are tied to an individual account's credentials and should not be shared. If you're sharing your app password you're essentially giving direct, authenticated, access to everything that password has been scoped to do with the Bitbucket API's.\n\n* You can use them for API call authentication, even if you don't have two-step verification enabled.\n* You can set permission scopes (specific access rights) for each app password.\n\nFor details on creating, managing, and using App passwords, visit\n[App passwords](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/).\n\n### OAuth 2.0\n\nOur OAuth 2 implementation is merged in with our existing OAuth 1 in\nsuch a way that existing OAuth 1 consumers automatically become\nvalid OAuth 2 clients. The only thing you need to do is edit your\nexisting consumer and configure a callback URL.\n\nOnce that is in place, you'll have the following 2 URLs:\n\n https://bitbucket.org/site/oauth2/authorize\n https://bitbucket.org/site/oauth2/access_token\n\nFor obtaining access/bearer tokens, we support three of RFC-6749's grant\nflows, plus a custom Bitbucket flow for exchanging JWT tokens for access tokens.\nNote that Resource Owner Password Credentials Grant (4.3) is no longer supported.\n\n\n#### 1. Authorization Code Grant (4.1)\n\nThe full-blown 3-LO flow. Request authorization from the end user by\nsending their browser to:\n\n https://bitbucket.org/site/oauth2/authorize?client_id={client_id}&response_type=code\n\nThe callback includes the `?code={}` query parameter that you can swap\nfor an access token:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=authorization_code -d code={code}\n\n\n#### 2. Implicit Grant (4.2)\n\nThis flow is useful for browser-based add-ons that operate without server-side backends.\n\nRequest the end user for authorization by directing the browser to:\n\n https://bitbucket.org/site/oauth2/authorize?client_id={client_id}&response_type=token\n\nThat will redirect to your preconfigured callback URL with a fragment\ncontaining the access token\n(`#access_token={token}&token_type=bearer`) where your page's js can\npull it out of the URL.\n\n\n#### 3. Client Credentials Grant (4.4)\n\nSomewhat like our existing \"2-LO\" flow for OAuth 1. Obtain an access\ntoken that represents not an end user, but the owner of the\nclient/consumer:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=client_credentials\n\n\n#### 4. Bitbucket Cloud JWT Grant (urn:bitbucket:oauth2:jwt)\n\nIf your Atlassian Connect add-on uses JWT authentication, you can swap a\nJWT for an OAuth access token. The resulting access token represents the\naccount for which the add-on is installed.\n\nMake sure you send the JWT token in the Authorization request header\nusing the \"JWT\" scheme (case sensitive). Note that this custom scheme\nmakes this different from HTTP Basic Auth (and so you cannot use \"curl\n-u\").\n\n $ curl -X POST -H \"Authorization: JWT {jwt_token}\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=urn:bitbucket:oauth2:jwt\n\n\n#### Making Requests\n\nOnce you have an access token, as per RFC-6750, you can use it in a request in any of\nthe following ways (in decreasing order of desirability):\n\n1. Send it in a request header: `Authorization: Bearer {access_token}`\n2. Include it in a (application/x-www-form-urlencoded) POST body as `access_token={access_token}`\n3. Put it in the query string of a non-POST: `?access_token={access_token}`\n\n\n#### Repository Cloning\n\nSince add-ons will not be able to upload their own SSH keys to clone\nwith, access tokens can be used as Basic HTTP Auth credentials to\nclone securely over HTTPS. This is much like GitHub, yet slightly\ndifferent:\n\n $ git clone https://x-token-auth:{access_token}@bitbucket.org/user/repo.git\n\nThe literal string `x-token-auth` as a substitute for username is\nrequired (note the difference with GitHub where the actual token is in\nthe username field).\n\n\n#### Refresh Tokens\n\nOur access tokens expire in one hour. When this happens you'll get 401\nresponses.\n\nMost access tokens grant responses (Implicit and JWT excluded). Therefore, you should include a\nrefresh token that can then be used to generate a new access token,\nwithout the need for end user participation:\n\n $ curl -X POST -u \"client_id:secret\" \\\n https://bitbucket.org/site/oauth2/access_token \\\n -d grant_type=refresh_token -d refresh_token={refresh_token}\n\n\n### Bitbucket OAuth 2.0 scopes\n\nBitbucket's API applies a number of privilege scopes to endpoints. In order to access an endpoint, a request will need to have the necessary scopes.\n\nOAuth 2.0 Scopes are applicable for OAuth 2, Access Tokens, and App passwords auth mechanisms as well as Bitbucket Connect apps.\n\nScopes are declared in the descriptor as a list of strings, with each string being the name of a unique scope.\n\nA descriptor lacking the `scopes` element is implicitly assumed to require all scopes and as a result, Bitbucket will require end users authorizing/installing the add-on\nto explicitly accept all scopes.\n\nOur best practice suggests you add only the scopes your add-on needs, but no more than it needs.\n\nInvalid scope strings will cause the descriptor to be rejected and the installation to fail.\n\nThe available scopes are:\n\n- [project](#project)\n- [project:write](#project-write)\n- [project:admin](#project-admin)\n- [repository](#repository)\n- [repository:write](#repository-write)\n- [repository:admin](#repository-admin)\n- [repository:delete](#repository-delete)\n- [pullrequest](#pullrequest)\n- [pullrequest:write](#pullrequest-write)\n- [issue](#issue)\n- [issue:write](#issue-write)\n- [wiki](#wiki)\n- [webhook](#webhook)\n- [snippet](#snippet)\n- [snippet:write](#snippet-write)\n- [email](#email)\n- [account](#account)\n- [account:write](#account-write)\n- [pipeline](#pipeline)\n- [pipeline:write](#pipeline-write)\n- [pipeline:variable](#pipeline-variable)\n- [runner](#runner)\n- [runner:write](#runner-write)\n\n#### project\n\nProvides access to view the project or projects.\nThis scope implies the [`repository`](#repository) scope, giving read access to all the repositories in a project or projects.\n\n#### project:write\n\nThis scope is deprecated, and has been made obsolete by `project:admin`. Please see the deprecation notice [here](/cloud/bitbucket/deprecation-notice-project-write-scope).\n\n#### project:admin\n\nProvides admin access to a project or projects. No distinction is made between public and private projects. This scope doesn't implicitly grant the [`project`](#project) scope or the [`repository:write`](#repository-write) scope on any repositories under the project. It gives access to the admin features of a project only, not direct access to its repositories' contents.\n\n* ability to create the project\n* ability to update the project\n* ability to delete the project\n\n#### repository\n\nProvides read access to a repository or repositories.\nNote that this scope does not give access to a repository's pull requests.\n\n* access to the repo's source code\n* clone over HTTPS\n* access the file browsing API\n* download zip archives of the repo's contents\n* the ability to view and use the issue tracker on any repo (created issues, comment, vote, etc)\n* the ability to view and use the wiki on any repo (create/edit pages)\n\n#### repository:write\n\nProvides write (not admin) access to a repository or repositories. No distinction is made between public and private repositories. This scope implicitly grants the [`repository`](#repository) scope, which does not need to be requested separately.\nThis scope alone does not give access to the pull requests API.\n\n* push access over HTTPS\n* fork repos\n\n#### repository:admin\n\nProvides admin access to a repository or repositories. No distinction is made between public and private repositories. This scope doesn't implicitly grant the [`repository`](#repository) or the [`repository:write`](#repository-write) scopes. It gives access to the admin features of a repo only, not direct access to its contents. This scope can be used or misused to grant read access to other users, who can then clone the repo, but users that need to read and write source code would also request explicit read or write.\nThis scope comes with access to the following functionality:\n\n* View and manipulate committer mappings\n* List and edit deploy keys\n* Ability to delete the repo\n* View and edit repo permissions\n* View and edit branch permissions\n* Import and export the issue tracker\n* Enable and disable the issue tracker\n* List and edit issue tracker version, milestones and components\n* Enable and disable the wiki\n* List and edit default reviewers\n* List and edit repo links (Jira/Bamboo/Custom)\n* List and edit the repository webhooks\n* Initiate a repo ownership transfer\n\n#### repository:delete\n\nProvides access to delete a repository or repositories.\n\n#### pullrequest\n\nProvides read access to pull requests.\nThis scope implies the [`repository`](#repository) scope, giving read access to the pull request's destination repository.\n\n* see and list pull requests\n* create and resolve tasks\n* comment on pull requests\n\n#### pullrequest:write\n\nImplicitly grants the [`pullrequest`](#pullrequest) scope and adds the ability to create, merge and decline pull requests.\nThis scope also implicitly grants the [`repository:write`](#repository-write) scope, giving write access to the pull request's destination repository. This is necessary to allow merging.\n\n* merge pull requests\n* decline pull requests\n* create pull requests\n* approve pull requests\n\n#### issue\n\nAbility to interact with issue trackers the way non-repo members can.\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* view, list and search issues\n* create new issues\n* comment on issues\n* watch issues\n* vote for issues\n\n#### issue:write\n\nThis scope implicitly grants the [`issue`](#issue) scope and adds the ability to transition and delete issues.\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* transition issues\n* delete issues\n\n#### wiki\n\nProvides access to wikis. This scope provides both read and write access (wikis are always editable by anyone with access to them).\nThis scope doesn't implicitly grant any other scopes and doesn't give implicit access to the repository.\n\n* view wikis\n* create pages\n* edit pages\n* push to wikis\n* clone wikis\n\n#### webhook\n\nGives access to webhooks. This scope is required for any webhook-related operation.\n\nThis scope gives read access to existing webhook subscriptions on all\nresources the authorization mechanism can access, without needing further scopes.\nFor example:\n\n- A client can list all existing webhook subscriptions on a repository. The [`repository`](#repository) scope is not required.\n- Existing webhook subscriptions for the issue tracker on a repo can be retrieved without the [`issue`](#issue) scope. All that is required is the `webhook` scope.\n\nTo create webhooks, the client will need read access to the resource. Such as: for [`issue:created`](#issue-created), the client will need to\nhave both the `webhook` and the [`issue`](#issue) scope.\n\n* list webhook subscriptions on any accessible repository, user, team, or snippet\n* create/update/delete webhook subscriptions.\n\n#### snippet\n\nProvides read access to snippets.\nNo distinction is made between public and private snippets (public snippets are accessible without any form of authentication).\n\n* view any snippet\n* create snippet comments\n\n#### snippet:write\n\nProvides write access to snippets.\nNo distinction is made between public and private snippets (public snippets are accessible without any form of authentication).\nThis scope implicitly grants the [`snippet`](#snippet) scope which does not need to be requested separately.\n\n* create snippets\n* edit snippets\n* delete snippets\n\n#### email\n\nAbility to see the user's primary email address. This should make it easier to use Bitbucket Cloud as a login provider for apps or external applications.\n\n#### account\n\nWhen used for:\n* **user-related APIs** â Gives read-only access to the user's account information.\nNote that this doesn't include any ability to change any of the data. This scope allows you to view the user's:\n * email addresses\n * language\n * location\n * website\n * full name\n * SSH keys\n * user groups\n* **workspace-related APIs** â Grants access to view the workspace's:\n * users\n * user permissions\n * projects\n\n#### account:write\n\nAbility to change properties on the user's account.\n\n* delete the authorizing user's account\n* manage the user's groups\n* change a user's email addresses\n* change username, display name and avatar\n\n#### pipeline\n\nGives read-only access to pipelines, steps, deployment environments and variables.\n\n#### pipeline:write\n\nGives write access to pipelines. This scope allows a user to:\n* Stop pipelines\n* Rerun failed pipelines\n* Resume halted pipelines\n* Trigger manual pipelines.\n\nThis scope is not needed to trigger a build using a push. Performing a `git push` (or equivalent actions) will trigger the build. The token doing the push only needs the [`repository:write`](#repository-write) scope.\n\nThis doesn't give write access to create variables.\n\n#### pipeline:variable\n\nGives write access to create variables in pipelines at the various levels:\n* Workspace\n* Repository\n* Deployment\n\n#### runner\n\nGives read-only access to pipelines runners setup against a workspace or repository.\n\n#### runner:write\n\nGives write access to create/edit/disable/delete pipelines runners setup against a workspace or repository.\n### Forge app scopes\n\nIn order for a Forge app integration to access Bitbucket API endpoints, it needs to include certain privilege scopes in the app manifest. These are different from Bitbucket OAuth 2.0 scopes.\n\nUnlike OAuth 2.0 scopes, Forge app scopes do not implicitly grant other scopes, for example, `write:repository:bitbucket` does not implicitly grant `read:repository:bitbucket`.\n\nOnly a subset of Bitbucket API endpoints are currently available for Forge app integrations. These will be labeled with Forge app scopes.\n\nOur best practice suggests you only add the scopes your app needs, but no more than it needs.\n\nThe available scopes are:\n\n- [`read:repository:bitbucket`](#read-repository-bitbucket)\n- [`write:repository:bitbucket`](#write-repository-bitbucket)\n- [`admin:repository:bitbucket`](#admin-repository-bitbucket)\n- [`delete:repository:bitbucket`](#delete-repository-bitbucket)\n- [`read:pullrequest:bitbucket`](#read-pullrequest-bitbucket)\n- [`write:pullrequest:bitbucket`](#write-pullrequest-bitbucket)\n- [`read:project:bitbucket`](#read-project-bitbucket)\n- [`admin:project:bitbucket`](#admin-project-bitbucket)\n- [`read:workspace:bitbucket`](#read-workspace-bitbucket)\n- [`read:user:bitbucket`](#read-user-bitbucket)\n- [`read:pipeline:bitbucket`](#read-pipeline-bitbucket)\n- [`write:pipeline:bitbucket`](#write-pipeline-bitbucket)\n- [`admin:pipeline:bitbucket`](#admin-pipeline-bitbucket)\n- [`read:runner:bitbucket`](#read-runner-bitbucket)\n- [`write:runner:bitbucket`](#write-runner-bitbucket)\n\n#### read:repository:bitbucket\n\nAllows viewing of repository data. Note that this scope does not give access to a repository's pull requests.\n* access to the repository's source code\n* access the file browsing API\n* access to certain repository configurations such as branching model, default reviewers, etc.\n\n#### write:repository:bitbucket\n\nAllows modification of repository data. No distinction is made between public and private repositories. This scope does not imply the `read:repository:bitbucket` scope, so you need to request that separately if required. This scope alone does not give access to the pull request API.\n* update/delete source, branches, tags, etc.\n* fork repositories\n\n#### admin:repository:bitbucket\n\nAllows admin activities on repositories. No distinction is made between public and private repositories. This scope does not implicitly grant the `read:repository:bitbucket` or the `write:repository:bitbucket` scopes. It gives access to the admin features of a repository only, not direct access to its contents. This scope does not allow modification of repository permissions. This scope comes with access to the following functionality:\n* create repository\n* view repository permissions\n* view and edit branch restrictions\n* edit branching model settings\n* edit default reviewers\n* view and edit inheritance state for repository settings\n\n#### delete:repository:bitbucket\nAllows deletion of repositories.\n\n#### read:pullrequest:bitbucket\nAllows viewing of pull requests, plus the ability to comment on pull requests.\n\nThis scope does not imply the `read:repository:bitbucket` scope. With this scope, you could retrieve some data specific to the source/destination repositories of a pull request using pull request endpoints, but it does not give access to repository API endpoints.\n\n#### write:pullrequest:bitbucket\nAllows the ability to create, update, approve, decline, and merge pull requests.\n\nThis scope does not imply the `write:repository:bitbucket` scope.\n\n#### read:project:bitbucket\nAllows viewing of project and project permission data.\n\n#### admin:project:bitbucket\nAllows the ability to create, update, and delete project. No distinction is made between public and private projects.\n\nThis scope does not implicitly grant the `read:project:bitbucket` scope or any repository scopes. It gives access to the admin features of a project only, not direct access to its repositories' contents.\n\n#### read:workspace:bitbucket\nAllows viewing of workspace and workspace permission data.\n\n#### read:user:bitbucket\nAllows viewing of user data. This scope is typically required for permission related endpoints.\n\n#### read:pipeline:bitbucket\nAllows read access to all pipeline information (pipelines, steps, caches, artifacts, logs, tests, code-insights).\n\n#### write:pipeline:bitbucket\nAllows running pipelines (i.e., start/stop/create pipeline) and uploading tests/code-insights.\n\nThis scope does not imply the `read:pipeline:bitbucket` scope.\n\n#### admin:pipeline:bitbucket\nAllows admin activities, such as creating pipeline variables.\n\nThis scope does not implicitly grant the `read:pipeline:bitbucket` or the `write:pipeline:bitbucket` scopes.\n\n#### read:runner:bitbucket\nAllows viewing of runners information.\n\n#### write:runner:bitbucket\nAllows runners management.\n\nThis scope does not imply the `read:runners:bitbucket` scope.\n"
},
{
"anchor": "filtering",
@@ -19048,6 +24446,17 @@
],
"components": {
"requestBodies": {
+ "bitbucket.apps.permissions.serializers.ProjectPermissionUpdateSchema": {
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/bitbucket.apps.permissions.serializers.ProjectPermissionUpdateSchema"
+ }
+ }
+ },
+ "description": "The permission to grant",
+ "required": true
+ },
"application_property": {
"content": {
"application/json": {
@@ -19081,6 +24490,17 @@
"description": "The new snippet object.",
"required": true
},
+ "bitbucket.apps.permissions.serializers.RepoPermissionUpdateSchema": {
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/bitbucket.apps.permissions.serializers.RepoPermissionUpdateSchema"
+ }
+ }
+ },
+ "description": "The permission to grant",
+ "required": true
+ },
"pipeline_variable2": {
"content": {
"application/json": {
@@ -19132,13 +24552,13 @@
"pipeline:variable": "Access your repositories' build pipelines and configure their variables",
"runner": "Access your workspaces/repositories' runners",
"runner:write": "Access and edit your workspaces/repositories' runners",
- "issue": "Read your repositories' issues",
- "issue:write": "Read and modify your repositories' issues",
"pullrequest": "Read your repositories and their pull requests",
"pullrequest:write": "Read and modify your repositories and their pull requests",
+ "webhook": "Read and modify your repositories' webhooks",
+ "issue": "Read your repositories' issues",
+ "issue:write": "Read and modify your repositories' issues",
"snippet": "Read your snippets",
"snippet:write": "Read and modify your snippets",
- "webhook": "Read and modify your repositories' webhooks",
"wiki": "Read and modify your repositories' wikis"
}
}
@@ -19152,6 +24572,128 @@
}
},
"schemas": {
+ "A_pull_request_task": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/task"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "links": {
+ "type": "object",
+ "properties": {
+ "html": {
+ "type": "object",
+ "title": "Link",
+ "description": "A link to a resource related to this object.",
+ "properties": {
+ "href": {
+ "type": "string",
+ "format": "uri"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "additionalProperties": false
+ },
+ "self": {
+ "type": "object",
+ "title": "Link",
+ "description": "A link to a resource related to this object.",
+ "properties": {
+ "href": {
+ "type": "string",
+ "format": "uri"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "additionalProperties": false
+ }
+ },
+ "additionalProperties": false
+ }
+ },
+ "additionalProperties": false
+ }
+ ],
+ "title": "Pull Request Task",
+ "description": "A pull request task."
+ },
+ "A_pullrequest_comment_task": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/A_pull_request_task"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "comment": {
+ "$ref": "#/components/schemas/comment"
+ }
+ },
+ "additionalProperties": false
+ }
+ ],
+ "title": "Pull Request Comment Task",
+ "description": "A pullrequest comment task"
+ },
+ "A_pullrequest_task_create": {
+ "type": "object",
+ "title": "Pull Request Task Create",
+ "description": "A pullrequest task create",
+ "properties": {
+ "comment": {
+ "$ref": "#/components/schemas/comment"
+ },
+ "content": {
+ "type": "object",
+ "title": "Task Raw Content",
+ "description": "task raw content",
+ "properties": {
+ "raw": {
+ "type": "string",
+ "description": "The task contents"
+ }
+ },
+ "required": ["raw"],
+ "additionalProperties": false
+ },
+ "pending": {
+ "type": "boolean"
+ }
+ },
+ "required": ["content"],
+ "additionalProperties": false
+ },
+ "A_pullrequest_task_update": {
+ "type": "object",
+ "title": "Pull Request Task Update",
+ "description": "A pullrequest task update",
+ "properties": {
+ "content": {
+ "type": "object",
+ "title": "Task Raw Content",
+ "description": "task raw content",
+ "properties": {
+ "raw": {
+ "type": "string",
+ "description": "The task contents"
+ }
+ },
+ "required": ["raw"],
+ "additionalProperties": false
+ },
+ "state": {
+ "type": "string",
+ "enum": ["RESOLVED", "UNRESOLVED"]
+ }
+ },
+ "additionalProperties": false
+ },
"account": {
"allOf": [
{
@@ -19314,6 +24856,28 @@
"title": "Base Commit",
"description": "The common base type for both repository and snippet commits."
},
+ "bitbucket.apps.permissions.serializers.ProjectPermissionUpdateSchema": {
+ "type": "object",
+ "properties": {
+ "permission": {
+ "type": "string",
+ "enum": ["read", "write", "create-repo", "admin"]
+ }
+ },
+ "required": ["permission"],
+ "additionalProperties": false
+ },
+ "bitbucket.apps.permissions.serializers.RepoPermissionUpdateSchema": {
+ "type": "object",
+ "properties": {
+ "permission": {
+ "type": "string",
+ "enum": ["read", "write", "admin"]
+ }
+ },
+ "required": ["permission"],
+ "additionalProperties": false
+ },
"branch": {
"allOf": [
{
@@ -19672,6 +25236,26 @@
"title": "Comment",
"description": "The base type for all comments. This type should be considered abstract. Each of the \"commentable\" resources defines its own subtypes (e.g. `issue_comment`)."
},
+ "comment_resolution": {
+ "type": "object",
+ "title": "Comment Resolution",
+ "description": "The resolution object for a Comment.",
+ "properties": {
+ "created_on": {
+ "type": "string",
+ "description": "The ISO8601 timestamp the resolution was created.",
+ "format": "date-time"
+ },
+ "type": {
+ "type": "string"
+ },
+ "user": {
+ "$ref": "#/components/schemas/account"
+ }
+ },
+ "required": ["type"],
+ "additionalProperties": true
+ },
"commit": {
"allOf": [
{
@@ -19809,7 +25393,7 @@
"state": {
"type": "string",
"description": "Provides some indication of the status of this commit",
- "enum": ["INPROGRESS", "STOPPED", "FAILED", "SUCCESSFUL"]
+ "enum": ["STOPPED", "INPROGRESS", "FAILED", "SUCCESSFUL"]
},
"updated_on": {
"type": "string",
@@ -20675,31 +26259,33 @@
"type": "string",
"description": "The event identifier.",
"enum": [
- "issue:created",
- "repo:commit_status_updated",
- "pullrequest:comment_created",
- "pullrequest:created",
+ "issue:comment_created",
+ "repo:push",
+ "repo:transfer",
+ "pullrequest:changes_request_removed",
+ "pullrequest:comment_updated",
"pullrequest:unapproved",
- "repo:commit_status_created",
+ "pullrequest:comment_created",
"repo:created",
"pullrequest:changes_request_created",
- "pullrequest:comment_updated",
- "pullrequest:changes_request_removed",
- "pullrequest:comment_deleted",
"repo:imported",
- "repo:commit_comment_created",
+ "repo:fork",
"project:updated",
- "repo:updated",
+ "issue:created",
+ "repo:deleted",
"issue:updated",
+ "pullrequest:comment_reopened",
+ "pullrequest:updated",
+ "repo:commit_comment_created",
+ "pullrequest:created",
+ "pullrequest:approved",
"pullrequest:rejected",
"pullrequest:fulfilled",
- "issue:comment_created",
- "repo:fork",
- "pullrequest:updated",
- "repo:push",
- "pullrequest:approved",
- "repo:deleted",
- "repo:transfer"
+ "pullrequest:comment_resolved",
+ "repo:commit_status_updated",
+ "repo:updated",
+ "pullrequest:comment_deleted",
+ "repo:commit_status_created"
]
},
"label": {
@@ -20869,6 +26455,7 @@
"state": {
"type": "string",
"enum": [
+ "submitted",
"new",
"open",
"resolved",
@@ -21988,6 +27575,52 @@
}
]
},
+ "paginated_project_group_permissions": {
+ "title": "Paginated Project Group Permissions",
+ "description": "A paginated list of project group permissions.",
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/paginated"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "values": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/project_group_permission"
+ },
+ "minItems": 0,
+ "uniqueItems": true,
+ "description": "The values of the current page."
+ }
+ }
+ }
+ ]
+ },
+ "paginated_project_user_permissions": {
+ "title": "Paginated Project User Permissions",
+ "description": "A paginated list of project user permissions.",
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/paginated"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "values": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/project_user_permission"
+ },
+ "minItems": 0,
+ "uniqueItems": true,
+ "description": "The values of the current page."
+ }
+ }
+ }
+ ]
+ },
"paginated_projects": {
"title": "Paginated Projects",
"description": "A paginated list of projects",
@@ -22308,6 +27941,29 @@
}
]
},
+ "paginated_tasks": {
+ "title": "Paginated Tasks",
+ "description": "A paginated list of tasks.",
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/paginated"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "values": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/A_pullrequest_comment_task"
+ },
+ "minItems": 0,
+ "uniqueItems": true,
+ "description": "The values of the current page."
+ }
+ }
+ }
+ ]
+ },
"paginated_treeentries": {
"title": "Paginated Tree Entry",
"description": "A paginated list of commit_file and/or commit_directory objects.",
@@ -22502,6 +28158,14 @@
"uuid": {
"type": "string",
"description": "The UUID identifying the pipeline."
+ },
+ "variables": {
+ "type": "array",
+ "minItems": 0,
+ "items": {
+ "$ref": "#/components/schemas/pipeline_variable"
+ },
+ "description": "The variables for the pipeline."
}
}
}
@@ -22546,6 +28210,10 @@
"type": "integer",
"description": "The size of the file containing the archive of the cache."
},
+ "key_hash": {
+ "type": "string",
+ "description": "The key hash of the cache version."
+ },
"name": {
"type": "string",
"description": "The name of the cache."
@@ -22738,17 +28406,14 @@
},
"cron_pattern": {
"type": "string",
- "description": "The cron expression that the schedule applies."
+ "description": "The cron expression with second precision (7 fields) that the schedule applies. For example, for expression: 0 0 12 * * ? *, will execute at 12pm UTC every day."
},
"enabled": {
"type": "boolean",
"description": "Whether the schedule is enabled."
},
- "selector": {
- "$ref": "#/components/schemas/pipeline_selector"
- },
"target": {
- "$ref": "#/components/schemas/pipeline_target"
+ "$ref": "#/components/schemas/pipeline_ref_target"
},
"updated_on": {
"type": "string",
@@ -22813,6 +28478,66 @@
}
]
},
+ "pipeline_schedule_post_request_body": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/object"
+ },
+ {
+ "additionalProperties": true,
+ "type": "object",
+ "properties": {
+ "cron_pattern": {
+ "type": "string",
+ "description": "The cron expression with second precision (7 fields) that the schedule applies. For example, for expression: 0 0 12 * * ? *, will execute at 12pm UTC every day."
+ },
+ "enabled": {
+ "type": "boolean",
+ "description": "Whether the schedule is enabled."
+ },
+ "target": {
+ "type": "object",
+ "description": "The target on which the schedule will be executed.",
+ "properties": {
+ "ref_name": {
+ "type": "string",
+ "description": "The name of the reference."
+ },
+ "ref_type": {
+ "type": "string",
+ "description": "The type of reference (branch only).",
+ "enum": ["branch"]
+ },
+ "selector": {
+ "$ref": "#/components/schemas/pipeline_selector"
+ }
+ },
+ "required": ["selector", "ref_name", "ref_type"]
+ }
+ },
+ "required": ["target", "cron_pattern"]
+ }
+ ],
+ "title": "Request body for Pipeline Schedule POST request"
+ },
+ "pipeline_schedule_put_request_body": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/object"
+ },
+ {
+ "additionalProperties": true,
+ "type": "object",
+ "properties": {
+ "enabled": {
+ "type": "boolean",
+ "description": "Whether the schedule is enabled."
+ }
+ }
+ }
+ ],
+ "title": "Request body for Pipeline Schedule PUT request"
+ },
"pipeline_selector": {
"title": "Pipeline Selector",
"description": "A representation of the selector that was used to identify the pipeline in the YML file.",
@@ -23785,6 +29510,92 @@
"title": "Project Deploy Key",
"description": "Represents deploy key for a project."
},
+ "project_group_permission": {
+ "type": "object",
+ "title": "Project Group Permission",
+ "description": "A group's permission for a given project.",
+ "properties": {
+ "group": {
+ "$ref": "#/components/schemas/group"
+ },
+ "links": {
+ "type": "object",
+ "properties": {
+ "self": {
+ "type": "object",
+ "title": "Link",
+ "description": "A link to a resource related to this object.",
+ "properties": {
+ "href": {
+ "type": "string",
+ "format": "uri"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "additionalProperties": false
+ }
+ },
+ "additionalProperties": false
+ },
+ "permission": {
+ "type": "string",
+ "enum": ["read", "write", "create-repo", "admin", "none"]
+ },
+ "project": {
+ "$ref": "#/components/schemas/project"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": ["type"],
+ "additionalProperties": true
+ },
+ "project_user_permission": {
+ "type": "object",
+ "title": "Project User Permission",
+ "description": "A user's direct permission for a given project.",
+ "properties": {
+ "links": {
+ "type": "object",
+ "properties": {
+ "self": {
+ "type": "object",
+ "title": "Link",
+ "description": "A link to a resource related to this object.",
+ "properties": {
+ "href": {
+ "type": "string",
+ "format": "uri"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "additionalProperties": false
+ }
+ },
+ "additionalProperties": false
+ },
+ "permission": {
+ "type": "string",
+ "enum": ["read", "write", "create-repo", "admin", "none"]
+ },
+ "project": {
+ "$ref": "#/components/schemas/project"
+ },
+ "type": {
+ "type": "string"
+ },
+ "user": {
+ "$ref": "#/components/schemas/user"
+ }
+ },
+ "required": ["type"],
+ "additionalProperties": true
+ },
"pullrequest": {
"allOf": [
{
@@ -24126,8 +29937,14 @@
{
"type": "object",
"properties": {
+ "pending": {
+ "type": "boolean"
+ },
"pullrequest": {
"$ref": "#/components/schemas/pullrequest"
+ },
+ "resolution": {
+ "$ref": "#/components/schemas/comment_resolution"
}
},
"additionalProperties": true
@@ -24478,10 +30295,12 @@
"description": "The concatenation of the repository owner's username and the slugified name, e.g. \"evzijst/interruptingcow\". This is the same string used in Bitbucket URLs."
},
"has_issues": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "\nThe issue tracker for this repository is enabled. Issue Tracker\nfeatures are not supported for repositories in workspaces\nadministered through admin.atlassian.com.\n"
},
"has_wiki": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "\nThe wiki for this repository is enabled. Wiki\nfeatures are not supported for repositories in workspaces\nadministered through admin.atlassian.com.\n"
},
"is_private": {
"type": "boolean"
@@ -25245,6 +31064,63 @@
"title": "Tag",
"description": "A tag object, representing a tag in a repository."
},
+ "task": {
+ "type": "object",
+ "title": "Task",
+ "description": "A task object.",
+ "properties": {
+ "content": {
+ "type": "object",
+ "properties": {
+ "html": {
+ "type": "string",
+ "description": "The user's content rendered as HTML."
+ },
+ "markup": {
+ "type": "string",
+ "description": "The type of markup language the raw content is to be interpreted in.",
+ "enum": ["markdown", "creole", "plaintext"]
+ },
+ "raw": {
+ "type": "string",
+ "description": "The text as it was typed by a user."
+ }
+ },
+ "additionalProperties": false
+ },
+ "created_on": {
+ "type": "string",
+ "format": "date-time"
+ },
+ "creator": {
+ "$ref": "#/components/schemas/account"
+ },
+ "id": {
+ "type": "integer"
+ },
+ "pending": {
+ "type": "boolean"
+ },
+ "resolved_by": {
+ "$ref": "#/components/schemas/account"
+ },
+ "resolved_on": {
+ "type": "string",
+ "description": "The ISO8601 timestamp for when the task was resolved.",
+ "format": "date-time"
+ },
+ "state": {
+ "type": "string",
+ "enum": ["RESOLVED", "UNRESOLVED"]
+ },
+ "updated_on": {
+ "type": "string",
+ "format": "date-time"
+ }
+ },
+ "required": ["created_on", "updated_on", "state", "content", "creator"],
+ "additionalProperties": false
+ },
"team": {
"allOf": [
{
@@ -25442,36 +31318,48 @@
"items": {
"type": "string",
"enum": [
- "issue:created",
- "repo:commit_status_updated",
- "pullrequest:comment_created",
- "pullrequest:created",
+ "issue:comment_created",
+ "repo:push",
+ "repo:transfer",
+ "pullrequest:changes_request_removed",
+ "pullrequest:comment_updated",
"pullrequest:unapproved",
- "repo:commit_status_created",
+ "pullrequest:comment_created",
"repo:created",
"pullrequest:changes_request_created",
- "pullrequest:comment_updated",
- "pullrequest:changes_request_removed",
- "pullrequest:comment_deleted",
"repo:imported",
- "repo:commit_comment_created",
+ "repo:fork",
"project:updated",
- "repo:updated",
+ "issue:created",
+ "repo:deleted",
"issue:updated",
+ "pullrequest:comment_reopened",
+ "pullrequest:updated",
+ "repo:commit_comment_created",
+ "pullrequest:created",
+ "pullrequest:approved",
"pullrequest:rejected",
"pullrequest:fulfilled",
- "issue:comment_created",
- "repo:fork",
- "pullrequest:updated",
- "repo:push",
- "pullrequest:approved",
- "repo:deleted",
- "repo:transfer"
+ "pullrequest:comment_resolved",
+ "repo:commit_status_updated",
+ "repo:updated",
+ "pullrequest:comment_deleted",
+ "repo:commit_status_created"
]
},
"minItems": 1,
"uniqueItems": true
},
+ "secret": {
+ "type": "string",
+ "description": "The secret to associate with the hook. The secret is never returned via the API. As such, this field is only used during updates. The secret can be set to `null` or \"\" to remove the secret (or create a hook with no secret). Leaving out the secret field during updates will leave the secret unchanged. Leaving out the secret during creation will create a hook with no secret.",
+ "minLength": 0,
+ "maxLength": 128
+ },
+ "secret_set": {
+ "type": "boolean",
+ "description": "Indicates whether or not the hook has an associated secret. It is not possible to see the hook's secret. This field is ignored during updates."
+ },
"subject": {
"$ref": "#/components/schemas/object"
},
diff --git a/plugins/bitbucket-cloud-common/package.json b/plugins/bitbucket-cloud-common/package.json
index d9a11c9a5d..a22d0781bf 100644
--- a/plugins/bitbucket-cloud-common/package.json
+++ b/plugins/bitbucket-cloud-common/package.json
@@ -41,7 +41,7 @@
"@backstage/cli": "workspace:^",
"@openapitools/openapi-generator-cli": "^2.4.26",
"msw": "^1.0.0",
- "ts-morph": "^20.0.0"
+ "ts-morph": "^21.0.0"
},
"files": [
"dist"
diff --git a/plugins/bitbucket-cloud-common/src/models/index.ts b/plugins/bitbucket-cloud-common/src/models/index.ts
index d868e2926c..8fce389a32 100644
--- a/plugins/bitbucket-cloud-common/src/models/index.ts
+++ b/plugins/bitbucket-cloud-common/src/models/index.ts
@@ -373,7 +373,19 @@ export namespace Models {
* The concatenation of the repository owner's username and the slugified name, e.g. "evzijst/interruptingcow". This is the same string used in Bitbucket URLs.
*/
full_name?: string;
+ /**
+ *
+ * The issue tracker for this repository is enabled. Issue Tracker
+ * features are not supported for repositories in workspaces
+ * administered through admin.atlassian.com.
+ */
has_issues?: boolean;
+ /**
+ *
+ * The wiki for this repository is enabled. Wiki
+ * features are not supported for repositories in workspaces
+ * administered through admin.atlassian.com.
+ */
has_wiki?: boolean;
is_private?: boolean;
language?: string;
diff --git a/plugins/catalog-backend-module-aws/src/lib/defaultTransformers.ts b/plugins/catalog-backend-module-aws/src/lib/defaultTransformers.ts
index 9de79e9811..07862bb298 100644
--- a/plugins/catalog-backend-module-aws/src/lib/defaultTransformers.ts
+++ b/plugins/catalog-backend-module-aws/src/lib/defaultTransformers.ts
@@ -18,6 +18,7 @@ import {
ANNOTATION_KUBERNETES_API_SERVER,
ANNOTATION_KUBERNETES_API_SERVER_CA,
ANNOTATION_KUBERNETES_AUTH_PROVIDER,
+ ANNOTATION_KUBERNETES_AWS_CLUSTER_ID,
} from '@backstage/plugin-kubernetes-common';
import type { EksClusterEntityTransformer } from '../processors/types';
import { ANNOTATION_AWS_ACCOUNT_ID, ANNOTATION_AWS_ARN } from '../constants';
@@ -29,6 +30,7 @@ import { ANNOTATION_AWS_ACCOUNT_ID, ANNOTATION_AWS_ARN } from '../constants';
export const defaultEksClusterEntityTransformer: EksClusterEntityTransformer =
async (cluster: Cluster, accountId: string) => {
const { arn, endpoint, certificateAuthority, name } = cluster;
+ const normalizedName = normalizeName(name as string);
return {
apiVersion: 'backstage.io/v1alpha1',
kind: 'Resource',
@@ -40,8 +42,9 @@ export const defaultEksClusterEntityTransformer: EksClusterEntityTransformer =
[ANNOTATION_KUBERNETES_API_SERVER_CA]:
certificateAuthority?.data || '',
[ANNOTATION_KUBERNETES_AUTH_PROVIDER]: 'aws',
+ [ANNOTATION_KUBERNETES_AWS_CLUSTER_ID]: normalizedName,
},
- name: normalizeName(name as string),
+ name: normalizedName,
namespace: 'default',
},
spec: {
diff --git a/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts b/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts
index 6cec6ed66d..a07f775fb9 100644
--- a/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts
+++ b/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts
@@ -67,6 +67,7 @@ describe('AwsEKSClusterProcessor', () => {
'kubernetes.io/api-server-certificate-authority':
cluster.cluster?.certificateAuthority?.data,
'kubernetes.io/auth-provider': 'aws',
+ 'kubernetes.io/x-k8s-aws-id': 'backstage-test',
},
name: 'backstage-test',
namespace: 'default',
diff --git a/plugins/catalog-backend/src/schema/openapi.generated.ts b/plugins/catalog-backend/src/schema/openapi.generated.ts
index fe64c75373..c29dd78ec6 100644
--- a/plugins/catalog-backend/src/schema/openapi.generated.ts
+++ b/plugins/catalog-backend/src/schema/openapi.generated.ts
@@ -22,7 +22,7 @@ import { createValidatedOpenApiRouter } from '@backstage/backend-openapi-utils';
export const spec = {
openapi: '3.0.3',
info: {
- title: '@backstage/plugin-catalog-backend',
+ title: 'catalog',
version: '1',
description:
'The Backstage backend plugin that provides the Backstage catalog',
@@ -36,9 +36,6 @@ export const spec = {
{
url: '/',
},
- {
- url: 'catalog',
- },
],
components: {
examples: {},
diff --git a/plugins/catalog-backend/src/schema/openapi.yaml b/plugins/catalog-backend/src/schema/openapi.yaml
index d3ef718286..51283d5fbc 100644
--- a/plugins/catalog-backend/src/schema/openapi.yaml
+++ b/plugins/catalog-backend/src/schema/openapi.yaml
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
- title: '@backstage/plugin-catalog-backend'
+ title: catalog
version: '1'
description: The Backstage backend plugin that provides the Backstage catalog
license:
@@ -9,7 +9,6 @@ info:
contact: {}
servers:
- url: /
- - url: catalog
components:
examples: {}
headers: {}
diff --git a/plugins/catalog/api-report.md b/plugins/catalog/api-report.md
index bef24b50d8..feda3fd70d 100644
--- a/plugins/catalog/api-report.md
+++ b/plugins/catalog/api-report.md
@@ -182,6 +182,7 @@ export const CatalogTable: {
): TableColumn;
createNamespaceColumn(): TableColumn;
}>;
+ defaultColumnsFunc: CatalogTableColumnsFunc;
};
// @public
diff --git a/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx b/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
index 006210bb1d..7da12d7138 100644
--- a/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
+++ b/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
@@ -47,6 +47,7 @@ import React, { ReactNode, useMemo } from 'react';
import { columnFactories } from './columns';
import { CatalogTableColumnsFunc, CatalogTableRow } from './types';
import { PaginatedCatalogTable } from './PaginatedCatalogTable';
+import { defaultCatalogTableColumnsFunc } from './defaultCatalogTableColumnsFunc';
/**
* Props for {@link CatalogTable}.
@@ -77,52 +78,10 @@ const refCompare = (a: Entity, b: Entity) => {
return toRef(a).localeCompare(toRef(b));
};
-const defaultColumnsFunc: CatalogTableColumnsFunc = ({ filters, entities }) => {
- const showTypeColumn = filters.type === undefined;
-
- return [
- columnFactories.createTitleColumn({ hidden: true }),
- columnFactories.createNameColumn({ defaultKind: filters.kind?.value }),
- ...createEntitySpecificColumns(),
- columnFactories.createMetadataDescriptionColumn(),
- columnFactories.createTagsColumn(),
- ];
-
- function createEntitySpecificColumns(): TableColumn[] {
- const baseColumns = [
- columnFactories.createSystemColumn(),
- columnFactories.createOwnerColumn(),
- columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
- columnFactories.createSpecLifecycleColumn(),
- ];
- switch (filters.kind?.value) {
- case 'user':
- return [];
- case 'domain':
- case 'system':
- return [columnFactories.createOwnerColumn()];
- case 'group':
- case 'template':
- return [
- columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
- ];
- case 'location':
- return [
- columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
- columnFactories.createSpecTargetsColumn(),
- ];
- default:
- return entities.every(entity => entity.metadata.namespace === 'default')
- ? baseColumns
- : [...baseColumns, columnFactories.createNamespaceColumn()];
- }
- }
-};
-
/** @public */
export const CatalogTable = (props: CatalogTableProps) => {
const {
- columns = defaultColumnsFunc,
+ columns = defaultCatalogTableColumnsFunc,
tableOptions,
subtitle,
emptyContent,
@@ -267,6 +226,7 @@ export const CatalogTable = (props: CatalogTableProps) => {
};
CatalogTable.columns = columnFactories;
+CatalogTable.defaultColumnsFunc = defaultCatalogTableColumnsFunc;
function toEntityRow(entity: Entity) {
const partOfSystemRelations = getEntityRelations(entity, RELATION_PART_OF, {
diff --git a/plugins/catalog/src/components/CatalogTable/defaultCatalogTableColumnsFunc.tsx b/plugins/catalog/src/components/CatalogTable/defaultCatalogTableColumnsFunc.tsx
new file mode 100644
index 0000000000..85f44d3f51
--- /dev/null
+++ b/plugins/catalog/src/components/CatalogTable/defaultCatalogTableColumnsFunc.tsx
@@ -0,0 +1,67 @@
+/*
+ * Copyright 2023 The Backstage Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { TableColumn } from '@backstage/core-components';
+import { columnFactories } from './columns';
+import { CatalogTableColumnsFunc, CatalogTableRow } from './types';
+
+// The defaultCatalogTableColumnsFunc symbol is not directly exported, but through the
+// CatalogTable.defaultColumnsFunc field.
+/** @public */
+export const defaultCatalogTableColumnsFunc: CatalogTableColumnsFunc = ({
+ filters,
+ entities,
+}) => {
+ const showTypeColumn = filters.type === undefined;
+
+ return [
+ columnFactories.createTitleColumn({ hidden: true }),
+ columnFactories.createNameColumn({ defaultKind: filters.kind?.value }),
+ ...createEntitySpecificColumns(),
+ columnFactories.createMetadataDescriptionColumn(),
+ columnFactories.createTagsColumn(),
+ ];
+
+ function createEntitySpecificColumns(): TableColumn[] {
+ const baseColumns = [
+ columnFactories.createSystemColumn(),
+ columnFactories.createOwnerColumn(),
+ columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
+ columnFactories.createSpecLifecycleColumn(),
+ ];
+ switch (filters.kind?.value) {
+ case 'user':
+ return [];
+ case 'domain':
+ case 'system':
+ return [columnFactories.createOwnerColumn()];
+ case 'group':
+ case 'template':
+ return [
+ columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
+ ];
+ case 'location':
+ return [
+ columnFactories.createSpecTypeColumn({ hidden: !showTypeColumn }),
+ columnFactories.createSpecTargetsColumn(),
+ ];
+ default:
+ return entities.every(entity => entity.metadata.namespace === 'default')
+ ? baseColumns
+ : [...baseColumns, columnFactories.createNamespaceColumn()];
+ }
+ }
+};
diff --git a/plugins/cloudbuild/src/api/CloudbuildClient.ts b/plugins/cloudbuild/src/api/CloudbuildClient.ts
index 3717e3d1db..256e702cda 100644
--- a/plugins/cloudbuild/src/api/CloudbuildClient.ts
+++ b/plugins/cloudbuild/src/api/CloudbuildClient.ts
@@ -20,6 +20,7 @@ import {
ActionsGetWorkflowResponseData,
} from '../api/types';
import { OAuthApi } from '@backstage/core-plugin-api';
+import packageinfo from '../../package.json';
/** @public */
export class CloudbuildClient implements CloudbuildApi {
@@ -30,19 +31,13 @@ export class CloudbuildClient implements CloudbuildApi {
location: string;
runId: string;
}): Promise {
- await fetch(
+ await this.request(
`https://cloudbuild.googleapis.com/v1/projects/${encodeURIComponent(
options.projectId,
)}/locations/${encodeURIComponent(
options.location,
)}/builds/${encodeURIComponent(options.runId)}:retry`,
- {
- method: 'POST',
- headers: new Headers({
- Accept: '*/*',
- Authorization: `Bearer ${await this.getToken()}`,
- }),
- },
+ 'POST',
);
}
@@ -51,18 +46,12 @@ export class CloudbuildClient implements CloudbuildApi {
location: string;
cloudBuildFilter: string;
}): Promise {
- const workflowRuns = await fetch(
+ const workflowRuns = await this.request(
`https://cloudbuild.googleapis.com/v1/projects/${encodeURIComponent(
options.projectId,
)}/locations/${encodeURIComponent(
options.location,
)}/builds?filter=${encodeURIComponent(options.cloudBuildFilter)}`,
- {
- headers: new Headers({
- Accept: '*/*',
- Authorization: `Bearer ${await this.getToken()}`,
- }),
- },
);
const builds: ActionsListWorkflowRunsForRepoResponseData =
@@ -76,18 +65,12 @@ export class CloudbuildClient implements CloudbuildApi {
location: string;
id: string;
}): Promise {
- const workflow = await fetch(
+ const workflow = await this.request(
`https://cloudbuild.googleapis.com/v1/projects/${encodeURIComponent(
options.projectId,
)}/locations/${encodeURIComponent(
options.location,
)}/builds/${encodeURIComponent(options.id)}`,
- {
- headers: new Headers({
- Accept: '*/*',
- Authorization: `Bearer ${await this.getToken()}`,
- }),
- },
);
const build: ActionsGetWorkflowResponseData = await workflow.json();
@@ -100,18 +83,12 @@ export class CloudbuildClient implements CloudbuildApi {
location: string;
id: string;
}): Promise {
- const workflow = await fetch(
+ const workflow = await this.request(
`https://cloudbuild.googleapis.com/v1/projects/${encodeURIComponent(
options.projectId,
)}/locations/${encodeURIComponent(
options.location,
)}/builds/${encodeURIComponent(options.id)}`,
- {
- headers: new Headers({
- Accept: '*/*',
- Authorization: `Bearer ${await this.getToken()}`,
- }),
- },
);
const build: ActionsGetWorkflowResponseData = await workflow.json();
@@ -127,4 +104,23 @@ export class CloudbuildClient implements CloudbuildApi {
'https://www.googleapis.com/auth/cloud-platform',
);
}
+
+ private async request(
+ url: string,
+ method: string = 'GET',
+ ): Promise {
+ const requestHeaders = {
+ Accept: '*/*',
+ Authorization: `Bearer ${await this.getToken()}`,
+ ...(process.env.NODE_ENV === 'production'
+ ? {
+ 'X-Goog-Api-Client': `backstage/cloudbuild/${packageinfo.version}`,
+ }
+ : {}),
+ };
+ return fetch(url, {
+ method,
+ headers: requestHeaders,
+ });
+ }
}
diff --git a/plugins/devtools/src/components/Content/ConfigContent/ConfigContent.tsx b/plugins/devtools/src/components/Content/ConfigContent/ConfigContent.tsx
index aba46f85b7..4bd4bc95c6 100644
--- a/plugins/devtools/src/components/Content/ConfigContent/ConfigContent.tsx
+++ b/plugins/devtools/src/components/Content/ConfigContent/ConfigContent.tsx
@@ -87,7 +87,7 @@ export const ConfigContent = () => {
src={configInfo.config as object}
name="config"
enableClipboard={false}
- theme={theme.palette.type === 'dark' ? 'monokai' : 'rjv-default'}
+ theme={theme.palette.type === 'dark' ? 'chalk' : 'rjv-default'}
/>
diff --git a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx
index fcbea53603..d32f8619ba 100644
--- a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx
+++ b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx
@@ -23,6 +23,7 @@ import ListItem from '@material-ui/core/ListItem';
import ListItemAvatar from '@material-ui/core/ListItemAvatar';
import ListItemText from '@material-ui/core/ListItemText';
import Paper from '@material-ui/core/Paper';
+import Button from '@material-ui/core/Button';
import { createStyles, makeStyles, Theme } from '@material-ui/core/styles';
import Alert from '@material-ui/lab/Alert';
import React from 'react';
@@ -38,6 +39,7 @@ import { DevToolsInfo } from '@backstage/plugin-devtools-common';
const useStyles = makeStyles((theme: Theme) =>
createStyles({
paperStyle: {
+ display: 'flex',
marginBottom: theme.spacing(2),
},
flexContainer: {
@@ -123,22 +125,17 @@ export const InfoContent = () => {
secondary={about?.backstageVersion}
/>
-
- {
- copyToClipboard({ about });
- }}
- className={classes.copyButton}
- >
-
-
-
-
-
-
-
+
+ {
+ copyToClipboard({ about });
+ }}
+ className={classes.copyButton}
+ startIcon={ }
+ >
+ Copy Info to Clipboard
+
diff --git a/plugins/home-react/package.json b/plugins/home-react/package.json
index 896d9e46f2..e01c99f079 100644
--- a/plugins/home-react/package.json
+++ b/plugins/home-react/package.json
@@ -38,7 +38,7 @@
"@backstage/core-plugin-api": "workspace:^",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
- "@rjsf/utils": "5.15.1",
+ "@rjsf/utils": "5.16.1",
"@types/react": "^16.13.1 || ^17.0.0"
},
"peerDependencies": {
diff --git a/plugins/home/package.json b/plugins/home/package.json
index 9eff9d6110..64ad13cc2b 100644
--- a/plugins/home/package.json
+++ b/plugins/home/package.json
@@ -60,10 +60,10 @@
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
- "@rjsf/core": "5.15.1",
- "@rjsf/material-ui": "5.15.1",
- "@rjsf/utils": "5.15.1",
- "@rjsf/validator-ajv8": "5.15.1",
+ "@rjsf/core": "5.16.1",
+ "@rjsf/material-ui": "5.16.1",
+ "@rjsf/utils": "5.16.1",
+ "@rjsf/validator-ajv8": "5.16.1",
"@types/react": "^16.13.1 || ^17.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
diff --git a/plugins/home/src/api/VisitsStorageApi.ts b/plugins/home/src/api/VisitsStorageApi.ts
index c72d4c5d64..a7cd063455 100644
--- a/plugins/home/src/api/VisitsStorageApi.ts
+++ b/plugins/home/src/api/VisitsStorageApi.ts
@@ -130,16 +130,16 @@ export class VisitsStorageApi implements VisitsApi {
}
return new Promise((resolve, reject) => {
- const subsription = this.storageApi
+ const subscription = this.storageApi
.observe$(storageKey)
.subscribe({
next: next => {
const visits = next.value ?? [];
- subsription.unsubscribe();
+ subscription.unsubscribe();
resolve(visits);
},
error: err => {
- subsription.unsubscribe();
+ subscription.unsubscribe();
reject(err);
},
});
diff --git a/plugins/kubernetes-backend/src/auth/AwsIamStrategy.test.ts b/plugins/kubernetes-backend/src/auth/AwsIamStrategy.test.ts
index 873c78e177..e6e69cc05d 100644
--- a/plugins/kubernetes-backend/src/auth/AwsIamStrategy.test.ts
+++ b/plugins/kubernetes-backend/src/auth/AwsIamStrategy.test.ts
@@ -16,16 +16,11 @@
import { ConfigReader } from '@backstage/config';
import {
ANNOTATION_KUBERNETES_AWS_ASSUME_ROLE,
+ ANNOTATION_KUBERNETES_AWS_CLUSTER_ID,
ANNOTATION_KUBERNETES_AWS_EXTERNAL_ID,
} from '@backstage/plugin-kubernetes-common';
import { AwsIamStrategy } from './AwsIamStrategy';
-let presign = jest.fn(async () => ({
- hostname: 'https://example.com',
- query: {},
- path: '/asdf',
-}));
-
const credsManager = {
getCredentialProvider: async () => ({
sdkCredentialProvider: {
@@ -40,12 +35,16 @@ jest.mock('@backstage/integration-aws-node', () => ({
},
}));
-const config = new ConfigReader({});
+const signer = {
+ presign: jest.fn().mockResolvedValue({
+ hostname: 'https://example.com',
+ query: {},
+ path: '/asdf',
+ }),
+};
jest.mock('@aws-sdk/signature-v4', () => ({
- SignatureV4: jest.fn().mockImplementation(() => ({
- presign,
- })),
+ SignatureV4: jest.fn().mockImplementation(() => signer),
}));
const fromTemporaryCredentials = jest.fn();
@@ -55,9 +54,10 @@ jest.mock('@aws-sdk/credential-providers', () => ({
},
}));
-describe('AwsIamStrategy tests', () => {
- beforeEach(() => {});
- it('returns a signed url for AWS credentials without assume role', async () => {
+describe('AwsIamStrategy#getCredential', () => {
+ const config = new ConfigReader({});
+
+ it('returns a presigned url', async () => {
const strategy = new AwsIamStrategy({ config });
const credential = await strategy.getCredential({
@@ -65,13 +65,43 @@ describe('AwsIamStrategy tests', () => {
url: '',
authMetadata: {},
});
+
expect(credential).toEqual({
type: 'bearer token',
token: 'k8s-aws-v1.aHR0cHM6Ly9odHRwczovL2V4YW1wbGUuY29tL2FzZGY_',
});
+ expect(signer.presign).toHaveBeenCalledWith(
+ expect.objectContaining({
+ headers: expect.objectContaining({ 'x-k8s-aws-id': 'test-cluster' }),
+ }),
+ expect.anything(),
+ );
});
- it('returns a signed url for AWS credentials with assume role', async () => {
+ it('returns a presigned url for specified cluster ID', async () => {
+ const strategy = new AwsIamStrategy({ config });
+
+ const credential = await strategy.getCredential({
+ name: 'cluster-name',
+ url: '',
+ authMetadata: {
+ [ANNOTATION_KUBERNETES_AWS_CLUSTER_ID]: 'other-name',
+ },
+ });
+
+ expect(credential).toEqual({
+ type: 'bearer token',
+ token: 'k8s-aws-v1.aHR0cHM6Ly9odHRwczovL2V4YW1wbGUuY29tL2FzZGY_',
+ });
+ expect(signer.presign).toHaveBeenCalledWith(
+ expect.objectContaining({
+ headers: expect.objectContaining({ 'x-k8s-aws-id': 'other-name' }),
+ }),
+ expect.anything(),
+ );
+ });
+
+ it('returns a presigned url for AWS credentials with assumed role', async () => {
const strategy = new AwsIamStrategy({ config });
const credential = await strategy.getCredential({
@@ -100,7 +130,7 @@ describe('AwsIamStrategy tests', () => {
});
});
- it('returns a signed url for AWS credentials and passes the external id', async () => {
+ it('returns a presigned url for AWS credentials and passes the external id', async () => {
const strategy = new AwsIamStrategy({ config });
const credential = await strategy.getCredential({
@@ -129,21 +159,17 @@ describe('AwsIamStrategy tests', () => {
});
});
- describe('When the credentials is failing', () => {
- beforeEach(() => {
- presign = jest.fn(async () => {
- throw new Error('no way');
- });
- });
- it('throws the right error', async () => {
- const strategy = new AwsIamStrategy({ config });
- await expect(
- strategy.getCredential({
- name: 'test-cluster',
- url: '',
- authMetadata: {},
- }),
- ).rejects.toThrow('no way');
- });
+ it('fails on signer error', () => {
+ signer.presign.mockRejectedValue(new Error('no way'));
+
+ const strategy = new AwsIamStrategy({ config });
+
+ return expect(
+ strategy.getCredential({
+ name: 'test-cluster',
+ url: '',
+ authMetadata: {},
+ }),
+ ).rejects.toThrow('no way');
});
});
diff --git a/plugins/kubernetes-backend/src/auth/AwsIamStrategy.ts b/plugins/kubernetes-backend/src/auth/AwsIamStrategy.ts
index 942b93615f..4c56f86a30 100644
--- a/plugins/kubernetes-backend/src/auth/AwsIamStrategy.ts
+++ b/plugins/kubernetes-backend/src/auth/AwsIamStrategy.ts
@@ -23,6 +23,7 @@ import {
import { Config } from '@backstage/config';
import {
ANNOTATION_KUBERNETES_AWS_ASSUME_ROLE,
+ ANNOTATION_KUBERNETES_AWS_CLUSTER_ID,
ANNOTATION_KUBERNETES_AWS_EXTERNAL_ID,
} from '@backstage/plugin-kubernetes-common';
import {
@@ -61,7 +62,8 @@ export class AwsIamStrategy implements AuthenticationStrategy {
return {
type: 'bearer token',
token: await this.getBearerToken(
- clusterDetails.name,
+ clusterDetails.authMetadata[ANNOTATION_KUBERNETES_AWS_CLUSTER_ID] ??
+ clusterDetails.name,
clusterDetails.authMetadata[ANNOTATION_KUBERNETES_AWS_ASSUME_ROLE],
clusterDetails.authMetadata[ANNOTATION_KUBERNETES_AWS_EXTERNAL_ID],
),
@@ -73,7 +75,7 @@ export class AwsIamStrategy implements AuthenticationStrategy {
}
private async getBearerToken(
- clusterName: string,
+ clusterId: string,
assumeRole?: string,
externalId?: string,
): Promise {
@@ -105,7 +107,7 @@ export class AwsIamStrategy implements AuthenticationStrategy {
{
headers: {
host: `sts.${region}.amazonaws.com`,
- 'x-k8s-aws-id': clusterName,
+ 'x-k8s-aws-id': clusterId,
},
hostname: `sts.${region}.amazonaws.com`,
method: 'GET',
diff --git a/plugins/kubernetes-common/api-report.md b/plugins/kubernetes-common/api-report.md
index abd340f368..e4dbf79f4a 100644
--- a/plugins/kubernetes-common/api-report.md
+++ b/plugins/kubernetes-common/api-report.md
@@ -39,6 +39,10 @@ export const ANNOTATION_KUBERNETES_AUTH_PROVIDER =
export const ANNOTATION_KUBERNETES_AWS_ASSUME_ROLE =
'kubernetes.io/aws-assume-role';
+// @public
+export const ANNOTATION_KUBERNETES_AWS_CLUSTER_ID =
+ 'kubernetes.io/x-k8s-aws-id';
+
// @public
export const ANNOTATION_KUBERNETES_AWS_EXTERNAL_ID =
'kubernetes.io/aws-external-id';
diff --git a/plugins/kubernetes-common/src/catalog-entity-constants.ts b/plugins/kubernetes-common/src/catalog-entity-constants.ts
index e7e5cddc25..996faf670d 100644
--- a/plugins/kubernetes-common/src/catalog-entity-constants.ts
+++ b/plugins/kubernetes-common/src/catalog-entity-constants.ts
@@ -84,6 +84,7 @@ export const ANNOTATION_KUBERNETES_DASHBOARD_APP =
*/
export const ANNOTATION_KUBERNETES_DASHBOARD_PARAMETERS =
'kubernetes.io/dashboard-parameters';
+
/**
* Annotation for specifying the assume role use to authenticate with AWS.
*
@@ -92,6 +93,14 @@ export const ANNOTATION_KUBERNETES_DASHBOARD_PARAMETERS =
export const ANNOTATION_KUBERNETES_AWS_ASSUME_ROLE =
'kubernetes.io/aws-assume-role';
+/**
+ * Annotation for specifying the AWS ID of a cluster when signing STS tokens
+ *
+ * @public
+ */
+export const ANNOTATION_KUBERNETES_AWS_CLUSTER_ID =
+ 'kubernetes.io/x-k8s-aws-id';
+
/**
* Annotation for specifying an external id when communicating with AWS
*
diff --git a/plugins/scaffolder-backend-module-bitbucket/package.json b/plugins/scaffolder-backend-module-bitbucket/package.json
index 03ebab43fc..e045bb9dc8 100644
--- a/plugins/scaffolder-backend-module-bitbucket/package.json
+++ b/plugins/scaffolder-backend-module-bitbucket/package.json
@@ -28,6 +28,7 @@
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
"@backstage/plugin-scaffolder-node": "workspace:^",
+ "fs-extra": "10.1.0",
"node-fetch": "^2.6.7",
"yaml": "^2.0.0"
},
diff --git a/plugins/scaffolder-backend-module-bitbucket/src/actions/bitbucketServerPullRequest.ts b/plugins/scaffolder-backend-module-bitbucket/src/actions/bitbucketServerPullRequest.ts
index dc75145ebc..fc123f0b80 100644
--- a/plugins/scaffolder-backend-module-bitbucket/src/actions/bitbucketServerPullRequest.ts
+++ b/plugins/scaffolder-backend-module-bitbucket/src/actions/bitbucketServerPullRequest.ts
@@ -21,10 +21,16 @@ import {
} from '@backstage/integration';
import {
createTemplateAction,
+ getRepoSourceDirectory,
+ commitAndPushBranch,
+ addFiles,
+ createBranch as createGitBranch,
+ cloneRepo,
parseRepoUrl,
} from '@backstage/plugin-scaffolder-node';
import fetch, { RequestInit, Response } from 'node-fetch';
import { Config } from '@backstage/config';
+import fs from 'fs-extra';
const createPullRequest = async (opts: {
project: string;
@@ -152,7 +158,51 @@ const findBranches = async (opts: {
return undefined;
};
+const createBranch = async (opts: {
+ project: string;
+ repo: string;
+ branchName: string;
+ authorization: string;
+ apiBaseUrl: string;
+ startPoint: string;
+}) => {
+ const { project, repo, branchName, authorization, apiBaseUrl, startPoint } =
+ opts;
+ let response: Response;
+ const options: RequestInit = {
+ method: 'POST',
+ body: JSON.stringify({
+ name: branchName,
+ startPoint,
+ }),
+ headers: {
+ Authorization: authorization,
+ 'Content-Type': 'application/json',
+ },
+ };
+
+ try {
+ response = await fetch(
+ `${apiBaseUrl}/projects/${encodeURIComponent(
+ project,
+ )}/repos/${encodeURIComponent(repo)}/branches`,
+ options,
+ );
+ } catch (e) {
+ throw new Error(`Unable to create branch, ${e}`);
+ }
+
+ if (response.status !== 200) {
+ throw new Error(
+ `Unable to create branch, ${response.status} ${
+ response.statusText
+ }, ${await response.text()}`,
+ );
+ }
+
+ return await response.json();
+};
/**
* Creates a BitbucketServer Pull Request action.
* @public
@@ -161,7 +211,7 @@ export function createPublishBitbucketServerPullRequestAction(options: {
integrations: ScmIntegrationRegistry;
config: Config;
}) {
- const { integrations } = options;
+ const { integrations, config } = options;
return createTemplateAction<{
repoUrl: string;
@@ -268,7 +318,7 @@ export function createPublishBitbucketServerPullRequestAction(options: {
apiBaseUrl,
});
- const fromRef = await findBranches({
+ let fromRef = await findBranches({
project,
repo,
branchName: sourceBranch,
@@ -276,6 +326,83 @@ export function createPublishBitbucketServerPullRequestAction(options: {
apiBaseUrl,
});
+ if (!fromRef) {
+ // create branch
+ ctx.logger.info(
+ `source branch not found -> creating branch named: ${sourceBranch} lastCommit: ${toRef.latestCommit}`,
+ );
+ const latestCommit = toRef.latestCommit;
+
+ fromRef = await createBranch({
+ project,
+ repo,
+ branchName: sourceBranch,
+ authorization,
+ apiBaseUrl,
+ startPoint: latestCommit,
+ });
+
+ const remoteUrl = `https://${host}/scm/${project}/${repo}.git`;
+
+ const auth = authConfig.token
+ ? {
+ token: token!,
+ }
+ : {
+ username: authConfig.username!,
+ password: authConfig.password!,
+ };
+
+ const gitAuthorInfo = {
+ name: config.getOptionalString('scaffolder.defaultAuthor.name'),
+ email: config.getOptionalString('scaffolder.defaultAuthor.email'),
+ };
+
+ const tempDir = await ctx.createTemporaryDirectory();
+ const sourceDir = getRepoSourceDirectory(ctx.workspacePath, undefined);
+ await cloneRepo({
+ url: remoteUrl,
+ dir: tempDir,
+ auth,
+ logger: ctx.logger,
+ ref: sourceBranch,
+ });
+
+ await createGitBranch({
+ dir: tempDir,
+ auth,
+ logger: ctx.logger,
+ ref: sourceBranch,
+ });
+
+ // copy files
+ fs.cpSync(sourceDir, tempDir, {
+ recursive: true,
+ filter: path => {
+ return !(path.indexOf('.git') > -1);
+ },
+ });
+
+ await addFiles({
+ dir: tempDir,
+ auth,
+ logger: ctx.logger,
+ filepath: '.',
+ });
+
+ await commitAndPushBranch({
+ dir: tempDir,
+ auth,
+ logger: ctx.logger,
+ commitMessage:
+ description ??
+ config.getOptionalString('scaffolder.defaultCommitMessage') ??
+ '',
+ gitAuthorInfo,
+ branch: sourceBranch,
+ });
+ }
+
const pullRequestUrl = await createPullRequest({
project,
repo,
diff --git a/plugins/scaffolder-node/api-report.md b/plugins/scaffolder-node/api-report.md
index 356fc37cc6..6b1e6a54b6 100644
--- a/plugins/scaffolder-node/api-report.md
+++ b/plugins/scaffolder-node/api-report.md
@@ -45,6 +45,63 @@ export type ActionContext<
each?: JsonObject;
};
+// @public (undocumented)
+export function addFiles(options: {
+ dir: string;
+ filepath: string;
+ auth:
+ | {
+ username: string;
+ password: string;
+ }
+ | {
+ token: string;
+ };
+ logger?: Logger | undefined;
+}): Promise;
+
+// @public (undocumented)
+export function cloneRepo(options: {
+ url: string;
+ dir: string;
+ auth:
+ | {
+ username: string;
+ password: string;
+ }
+ | {
+ token: string;
+ };
+ logger?: Logger | undefined;
+ ref?: string | undefined;
+ depth?: number | undefined;
+ noCheckout?: boolean | undefined;
+}): Promise;
+
+// @public (undocumented)
+export function commitAndPushBranch(options: {
+ dir: string;
+ auth:
+ | {
+ username: string;
+ password: string;
+ }
+ | {
+ token: string;
+ };
+ logger?: Logger | undefined;
+ commitMessage: string;
+ gitAuthorInfo?: {
+ name?: string;
+ email?: string;
+ };
+ branch?: string;
+ remoteRef?: string;
+ remote?: string;
+}): Promise<{
+ commitHash: string;
+}>;
+
// @public (undocumented)
export function commitAndPushRepo(input: {
dir: string;
@@ -68,6 +125,21 @@ export function commitAndPushRepo(input: {
commitHash: string;
}>;
+// @public (undocumented)
+export function createBranch(options: {
+ dir: string;
+ ref: string;
+ auth:
+ | {
+ username: string;
+ password: string;
+ }
+ | {
+ token: string;
+ };
+ logger?: Logger | undefined;
+}): Promise;
+
// @public
export const createTemplateAction: <
TInputParams extends JsonObject = JsonObject,
diff --git a/plugins/scaffolder-node/src/actions/gitHelpers.test.ts b/plugins/scaffolder-node/src/actions/gitHelpers.test.ts
index 7bc3f64f46..b230b2cd06 100644
--- a/plugins/scaffolder-node/src/actions/gitHelpers.test.ts
+++ b/plugins/scaffolder-node/src/actions/gitHelpers.test.ts
@@ -15,7 +15,14 @@
*/
import { Git, getVoidLogger } from '@backstage/backend-common';
-import { commitAndPushRepo, initRepoAndPush } from './gitHelpers';
+import {
+ commitAndPushRepo,
+ initRepoAndPush,
+ commitAndPushBranch,
+ addFiles,
+ createBranch,
+ cloneRepo,
+} from './gitHelpers';
jest.mock('@backstage/backend-common', () => ({
Git: {
@@ -29,10 +36,14 @@ jest.mock('@backstage/backend-common', () => ({
fetch: jest.fn(),
addRemote: jest.fn(),
push: jest.fn(),
+ clone: jest.fn(),
}),
},
getVoidLogger: jest.requireActual('@backstage/backend-common').getVoidLogger,
}));
+jest.mock('fs-extra', () => ({
+ cpSync: jest.fn(),
+}));
const mockedGit = Git.fromAuth({
logger: getVoidLogger(),
@@ -303,3 +314,333 @@ describe('commitAndPushRepo', () => {
});
});
});
+
+describe('cloneRepo', () => {
+ afterEach(() => {
+ jest.clearAllMocks();
+ });
+
+ describe('with minimal parameters', () => {
+ beforeEach(async () => {
+ await cloneRepo({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+ });
+
+ it('clone the repo', () => {
+ expect(mockedGit.clone).toHaveBeenCalledWith({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ ref: undefined,
+ depth: undefined,
+ noCheckout: undefined,
+ });
+ });
+ });
+
+ it('with token', async () => {
+ await cloneRepo({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ auth: {
+ token: 'test-token',
+ },
+ });
+
+ expect(mockedGit.clone).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ url: 'git@github.com:test/repo.git',
+ ref: undefined,
+ depth: undefined,
+ noCheckout: undefined,
+ });
+ });
+
+ it('allows overriding the default branch', async () => {
+ await cloneRepo({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ ref: 'trunk',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+
+ expect(mockedGit.clone).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ url: 'git@github.com:test/repo.git',
+ ref: 'trunk',
+ depth: undefined,
+ noCheckout: undefined,
+ });
+ });
+
+ it('allows overriding the depth', async () => {
+ await cloneRepo({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ ref: 'trunk',
+ depth: 2,
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+
+ expect(mockedGit.clone).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ url: 'git@github.com:test/repo.git',
+ ref: 'trunk',
+ depth: 2,
+ noCheckout: undefined,
+ });
+ });
+
+ it('allows overriding the noCheckout', async () => {
+ await cloneRepo({
+ url: 'git@github.com:test/repo.git',
+ dir: '/tmp/repo/dir/',
+ ref: 'trunk',
+ depth: 2,
+ noCheckout: true,
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+
+ expect(mockedGit.clone).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ url: 'git@github.com:test/repo.git',
+ ref: 'trunk',
+ depth: 2,
+ noCheckout: true,
+ });
+ });
+});
+
+describe('createBranch', () => {
+ afterEach(() => {
+ jest.clearAllMocks();
+ });
+
+ describe('with minimal parameters', () => {
+ beforeEach(async () => {
+ await createBranch({
+ dir: '/tmp/repo/dir/',
+ ref: 'trunk',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+ });
+
+ it('create the branch', () => {
+ expect(mockedGit.checkout).toHaveBeenCalledWith({
+ ref: 'trunk',
+ dir: '/tmp/repo/dir/',
+ });
+ });
+ });
+
+ it('with token', async () => {
+ await createBranch({
+ dir: '/tmp/repo/dir/',
+ ref: 'trunk',
+ auth: {
+ token: 'test-token',
+ },
+ });
+
+ expect(mockedGit.checkout).toHaveBeenCalledWith({
+ ref: 'trunk',
+ dir: '/tmp/repo/dir/',
+ });
+ });
+});
+
+describe('addFiles', () => {
+ afterEach(() => {
+ jest.clearAllMocks();
+ });
+
+ describe('with minimal parameters', () => {
+ beforeEach(async () => {
+ await addFiles({
+ dir: '/tmp/repo/dir/',
+ filepath: '.',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ });
+ });
+
+ it('add files', () => {
+ expect(mockedGit.add).toHaveBeenCalledWith({
+ filepath: '.',
+ dir: '/tmp/repo/dir/',
+ });
+ });
+ });
+
+ it('with token', async () => {
+ await addFiles({
+ dir: '/tmp/repo/dir/',
+ filepath: '.',
+ auth: {
+ token: 'test-token',
+ },
+ });
+
+ expect(mockedGit.add).toHaveBeenCalledWith({
+ filepath: '.',
+ dir: '/tmp/repo/dir/',
+ });
+ });
+});
+
+describe('commitAndPushBranch', () => {
+ afterEach(() => {
+ jest.clearAllMocks();
+ });
+
+ describe('with minimal parameters', () => {
+ beforeEach(async () => {
+ await commitAndPushBranch({
+ dir: '/tmp/repo/dir/',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ commitMessage: 'commit message',
+ });
+ });
+
+ it('create commit', () => {
+ expect(mockedGit.commit).toHaveBeenCalledWith({
+ message: 'commit message',
+ dir: '/tmp/repo/dir/',
+ author: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ committer: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ });
+ });
+
+ it('pushes to the remote', () => {
+ expect(mockedGit.push).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ remote: 'origin',
+ remoteRef: 'refs/heads/master',
+ });
+ });
+ });
+
+ it('with token', async () => {
+ await commitAndPushBranch({
+ dir: '/tmp/repo/dir/',
+ auth: {
+ token: 'test-token',
+ },
+ commitMessage: 'commit message',
+ gitAuthorInfo: {
+ name: 'gitCommitter',
+ email: 'gitCommitter@backstage.io',
+ },
+ logger: getVoidLogger(),
+ });
+
+ expect(mockedGit.commit).toHaveBeenCalledWith({
+ message: 'commit message',
+ dir: '/tmp/repo/dir/',
+ author: {
+ name: 'gitCommitter',
+ email: 'gitCommitter@backstage.io',
+ },
+ committer: {
+ name: 'gitCommitter',
+ email: 'gitCommitter@backstage.io',
+ },
+ });
+
+ expect(mockedGit.push).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ remote: 'origin',
+ remoteRef: 'refs/heads/master',
+ });
+ });
+
+ it('allows overriding the default branch', async () => {
+ await commitAndPushBranch({
+ dir: '/tmp/repo/dir/',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ commitMessage: 'commit message',
+ branch: 'trunk',
+ });
+
+ expect(mockedGit.commit).toHaveBeenCalledWith({
+ message: 'commit message',
+ dir: '/tmp/repo/dir/',
+ author: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ committer: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ });
+
+ expect(mockedGit.push).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ remote: 'origin',
+ remoteRef: 'refs/heads/trunk',
+ });
+ });
+
+ it('allows overriding the remoteRef', async () => {
+ await commitAndPushBranch({
+ dir: '/tmp/repo/dir/',
+ auth: {
+ username: 'test-user',
+ password: 'test-password',
+ },
+ commitMessage: 'commit message',
+ remoteRef: 'ABC123',
+ });
+
+ expect(mockedGit.commit).toHaveBeenCalledWith({
+ message: 'commit message',
+ dir: '/tmp/repo/dir/',
+ author: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ committer: {
+ name: 'Scaffolder',
+ email: 'scaffolder@backstage.io',
+ },
+ });
+
+ expect(mockedGit.push).toHaveBeenCalledWith({
+ dir: '/tmp/repo/dir/',
+ remote: 'origin',
+ remoteRef: 'ABC123',
+ });
+ });
+});
diff --git a/plugins/scaffolder-node/src/actions/gitHelpers.ts b/plugins/scaffolder-node/src/actions/gitHelpers.ts
index 6d449a0a29..2026e75247 100644
--- a/plugins/scaffolder-node/src/actions/gitHelpers.ts
+++ b/plugins/scaffolder-node/src/actions/gitHelpers.ts
@@ -134,3 +134,123 @@ export async function commitAndPushRepo(input: {
return { commitHash };
}
+
+/**
+ * @public
+ */
+export async function cloneRepo(options: {
+ url: string;
+ dir: string;
+ // For use cases where token has to be used with Basic Auth
+ // it has to be provided as password together with a username
+ // which may be a fixed value defined by the provider.
+ auth: { username: string; password: string } | { token: string };
+ logger?: Logger | undefined;
+ ref?: string | undefined;
+ depth?: number | undefined;
+ noCheckout?: boolean | undefined;
+}): Promise {
+ const { url, dir, auth, logger, ref, depth, noCheckout } = options;
+
+ const git = Git.fromAuth({
+ ...auth,
+ logger,
+ });
+
+ await git.clone({ url, dir, ref, depth, noCheckout });
+}
+
+/**
+ * @public
+ */
+export async function createBranch(options: {
+ dir: string;
+ ref: string;
+ // For use cases where token has to be used with Basic Auth
+ // it has to be provided as password together with a username
+ // which may be a fixed value defined by the provider.
+ auth: { username: string; password: string } | { token: string };
+ logger?: Logger | undefined;
+}): Promise {
+ const { dir, ref, auth, logger } = options;
+ const git = Git.fromAuth({
+ ...auth,
+ logger,
+ });
+
+ await git.checkout({ dir, ref });
+}
+
+/**
+ * @public
+ */
+export async function addFiles(options: {
+ dir: string;
+ filepath: string;
+ // For use cases where token has to be used with Basic Auth
+ // it has to be provided as password together with a username
+ // which may be a fixed value defined by the provider.
+ auth: { username: string; password: string } | { token: string };
+ logger?: Logger | undefined;
+}): Promise {
+ const { dir, filepath, auth, logger } = options;
+ const git = Git.fromAuth({
+ ...auth,
+ logger,
+ });
+
+ await git.add({ dir, filepath });
+}
+
+/**
+ * @public
+ */
+export async function commitAndPushBranch(options: {
+ dir: string;
+ // For use cases where token has to be used with Basic Auth
+ // it has to be provided as password together with a username
+ // which may be a fixed value defined by the provider.
+ auth: { username: string; password: string } | { token: string };
+ logger?: Logger | undefined;
+ commitMessage: string;
+ gitAuthorInfo?: { name?: string; email?: string };
+ branch?: string;
+ remoteRef?: string;
+ remote?: string;
+}): Promise<{ commitHash: string }> {
+ const {
+ dir,
+ auth,
+ logger,
+ commitMessage,
+ gitAuthorInfo,
+ branch = 'master',
+ remoteRef,
+ remote = 'origin',
+ } = options;
+ const git = Git.fromAuth({
+ ...auth,
+ logger,
+ });
+
+ // use provided info if possible, otherwise use fallbacks
+ const authorInfo = {
+ name: gitAuthorInfo?.name ?? 'Scaffolder',
+ email: gitAuthorInfo?.email ?? 'scaffolder@backstage.io',
+ };
+
+ const commitHash = await git.commit({
+ dir,
+ message: commitMessage,
+ author: authorInfo,
+ committer: authorInfo,
+ });
+
+ await git.push({
+ dir,
+ remote,
+ remoteRef: remoteRef ?? `refs/heads/${branch}`,
+ });
+
+ return { commitHash };
+}
diff --git a/plugins/scaffolder-node/src/actions/index.ts b/plugins/scaffolder-node/src/actions/index.ts
index 74a0bb61f9..c1c8551c53 100644
--- a/plugins/scaffolder-node/src/actions/index.ts
+++ b/plugins/scaffolder-node/src/actions/index.ts
@@ -25,5 +25,12 @@ export {
} from './executeShellCommand';
export { fetchContents, fetchFile } from './fetch';
export { type ActionContext, type TemplateAction } from './types';
-export { initRepoAndPush, commitAndPushRepo } from './gitHelpers';
+export {
+ initRepoAndPush,
+ commitAndPushRepo,
+ commitAndPushBranch,
+ addFiles,
+ createBranch,
+ cloneRepo,
+} from './gitHelpers';
export { parseRepoUrl, getRepoSourceDirectory } from './util';
diff --git a/plugins/scaffolder-react/package.json b/plugins/scaffolder-react/package.json
index f8390667be..fd6bcf5076 100644
--- a/plugins/scaffolder-react/package.json
+++ b/plugins/scaffolder-react/package.json
@@ -59,10 +59,10 @@
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
"@react-hookz/web": "^23.0.0",
- "@rjsf/core": "5.15.1",
- "@rjsf/material-ui": "5.15.1",
- "@rjsf/utils": "5.15.1",
- "@rjsf/validator-ajv8": "5.15.1",
+ "@rjsf/core": "5.16.1",
+ "@rjsf/material-ui": "5.16.1",
+ "@rjsf/utils": "5.16.1",
+ "@rjsf/validator-ajv8": "5.16.1",
"@types/json-schema": "^7.0.9",
"@types/react": "^16.13.1 || ^17.0.0",
"classnames": "^2.2.6",
diff --git a/plugins/scaffolder/package.json b/plugins/scaffolder/package.json
index 8652c380ba..40364e2da7 100644
--- a/plugins/scaffolder/package.json
+++ b/plugins/scaffolder/package.json
@@ -68,10 +68,10 @@
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
"@react-hookz/web": "^23.0.0",
- "@rjsf/core": "5.15.1",
- "@rjsf/material-ui": "5.15.1",
- "@rjsf/utils": "5.15.1",
- "@rjsf/validator-ajv8": "5.15.1",
+ "@rjsf/core": "5.16.1",
+ "@rjsf/material-ui": "5.16.1",
+ "@rjsf/utils": "5.16.1",
+ "@rjsf/validator-ajv8": "5.16.1",
"@types/react": "^16.13.1 || ^17.0.0",
"@uiw/react-codemirror": "^4.9.3",
"classnames": "^2.2.6",
diff --git a/plugins/search-backend/src/schema/openapi.generated.ts b/plugins/search-backend/src/schema/openapi.generated.ts
index 2586b7a5bf..06b576ba70 100644
--- a/plugins/search-backend/src/schema/openapi.generated.ts
+++ b/plugins/search-backend/src/schema/openapi.generated.ts
@@ -22,7 +22,7 @@ import { createValidatedOpenApiRouter } from '@backstage/backend-openapi-utils';
export const spec = {
openapi: '3.0.3',
info: {
- title: '@backstage/plugin-search-backend',
+ title: 'search',
version: '1',
description:
'The Backstage backend plugin that provides search functionality.',
diff --git a/plugins/search-backend/src/schema/openapi.yaml b/plugins/search-backend/src/schema/openapi.yaml
index 79bb84dfe0..47f7e0a1e5 100644
--- a/plugins/search-backend/src/schema/openapi.yaml
+++ b/plugins/search-backend/src/schema/openapi.yaml
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
- title: '@backstage/plugin-search-backend'
+ title: search
version: '1'
description: The Backstage backend plugin that provides search functionality.
license:
diff --git a/plugins/todo-backend/src/schema/openapi.generated.ts b/plugins/todo-backend/src/schema/openapi.generated.ts
index effe851790..238be2fe5b 100644
--- a/plugins/todo-backend/src/schema/openapi.generated.ts
+++ b/plugins/todo-backend/src/schema/openapi.generated.ts
@@ -22,7 +22,7 @@ import { createValidatedOpenApiRouter } from '@backstage/backend-openapi-utils';
export const spec = {
openapi: '3.0.3',
info: {
- title: '@backstage/plugin-todo-backend',
+ title: 'todo',
version: '1',
description:
'The Backstage backend plugin that provides source code todo comment browsing.',
diff --git a/plugins/todo-backend/src/schema/openapi.yaml b/plugins/todo-backend/src/schema/openapi.yaml
index 8023144f48..7408927b99 100644
--- a/plugins/todo-backend/src/schema/openapi.yaml
+++ b/plugins/todo-backend/src/schema/openapi.yaml
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
- title: '@backstage/plugin-todo-backend'
+ title: todo
version: '1'
description: The Backstage backend plugin that provides source code todo comment browsing.
license:
diff --git a/storybook/yarn.lock b/storybook/yarn.lock
index 0be4de1f7f..94acb9696e 100644
--- a/storybook/yarn.lock
+++ b/storybook/yarn.lock
@@ -2842,90 +2842,90 @@ __metadata:
languageName: node
linkType: hard
-"@swc/core-darwin-arm64@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-darwin-arm64@npm:1.3.104"
+"@swc/core-darwin-arm64@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-darwin-arm64@npm:1.3.105"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@swc/core-darwin-x64@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-darwin-x64@npm:1.3.104"
+"@swc/core-darwin-x64@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-darwin-x64@npm:1.3.105"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@swc/core-linux-arm-gnueabihf@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.104"
+"@swc/core-linux-arm-gnueabihf@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.105"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@swc/core-linux-arm64-gnu@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm64-gnu@npm:1.3.104"
+"@swc/core-linux-arm64-gnu@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm64-gnu@npm:1.3.105"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@swc/core-linux-arm64-musl@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm64-musl@npm:1.3.104"
+"@swc/core-linux-arm64-musl@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm64-musl@npm:1.3.105"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@swc/core-linux-x64-gnu@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-x64-gnu@npm:1.3.104"
+"@swc/core-linux-x64-gnu@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-x64-gnu@npm:1.3.105"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@swc/core-linux-x64-musl@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-x64-musl@npm:1.3.104"
+"@swc/core-linux-x64-musl@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-x64-musl@npm:1.3.105"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@swc/core-win32-arm64-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-arm64-msvc@npm:1.3.104"
+"@swc/core-win32-arm64-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-arm64-msvc@npm:1.3.105"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@swc/core-win32-ia32-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-ia32-msvc@npm:1.3.104"
+"@swc/core-win32-ia32-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-ia32-msvc@npm:1.3.105"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@swc/core-win32-x64-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-x64-msvc@npm:1.3.104"
+"@swc/core-win32-x64-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-x64-msvc@npm:1.3.105"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@swc/core@npm:^1.3.46":
- version: 1.3.104
- resolution: "@swc/core@npm:1.3.104"
+ version: 1.3.105
+ resolution: "@swc/core@npm:1.3.105"
dependencies:
- "@swc/core-darwin-arm64": 1.3.104
- "@swc/core-darwin-x64": 1.3.104
- "@swc/core-linux-arm-gnueabihf": 1.3.104
- "@swc/core-linux-arm64-gnu": 1.3.104
- "@swc/core-linux-arm64-musl": 1.3.104
- "@swc/core-linux-x64-gnu": 1.3.104
- "@swc/core-linux-x64-musl": 1.3.104
- "@swc/core-win32-arm64-msvc": 1.3.104
- "@swc/core-win32-ia32-msvc": 1.3.104
- "@swc/core-win32-x64-msvc": 1.3.104
+ "@swc/core-darwin-arm64": 1.3.105
+ "@swc/core-darwin-x64": 1.3.105
+ "@swc/core-linux-arm-gnueabihf": 1.3.105
+ "@swc/core-linux-arm64-gnu": 1.3.105
+ "@swc/core-linux-arm64-musl": 1.3.105
+ "@swc/core-linux-x64-gnu": 1.3.105
+ "@swc/core-linux-x64-musl": 1.3.105
+ "@swc/core-win32-arm64-msvc": 1.3.105
+ "@swc/core-win32-ia32-msvc": 1.3.105
+ "@swc/core-win32-x64-msvc": 1.3.105
"@swc/counter": ^0.1.1
"@swc/types": ^0.1.5
peerDependencies:
@@ -2954,7 +2954,7 @@ __metadata:
peerDependenciesMeta:
"@swc/helpers":
optional: true
- checksum: 95fbf1412c8685d311cf2d7efbfa43e082d2d9e84ece48c4d8d96d6c67c5923569bfb26352451eb3e4d98adcb556dcfac65271c0fba77f078bb755fe2f64b295
+ checksum: 5baa880bc92748ef4845d9c65eba5d6dd01adaa673854e20a5116f5e267c12180db50e563cf3c34a415772b9742d021176a9d9a91065c190ef6f54fefe85728c
languageName: node
linkType: hard
diff --git a/yarn.lock b/yarn.lock
index 28e6b73f7d..003e6bd384 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -363,515 +363,515 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/client-cognito-identity@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-cognito-identity@npm:3.495.0"
+"@aws-sdk/client-cognito-identity@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/client-cognito-identity@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-signing": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-signing": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 078c17e6f6fed15ee320a4d94e9925ff7ccb537416552492b3e66179998a8259c1d68c2f1523243c497c7bc64d613f33acc92b9f9c2c9238eee41be26aebcaf9
+ checksum: ee21d840134279f2d9c5bd113912fe89a48dcc6f56798894282886f48096743cd46499b908a659176cb1bfd10a771ec599694ae728d7fc53cb8a388124aff412
languageName: node
linkType: hard
"@aws-sdk/client-eks@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-eks@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/client-eks@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-signing": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
- "@smithy/util-waiter": ^2.1.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-signing": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
+ "@smithy/util-waiter": ^2.1.1
tslib: ^2.5.0
uuid: ^8.3.2
- checksum: f4d9ce87c23c1d117e4046c97ac974131e54b878eb0aed9457739ca0d202f8d36c9b2ba3718120de531fdb200ccab123a4d1f848ef8c3858b1ca5d81dcd9c789
+ checksum: 44042c4e746a27764db92f1966674034d7e9bb3a0cc6db3cedac1143472556d63e591a25048ebb8c11e07f3e807c7dd0b67b653c4f9bde30ef6fb7017eb82546
languageName: node
linkType: hard
"@aws-sdk/client-organizations@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-organizations@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/client-organizations@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-signing": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-signing": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 3c7deae27a0549ff97551d577df701f21823ca6f3fc965b35add491642faf3ddb060183752687264727e10cc80addb1a3c263af81f2a35d15fe0c3edb02a5da2
+ checksum: a94ab6fadd8442223fee939559c72ea341ff8ed310f06c3420f4f7fab3fe0d033e6bdcf8be9984b92b1114b91abd8020201f727b96977e4d4c85357f01898b38
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-s3@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/client-s3@npm:3.496.0"
dependencies:
"@aws-crypto/sha1-browser": 3.0.0
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-bucket-endpoint": 3.495.0
- "@aws-sdk/middleware-expect-continue": 3.495.0
- "@aws-sdk/middleware-flexible-checksums": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-location-constraint": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-sdk-s3": 3.495.0
- "@aws-sdk/middleware-signing": 3.495.0
- "@aws-sdk/middleware-ssec": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/signature-v4-multi-region": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@aws-sdk/xml-builder": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/eventstream-serde-browser": ^2.1.0
- "@smithy/eventstream-serde-config-resolver": ^2.1.0
- "@smithy/eventstream-serde-node": ^2.1.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-blob-browser": ^2.1.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/hash-stream-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/md5-js": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-stream": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
- "@smithy/util-waiter": ^2.1.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-bucket-endpoint": 3.496.0
+ "@aws-sdk/middleware-expect-continue": 3.496.0
+ "@aws-sdk/middleware-flexible-checksums": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-location-constraint": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-sdk-s3": 3.496.0
+ "@aws-sdk/middleware-signing": 3.496.0
+ "@aws-sdk/middleware-ssec": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/signature-v4-multi-region": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@aws-sdk/xml-builder": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/eventstream-serde-browser": ^2.1.1
+ "@smithy/eventstream-serde-config-resolver": ^2.1.1
+ "@smithy/eventstream-serde-node": ^2.1.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-blob-browser": ^2.1.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/hash-stream-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/md5-js": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-stream": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
+ "@smithy/util-waiter": ^2.1.1
fast-xml-parser: 4.2.5
tslib: ^2.5.0
- checksum: 2add0f58189bfc394a6b3963ef4295b9997f3ea544d8a92ba2d16b9051f4fd07fb9f184e9ad6ca6ce665cbec496abd5e0e69a91a97213117dc20aafd3bed2840
+ checksum: 6b87d1edd89376bfb0c27cd270e57cfdfedb3fbec725fddce4eff5df31daa84b7e89099d44503b5bd19dd2021da1a18f08374cb839e588fa7bb819cd6f3cf25a
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-sqs@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/client-sqs@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-sdk-sqs": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/md5-js": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-middleware": ^2.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-sdk-sqs": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/md5-js": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-middleware": ^2.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 4dcbf031c1902149d8fa82f7c555eb416d904c1e197ad2deae927856748719c03b025bb122a131df34435269039a6b0538635826e0bcab204b86ef24fe4595b8
+ checksum: 42f064fb83b443b1de55cbc56941f4b4b7c2b06fb467fcef4d556e75e0613b5a99a72a63a6f464d4101a26047c6d97baa842d3189433a34904d208bde6c0a829
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-sso@npm:3.495.0"
+"@aws-sdk/client-sso@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/client-sso@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: a4672a8a2c454be634cb7e97a3cc075df55ad7ab8eb494bda3e4d16831f110212069668ab4fe6085f4b09920d1a04f3bd2cca0caf3a395d874cbcf5d71c6ffe7
+ checksum: b775052f1f1fe85d411b8f84572eb68e05526afec0e3ad47b6383073351b2bc30cb3f8ad8bb2f33157c0c590e9f5deafd2522f543ae470bb0234fde6850118b5
languageName: node
linkType: hard
-"@aws-sdk/client-sts@npm:3.495.0, @aws-sdk/client-sts@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/client-sts@npm:3.495.0"
+"@aws-sdk/client-sts@npm:3.496.0, @aws-sdk/client-sts@npm:^3.350.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/client-sts@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/core": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/core": ^1.3.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-middleware": ^2.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/core": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/core": ^1.3.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-middleware": ^2.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
fast-xml-parser: 4.2.5
tslib: ^2.5.0
- checksum: 33c5ef3fc87a2fb8cb5dc6bc855c5756712110d1c0be713543ffd657fcae4062e10ce9a1501bb9bc7a9f821a542f6e52c3bd9d88add89af67a116f3f5ab486fd
+ checksum: a0427de70194c5391e883856d0c5f01f6bb610133970c6607530193c6961744424901c830872996c28c69300e51f417390e76ab5b967be7c164edc1be89e9e46
languageName: node
linkType: hard
-"@aws-sdk/core@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/core@npm:3.495.0"
+"@aws-sdk/core@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/core@npm:3.496.0"
dependencies:
- "@smithy/core": ^1.3.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/signature-v4": ^2.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@smithy/core": ^1.3.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/signature-v4": ^2.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 2038b283ab62a0a10880a7193cef8b3673298ff9b7ba3005e3a47df43c588d3a3a9dfdbe607b99183932675a74ec17a88a90f9a5c5f5896292a9e6cbc888cf13
+ checksum: 6c83bc1092dbbf63e55d8df6630873f9088301b18a258866fa45e1b0aff8d90e77528612467e0cf3dcc24413f978762d8232e23f725c2a5385c7cb345464b178
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-cognito-identity@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.495.0"
+"@aws-sdk/credential-provider-cognito-identity@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.496.0"
dependencies:
- "@aws-sdk/client-cognito-identity": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/client-cognito-identity": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 8bd8841d5d2e5316c271f6e5585216f906d60a42b221d5afdd52d49b6318faa6776cdc956704a22b675c5dd41fd164a2cf512f069a99738660eeea24c3316234
+ checksum: 8125e31c183be3b9ceceb0e9773a135468b232c9ea28213c7cbdd00f3640124dc4bcd15f52b5a39074d472e74048121313b1d1dc8eb1ea719ad01132bdc42481
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-env@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-env@npm:3.495.0"
+"@aws-sdk/credential-provider-env@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-env@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 5454a770638e2122877679897acb422871e0381c7e8a2a848c1837f16115bea7d3abaf56e2282b9986885de186538868f90c62292348251bbbd84c872c4a5eb0
+ checksum: 0ff457ce12358c472a126e8994e04158c330c5ecf58d8fde6d431184a1d088d5358edac4e7efe8b1b64aa1c4fd386d570b5fcec30907fdc27cf2061a37910806
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-http@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-http@npm:3.495.0"
+"@aws-sdk/credential-provider-http@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-http@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/util-stream": ^2.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-stream": ^2.1.1
tslib: ^2.5.0
- checksum: 367563058b01bc681523de85f4753bb53c53b0975c9258d6b4583222a28543ca2b2e3b5f75c1f1f6fb25a25baeb053d8d46c86b6997c4243bfc062a03093bae8
+ checksum: 2ba3736689e26afe057ce9da11ebb45c73eae13d1179c2783a0f33cf9805644c464f77b4a60da2688e23fb1956e3bcd0dbb44292434d9f162ed7a86b19a03c2f
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-ini@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.495.0"
+"@aws-sdk/credential-provider-ini@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.496.0"
dependencies:
- "@aws-sdk/credential-provider-env": 3.495.0
- "@aws-sdk/credential-provider-process": 3.495.0
- "@aws-sdk/credential-provider-sso": 3.495.0
- "@aws-sdk/credential-provider-web-identity": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/credential-provider-imds": ^2.2.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/credential-provider-env": 3.496.0
+ "@aws-sdk/credential-provider-process": 3.496.0
+ "@aws-sdk/credential-provider-sso": 3.496.0
+ "@aws-sdk/credential-provider-web-identity": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/credential-provider-imds": ^2.2.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: fcd401dcc8a71a601888a9abd5e915ae8bdf19501ed0f497478d8844a7e11769314488b2b3a1995c33a954ab499ab118911decdfaf8151e47c4768d6e090a429
+ checksum: 190449c43d687753966949397cf41215edc4ef2395dd2bb470988465b3f8bd6cf88933a7dd92032c19844d8f0dd4dd185caeaa060449e2b1d4141d47f549f27c
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-node@npm:3.495.0, @aws-sdk/credential-provider-node@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.495.0"
+"@aws-sdk/credential-provider-node@npm:3.496.0, @aws-sdk/credential-provider-node@npm:^3.350.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.496.0"
dependencies:
- "@aws-sdk/credential-provider-env": 3.495.0
- "@aws-sdk/credential-provider-ini": 3.495.0
- "@aws-sdk/credential-provider-process": 3.495.0
- "@aws-sdk/credential-provider-sso": 3.495.0
- "@aws-sdk/credential-provider-web-identity": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/credential-provider-imds": ^2.2.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/credential-provider-env": 3.496.0
+ "@aws-sdk/credential-provider-ini": 3.496.0
+ "@aws-sdk/credential-provider-process": 3.496.0
+ "@aws-sdk/credential-provider-sso": 3.496.0
+ "@aws-sdk/credential-provider-web-identity": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/credential-provider-imds": ^2.2.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: c661de3423fb106d1f3347e24287d0fd9208e02a2fe4159300ec7c1df90196f09df25aab06428f64d3cfcae2a28482737d8cd9ad6d8adca0aa0cfa810276b0ac
+ checksum: 16523a15f77d4def6c32fd465a85edc6f65d1e813b52b323f8264bf7b5e0a4bc3ede943104c218344a5152ca8f316658f911e71f8e26775b3f6852079e8ecda7
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-process@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-process@npm:3.495.0"
+"@aws-sdk/credential-provider-process@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-process@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: e19812756fb578cf5e7845db1fc2df77fadb427efaefe7ce23effa20f5f7e1661cea05179ab425e3cbef08966b1821a4ccfbd00343f68f65b0564c0b06510b9a
+ checksum: 324d86cc4c727faa87038fe67620e38e8aaafce7d97cfcefac80b04aff5d0077babadf881bfd85c51191350d52b040b986dad07d85d3340376cddc0b1689b7eb
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.495.0"
+"@aws-sdk/credential-provider-sso@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.496.0"
dependencies:
- "@aws-sdk/client-sso": 3.495.0
- "@aws-sdk/token-providers": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/client-sso": 3.496.0
+ "@aws-sdk/token-providers": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 2f96aba1921612026e8dcd7d7f58988c63efdf270a8688adb0704f2e442778700d7160c890cf926a89eb79a2471ee9084329bd8463998bbb416b0f5ebfe8f7e3
+ checksum: fe4b34a3441777af37b7feeba60a538a59a35d5d0e8899f9d4ed6a482b8241cc0303df25049872773256c7ac19587d58aaf12330969fec7a85fdc6d1a07ed57a
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-web-identity@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-provider-web-identity@npm:3.495.0"
+"@aws-sdk/credential-provider-web-identity@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-provider-web-identity@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: d22fda65683d0558dd03e710c8ef4762c4c500d8527cf951b3597a716a56ffbd1d9bf22089e4714325f4043a5e9eb9f6b27e2e3f217eef06de3cc3364e5a8a0f
+ checksum: e1041486c76c229075c16afc3f0847abe7a30fa7a61bd82dbd4e731508f8a6b64a02cc80d97c105fea8e3efb138fb574a5ddda2f900d5a822033bffcc09830d4
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/credential-providers@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/credential-providers@npm:3.496.0"
dependencies:
- "@aws-sdk/client-cognito-identity": 3.495.0
- "@aws-sdk/client-sso": 3.495.0
- "@aws-sdk/client-sts": 3.495.0
- "@aws-sdk/credential-provider-cognito-identity": 3.495.0
- "@aws-sdk/credential-provider-env": 3.495.0
- "@aws-sdk/credential-provider-http": 3.495.0
- "@aws-sdk/credential-provider-ini": 3.495.0
- "@aws-sdk/credential-provider-node": 3.495.0
- "@aws-sdk/credential-provider-process": 3.495.0
- "@aws-sdk/credential-provider-sso": 3.495.0
- "@aws-sdk/credential-provider-web-identity": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/credential-provider-imds": ^2.2.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/client-cognito-identity": 3.496.0
+ "@aws-sdk/client-sso": 3.496.0
+ "@aws-sdk/client-sts": 3.496.0
+ "@aws-sdk/credential-provider-cognito-identity": 3.496.0
+ "@aws-sdk/credential-provider-env": 3.496.0
+ "@aws-sdk/credential-provider-http": 3.496.0
+ "@aws-sdk/credential-provider-ini": 3.496.0
+ "@aws-sdk/credential-provider-node": 3.496.0
+ "@aws-sdk/credential-provider-process": 3.496.0
+ "@aws-sdk/credential-provider-sso": 3.496.0
+ "@aws-sdk/credential-provider-web-identity": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/credential-provider-imds": ^2.2.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 1cb201bc9fe2f2f5edd277416962e32e6f99ecc98b5d386bfcac91d6db1719d66b57b1e690d660a6fe1ac198648d5df906397ac5e2d9d5a35d345bcc3230324a
+ checksum: 30aac656bf113189b26856ee30175400c425781ca00ab4b7c609f949410cfd116e00a02294b9a86300e3ad9a6c8ede0cb5d6de134f057d0b17f999bfb6f0e400
languageName: node
linkType: hard
@@ -897,34 +897,34 @@ __metadata:
linkType: hard
"@aws-sdk/lib-storage@npm:^3.350.0":
- version: 3.495.0
- resolution: "@aws-sdk/lib-storage@npm:3.495.0"
+ version: 3.496.0
+ resolution: "@aws-sdk/lib-storage@npm:3.496.0"
dependencies:
- "@smithy/abort-controller": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/smithy-client": ^2.3.0
+ "@smithy/abort-controller": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/smithy-client": ^2.3.1
buffer: 5.6.0
events: 3.3.0
stream-browserify: 3.0.0
tslib: ^2.5.0
peerDependencies:
"@aws-sdk/client-s3": ^3.0.0
- checksum: 6d7a1576f30ff2432f0907a8357604de5a6d338c706e34c8e85ef6fbb4e2a878c84ce41978c79844757454b0e90914c83b4c983a428a7ea0ba67b6ce7d15c9a8
+ checksum: d8a76e31848543c270a0f986344088eba209f638d8962832aa0872c852ed20cafa046372c25e7105cc23c2bf5e4a183fd89a37d0cd4edba3af4c20e9c35a1309
languageName: node
linkType: hard
-"@aws-sdk/middleware-bucket-endpoint@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.495.0"
+"@aws-sdk/middleware-bucket-endpoint@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
+ "@aws-sdk/types": 3.496.0
"@aws-sdk/util-arn-parser": 3.495.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-config-provider": ^2.2.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-config-provider": ^2.2.1
tslib: ^2.5.0
- checksum: d75288d8d290b0749a9f17bf893dfb2d334a08707dbda2d24d187f53096c58f190e102a789310045b03792fe6d145a23af7dbac07994b27473f386328cc2bb5c
+ checksum: 3b0c8b9cec0202fc8bcea343758d042035d12006da21d60b356c5b7d38c8a0b8bfcbeba93f7ec4f443060815b45cd0a41e71ca9791d338d40776f53eaed8c428
languageName: node
linkType: hard
@@ -941,107 +941,107 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/middleware-expect-continue@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-expect-continue@npm:3.495.0"
+"@aws-sdk/middleware-expect-continue@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-expect-continue@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: d9e49bd36994cc5a0114d51fb050efecf5f9ae46bd5718b5acb98d486a864d33ced0d1a0afc96f22192a23f4a9acf8c784db3d97243b25452c55fd4e3491aec8
+ checksum: cd9e3b15c425e05a96eaf05c61ff4fd01e1e24d875ade4ab7fccfa95fddb0d925b4a9ac751f9bdf981184cbbb2327eb79710833afb41d64809b25e033d6ab395
languageName: node
linkType: hard
-"@aws-sdk/middleware-flexible-checksums@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.495.0"
+"@aws-sdk/middleware-flexible-checksums@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.496.0"
dependencies:
"@aws-crypto/crc32": 3.0.0
"@aws-crypto/crc32c": 3.0.0
- "@aws-sdk/types": 3.495.0
- "@smithy/is-array-buffer": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/is-array-buffer": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 5ec9e6543222349ee4cc1560ebd0ec3fc076e62bb6a6f2fcfb55cb2b7b6d7f944dd3801869bc3a0367975bf7efbc587c1acb19fc9de07faf389aa966e8eeb15f
+ checksum: 3740e40ea91b0c9d40c4922e5b46b35ee0cd48cb8388b0721c7e13f63ac2b534b71e5a8c29593fa1cb5a94d0f3eef001d7899766be09ec74728ac133eb9f9114
languageName: node
linkType: hard
-"@aws-sdk/middleware-host-header@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-host-header@npm:3.495.0"
+"@aws-sdk/middleware-host-header@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-host-header@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 4b4f64827f2f75df045229987625560c1ee35a30e48044f3b60292dbb0599760459097a79e805e2982e1a1150def39758aaf5637e8696b8d21101c03988499ff
+ checksum: 7958c74aafb729cacfccfa0148d9788b1f621acfb52f5a50bf158f8bf2b76d23e52b8cf1908686e9ea5fdcb2cb6e92b75b6d16b938457133e83947982db3d645
languageName: node
linkType: hard
-"@aws-sdk/middleware-location-constraint@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-location-constraint@npm:3.495.0"
+"@aws-sdk/middleware-location-constraint@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-location-constraint@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 8315ea52cff810e8c19176e24528bee4a29af7f2631b1508e04a8936396dd020535e507300df9e5d8b98d4b8c1c5fd78b9e868f0500b7a66e0743394fd2313a5
+ checksum: bd039384df036f8ebd7c860de3f6a152ec3366216e32d5953d9076fea5a9c9c5021ee9ea78a98670606a56625c2e5f96e6b4c33bb1554f1f9add4e31b7a67e61
languageName: node
linkType: hard
-"@aws-sdk/middleware-logger@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-logger@npm:3.495.0"
+"@aws-sdk/middleware-logger@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-logger@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: d36ee788bdcfc19bd73525c7b0dc476e63b26f4a798a43626fdc76776c0b46f905867bd86c8792aaa7736cbfb18b1fe36c22ef86af4cd8dacdc10e34feee0caf
+ checksum: 3e2859d10342bd99a6855ee1cf229ca54a27d9e16d6613f016718b14efd4586618f553c530eb19b331278b818e75c5f9bc71f02d82c8a92973e486af8da112e7
languageName: node
linkType: hard
-"@aws-sdk/middleware-recursion-detection@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-recursion-detection@npm:3.495.0"
+"@aws-sdk/middleware-recursion-detection@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-recursion-detection@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: eaa7921de46d6d2389b56eb36417a32bd1af41c4ed24f6e2956fa4fd1bb14141253368d96882402df4f6498eaee081c67c170ce74f042d74b0ec431cd1219df7
+ checksum: 50a909552d9b1ef0871929eccfebbee1256305c6d4d62d1d51edd88bd7cd12fbb661c87ad9aaf788b4d8821f0c2780699c29702c42d3035a4fa08c8d7c1cc519
languageName: node
linkType: hard
-"@aws-sdk/middleware-sdk-s3@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-sdk-s3@npm:3.495.0"
+"@aws-sdk/middleware-sdk-s3@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-sdk-s3@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
+ "@aws-sdk/types": 3.496.0
"@aws-sdk/util-arn-parser": 3.495.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/signature-v4": ^2.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/util-config-provider": ^2.2.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/signature-v4": ^2.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-config-provider": ^2.2.1
tslib: ^2.5.0
- checksum: b3c6e8fda75ca696a1ba8b2327c1cf3ec941d19af5927614949f4ba317934db2733c22fa011f614651a093a3374d7be1fa5c3f834517a48a6884060ff6cfd625
+ checksum: e341f624e46912d09d14a4a7ad9ccc62cc8aa2cb4cdb683e86a3bfbb3134d07b6e5330344a63bae187448d2f0858679b1847fa2560f2ad2cdc32fa686360a0c0
languageName: node
linkType: hard
-"@aws-sdk/middleware-sdk-sqs@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.495.0"
+"@aws-sdk/middleware-sdk-sqs@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
- "@smithy/util-hex-encoding": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-hex-encoding": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 78c2b4a59fe5fe6797b5a31c486b7169aba57c4c070db1e691c1049d03a6952a406cd88d0d612bbb252a8d06855437022f505934f137e8244db93d33572545ea
+ checksum: 6a462b98fc8f9c8eb97e2aba20840ea3bbcda117392cf0a14e6971f2622efe956420f2811d5ab8844fef3dcce25af479dcf56d364032561a4d229f75d6533c4b
languageName: node
linkType: hard
@@ -1055,42 +1055,42 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/middleware-signing@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-signing@npm:3.495.0"
+"@aws-sdk/middleware-signing@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-signing@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/signature-v4": ^2.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-middleware": ^2.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/signature-v4": ^2.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-middleware": ^2.1.1
tslib: ^2.5.0
- checksum: ca717e5c2bc03157f4ee6f3c05d8c815ecf7bab83f5f86c8751a3106d4f5459630258d945d8840650bfb367b881ff3be1fc0c9037162f717380c2a76dec938db
+ checksum: e39e9569e5063796729969115a719ede44595fee713fb5b44a6a11580c6810e93466ac48437ee002734ad608edf2701159bcfc4fb563d59f8a95901de78f5456
languageName: node
linkType: hard
-"@aws-sdk/middleware-ssec@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-ssec@npm:3.495.0"
+"@aws-sdk/middleware-ssec@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-ssec@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 5f92ae6ac0b7a869203650c343eb0f42375b8784b20abed88f2075db4413935469c988c5daee6b520aea63a2208ca412a9a78c6fbb0b14fc7719c9dbc9ffdc65
+ checksum: 4a6f941346d43fe66bcccdc5da0490a38cae58b4ba0f80e629820e3e84d8f8125f3f1debf9b067b904a4a55fb29b3b58575635e1726543037512a2bb87a84442
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.495.0"
+"@aws-sdk/middleware-user-agent@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/middleware-user-agent@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: a36dcd5252b001786a8d970143855e80242fa1d88252693a8c2a244114fcfae02eb4ae958a37efa92aeff5cc792506f9199961c346fd943949141a3e078c3123
+ checksum: a09de52251f0a7bf1a616881e3805fd728ef575d28c68f80b084d8db9342589adc6c95bef6b1b6085d8354459be0cf74516e05035c58e8b52a8a5b9b9133c475
languageName: node
linkType: hard
@@ -1138,31 +1138,31 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/region-config-resolver@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/region-config-resolver@npm:3.495.0"
+"@aws-sdk/region-config-resolver@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/region-config-resolver@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/types": ^2.9.0
- "@smithy/util-config-provider": ^2.2.0
- "@smithy/util-middleware": ^2.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-config-provider": ^2.2.1
+ "@smithy/util-middleware": ^2.1.1
tslib: ^2.5.0
- checksum: f0f723dbd46761246dd771d975cb60c60afcbb10a94138183b7b00cad633ce92fdd7f2ee9ae60fcfc369d4aadd653d56562f5a14652dc8974816fbaf2c924182
+ checksum: b82878109cfa96ae08008531c44def03a33a506c4fc27fdf0cf1081cee0eb17b5d28df6d37279e9fe83c487825672a9a81dc0ba88f375d2dc5b5dc1730d2ae91
languageName: node
linkType: hard
-"@aws-sdk/signature-v4-multi-region@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/signature-v4-multi-region@npm:3.495.0"
+"@aws-sdk/signature-v4-multi-region@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/signature-v4-multi-region@npm:3.496.0"
dependencies:
- "@aws-sdk/middleware-sdk-s3": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/signature-v4": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/middleware-sdk-s3": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/signature-v4": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 93559456f5d4cae2fde06f49c41275d411bc9c4625cb73b6fc88f165c960d7a9a5e1432ae95ad6243430e6c0d07b6710e94aaf0ca39c7514e7c9f0240a466507
+ checksum: c2d8c11e30b285b827972de881307e927755d1c48f74c7d4a312fc5b7d0f1939aa9640c5b2b953ecdf8a541acdd42270ac175c026defc19e5ed5f0d49f9e160c
languageName: node
linkType: hard
@@ -1182,48 +1182,48 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/token-providers@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/token-providers@npm:3.495.0"
+"@aws-sdk/token-providers@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/token-providers@npm:3.496.0"
dependencies:
"@aws-crypto/sha256-browser": 3.0.0
"@aws-crypto/sha256-js": 3.0.0
- "@aws-sdk/middleware-host-header": 3.495.0
- "@aws-sdk/middleware-logger": 3.495.0
- "@aws-sdk/middleware-recursion-detection": 3.495.0
- "@aws-sdk/middleware-user-agent": 3.495.0
- "@aws-sdk/region-config-resolver": 3.495.0
- "@aws-sdk/types": 3.495.0
- "@aws-sdk/util-endpoints": 3.495.0
- "@aws-sdk/util-user-agent-browser": 3.495.0
- "@aws-sdk/util-user-agent-node": 3.495.0
- "@smithy/config-resolver": ^2.1.0
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/hash-node": ^2.1.0
- "@smithy/invalid-dependency": ^2.1.0
- "@smithy/middleware-content-length": ^2.1.0
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-body-length-browser": ^2.1.0
- "@smithy/util-body-length-node": ^2.2.0
- "@smithy/util-defaults-mode-browser": ^2.1.0
- "@smithy/util-defaults-mode-node": ^2.1.0
- "@smithy/util-endpoints": ^1.1.0
- "@smithy/util-retry": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@aws-sdk/middleware-host-header": 3.496.0
+ "@aws-sdk/middleware-logger": 3.496.0
+ "@aws-sdk/middleware-recursion-detection": 3.496.0
+ "@aws-sdk/middleware-user-agent": 3.496.0
+ "@aws-sdk/region-config-resolver": 3.496.0
+ "@aws-sdk/types": 3.496.0
+ "@aws-sdk/util-endpoints": 3.496.0
+ "@aws-sdk/util-user-agent-browser": 3.496.0
+ "@aws-sdk/util-user-agent-node": 3.496.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/hash-node": ^2.1.1
+ "@smithy/invalid-dependency": ^2.1.1
+ "@smithy/middleware-content-length": ^2.1.1
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-body-length-browser": ^2.1.1
+ "@smithy/util-body-length-node": ^2.2.1
+ "@smithy/util-defaults-mode-browser": ^2.1.1
+ "@smithy/util-defaults-mode-node": ^2.1.1
+ "@smithy/util-endpoints": ^1.1.1
+ "@smithy/util-retry": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 76b8dacaf9d0d9c608866d10bb8d0d42070e88872688f9dae3cd2cce2cd573bb6937ffd4e4ef3ca94763ac4f549faaf6f7d1e1bea714d7ec37b5a7ca533f5599
+ checksum: 54ad339923d2e4e4a021a2d21b39c1185b33b02abbecac3cb71786dbc76db84c1b5237d1929a0b39cd7b1420312e1fc523050c4588a3a37c26209e1ed934f069
languageName: node
linkType: hard
@@ -1237,13 +1237,13 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/types@npm:3.495.0, @aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.347.0":
- version: 3.495.0
- resolution: "@aws-sdk/types@npm:3.495.0"
+"@aws-sdk/types@npm:3.496.0, @aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.347.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/types@npm:3.496.0"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 786d7d860cd8c22a631d48e5a2a0570b941f43927d3bee1da36d4749f71fbdc2e7908f15f73582d0572c74f9f0e6b411a33f94facf27aec93d9f2920b9a662f4
+ checksum: d0d3b8a5cf8e9ab588c005d63b39b9c76f15913982cbe055b12ab4ad51c4fecb8faed935e96d4f8b19a38d6668ccdcf3555a1ca69c18831042ec06927bd73c74
languageName: node
linkType: hard
@@ -1277,15 +1277,15 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/util-endpoints@npm:3.495.0"
+"@aws-sdk/util-endpoints@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/util-endpoints@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
- "@smithy/util-endpoints": ^1.1.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-endpoints": ^1.1.1
tslib: ^2.5.0
- checksum: a479feeea6b136c9a07f885373e859a37f19b4d55cf6f9ecd89017c13349f55d239aa5a083465b1d945ff6bf13809efd27133340bdecaef875e72bd60d534c76
+ checksum: d2de596852c6c78b4145f6b152d1e05958415101898ca69e0ade5a2ce63dfc52b1fc4ccaeb1f34d40a4b5cf96cba4ec19f39935515acaa7682fe21a781f9bfb4
languageName: node
linkType: hard
@@ -1337,32 +1337,32 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-browser@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/util-user-agent-browser@npm:3.495.0"
+"@aws-sdk/util-user-agent-browser@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/util-user-agent-browser@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/types": ^2.9.1
bowser: ^2.11.0
tslib: ^2.5.0
- checksum: 47071d5d514e08ef2818e42b437798238df771bff320256eef4589a24dae3f84ac064897c941919e1b571aaf95345282a7e8e43729f787526b70e80dfba8dead
+ checksum: 0f7d5530a0f750094af2aa899323189c94f946dd870b37da965df49d705e05da11046da005864f5151cf3f4393d3e0ba39e71a7ca6121fc5702cdd5f3a1a502c
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.495.0"
+"@aws-sdk/util-user-agent-node@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/util-user-agent-node@npm:3.496.0"
dependencies:
- "@aws-sdk/types": 3.495.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/types": ^2.9.0
+ "@aws-sdk/types": 3.496.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
- checksum: e4c188c91b78b33d8da77984f3513a61ece3454d02d16605ec985b8481d309d12ad7544d2233d1396aaffd0758b4d0d1c4c143b9edd68d66e2681a4fd32eac34
+ checksum: 9ea68207f061a04e93cdee7b4f0e47bae3f4afd8bb922179bd4ea284a4756e879c1f76f58c87a3aedb65eebbed82f453bf94dd26095ebd4728169b1e1a6c9d4c
languageName: node
linkType: hard
@@ -1385,13 +1385,13 @@ __metadata:
languageName: node
linkType: hard
-"@aws-sdk/xml-builder@npm:3.495.0":
- version: 3.495.0
- resolution: "@aws-sdk/xml-builder@npm:3.495.0"
+"@aws-sdk/xml-builder@npm:3.496.0":
+ version: 3.496.0
+ resolution: "@aws-sdk/xml-builder@npm:3.496.0"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: f2c695268c887e1f0e39991867ceca861f3242a0c12689ccfe582bce4f3543cf241a7ea4873a4a1c8b3637a5592a29c8f9266040f375a3eaaa9aebce6d697ecd
+ checksum: 42d9d60c1c7f8a22f6a64ac36ba9d5ccff200ce963beebb142ad4708d2486fe29b61ecb37bbccd6f0019e25107aa2327e6d8550d30214b4895e7219ccb8661c8
languageName: node
linkType: hard
@@ -4448,7 +4448,7 @@ __metadata:
"@testing-library/user-event": ^14.0.0
"@types/react": ^16.13.1 || ^17.0.0
"@types/swagger-ui-react": ^4.18.0
- graphiql: 3.0.10
+ graphiql: 3.1.0
graphql: ^16.0.0
graphql-config: ^5.0.2
graphql-ws: ^5.4.1
@@ -4622,7 +4622,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@backstage/plugin-auth-backend-module-microsoft-provider@workspace:plugins/auth-backend-module-microsoft-provider":
+"@backstage/plugin-auth-backend-module-microsoft-provider@workspace:^, @backstage/plugin-auth-backend-module-microsoft-provider@workspace:plugins/auth-backend-module-microsoft-provider":
version: 0.0.0-use.local
resolution: "@backstage/plugin-auth-backend-module-microsoft-provider@workspace:plugins/auth-backend-module-microsoft-provider"
dependencies:
@@ -4636,6 +4636,7 @@ __metadata:
"@types/passport-microsoft": ^1.0.0
express: ^4.18.2
jose: ^4.6.0
+ lodash: ^4.17.21
msw: ^1.0.0
node-fetch: ^2.6.7
passport: ^0.7.0
@@ -4673,6 +4674,30 @@ __metadata:
languageName: unknown
linkType: soft
+"@backstage/plugin-auth-backend-module-oidc-provider@workspace:^, @backstage/plugin-auth-backend-module-oidc-provider@workspace:plugins/auth-backend-module-oidc-provider":
+ version: 0.0.0-use.local
+ resolution: "@backstage/plugin-auth-backend-module-oidc-provider@workspace:plugins/auth-backend-module-oidc-provider"
+ dependencies:
+ "@backstage/backend-common": "workspace:^"
+ "@backstage/backend-defaults": "workspace:^"
+ "@backstage/backend-plugin-api": "workspace:^"
+ "@backstage/backend-test-utils": "workspace:^"
+ "@backstage/cli": "workspace:^"
+ "@backstage/config": "workspace:^"
+ "@backstage/plugin-auth-backend": "workspace:^"
+ "@backstage/plugin-auth-node": "workspace:^"
+ cookie-parser: ^1.4.6
+ express: ^4.18.2
+ express-promise-router: ^4.1.1
+ express-session: ^1.17.3
+ jose: ^4.14.6
+ msw: ^1.3.1
+ openid-client: ^5.5.0
+ passport: ^0.7.0
+ supertest: ^6.3.3
+ languageName: unknown
+ linkType: soft
+
"@backstage/plugin-auth-backend-module-okta-provider@workspace:^, @backstage/plugin-auth-backend-module-okta-provider@workspace:plugins/auth-backend-module-okta-provider":
version: 0.0.0-use.local
resolution: "@backstage/plugin-auth-backend-module-okta-provider@workspace:plugins/auth-backend-module-okta-provider"
@@ -4752,8 +4777,10 @@ __metadata:
"@backstage/plugin-auth-backend-module-github-provider": "workspace:^"
"@backstage/plugin-auth-backend-module-gitlab-provider": "workspace:^"
"@backstage/plugin-auth-backend-module-google-provider": "workspace:^"
+ "@backstage/plugin-auth-backend-module-microsoft-provider": "workspace:^"
"@backstage/plugin-auth-backend-module-oauth2-provider": "workspace:^"
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "workspace:^"
+ "@backstage/plugin-auth-backend-module-oidc-provider": "workspace:^"
"@backstage/plugin-auth-backend-module-okta-provider": "workspace:^"
"@backstage/plugin-auth-node": "workspace:^"
"@backstage/plugin-catalog-node": "workspace:^"
@@ -4795,7 +4822,6 @@ __metadata:
passport-auth0: ^1.4.3
passport-bitbucket-oauth2: ^0.1.2
passport-github2: ^0.1.12
- passport-gitlab2: ^5.0.0
passport-google-oauth20: ^2.0.0
passport-microsoft: ^1.0.0
passport-oauth2: ^1.6.1
@@ -5069,7 +5095,7 @@ __metadata:
"@openapitools/openapi-generator-cli": ^2.4.26
cross-fetch: ^4.0.0
msw: ^1.0.0
- ts-morph: ^20.0.0
+ ts-morph: ^21.0.0
languageName: unknown
linkType: soft
@@ -6880,7 +6906,7 @@ __metadata:
"@backstage/core-plugin-api": "workspace:^"
"@material-ui/core": ^4.12.2
"@material-ui/icons": ^4.9.1
- "@rjsf/utils": 5.15.1
+ "@rjsf/utils": 5.16.1
"@types/react": ^16.13.1 || ^17.0.0
"@types/react-grid-layout": ^1.3.2
peerDependencies:
@@ -6910,10 +6936,10 @@ __metadata:
"@material-ui/core": ^4.12.2
"@material-ui/icons": ^4.9.1
"@material-ui/lab": 4.0.0-alpha.61
- "@rjsf/core": 5.15.1
- "@rjsf/material-ui": 5.15.1
- "@rjsf/utils": 5.15.1
- "@rjsf/validator-ajv8": 5.15.1
+ "@rjsf/core": 5.16.1
+ "@rjsf/material-ui": 5.16.1
+ "@rjsf/utils": 5.16.1
+ "@rjsf/validator-ajv8": 5.16.1
"@testing-library/dom": ^9.0.0
"@testing-library/jest-dom": ^6.0.0
"@testing-library/react": ^14.0.0
@@ -8019,6 +8045,7 @@ __metadata:
"@backstage/errors": "workspace:^"
"@backstage/integration": "workspace:^"
"@backstage/plugin-scaffolder-node": "workspace:^"
+ fs-extra: 10.1.0
msw: ^1.0.0
node-fetch: ^2.6.7
yaml: ^2.0.0
@@ -8293,10 +8320,10 @@ __metadata:
"@material-ui/icons": ^4.9.1
"@material-ui/lab": 4.0.0-alpha.61
"@react-hookz/web": ^23.0.0
- "@rjsf/core": 5.15.1
- "@rjsf/material-ui": 5.15.1
- "@rjsf/utils": 5.15.1
- "@rjsf/validator-ajv8": 5.15.1
+ "@rjsf/core": 5.16.1
+ "@rjsf/material-ui": 5.16.1
+ "@rjsf/utils": 5.16.1
+ "@rjsf/validator-ajv8": 5.16.1
"@testing-library/dom": ^9.0.0
"@testing-library/jest-dom": ^6.0.0
"@testing-library/react": ^14.0.0
@@ -8356,10 +8383,10 @@ __metadata:
"@material-ui/icons": ^4.9.1
"@material-ui/lab": 4.0.0-alpha.61
"@react-hookz/web": ^23.0.0
- "@rjsf/core": 5.15.1
- "@rjsf/material-ui": 5.15.1
- "@rjsf/utils": 5.15.1
- "@rjsf/validator-ajv8": 5.15.1
+ "@rjsf/core": 5.16.1
+ "@rjsf/material-ui": 5.16.1
+ "@rjsf/utils": 5.16.1
+ "@rjsf/validator-ajv8": 5.16.1
"@testing-library/dom": ^9.0.0
"@testing-library/jest-dom": ^6.0.0
"@testing-library/react": ^14.0.0
@@ -14104,13 +14131,13 @@ __metadata:
linkType: hard
"@playwright/test@npm:^1.32.3":
- version: 1.41.0
- resolution: "@playwright/test@npm:1.41.0"
+ version: 1.41.1
+ resolution: "@playwright/test@npm:1.41.1"
dependencies:
- playwright: 1.41.0
+ playwright: 1.41.1
bin:
playwright: cli.js
- checksum: 3a7039f8cd14dd242154255417c100a99c3254a3c1fd26df2a11be24c10b06ef77d2736336d7743dedc5e1a6a52748e58ced730b6048f8bd75d8867ce81661e0
+ checksum: d9877e777a1a7f60f097df57b6abc2478e2ae342930a409c8546c8aa40d6e206cbc16bf1c71b23414ac3fbad36dcae1ad79635d7f4eb705ab54d3c705e82ea04
languageName: node
linkType: hard
@@ -14830,10 +14857,10 @@ __metadata:
languageName: node
linkType: hard
-"@remix-run/router@npm:1.13.1":
- version: 1.13.1
- resolution: "@remix-run/router@npm:1.13.1"
- checksum: cebbf0a8cf31cafd818d8ce42d5b6a0bfdd0e1f81b9ffb7a88c5d7a9d2a81d1fdf098cc8610d34ef3d6cfe7bc778b2ca1fe336a740eb7a175d1234d017927f8a
+"@remix-run/router@npm:1.14.2":
+ version: 1.14.2
+ resolution: "@remix-run/router@npm:1.14.2"
+ checksum: 8be55596f64563de95dea04c147ab67c4e6c9b72277c92d4de257dbb326e2aa16ad2adbdec32eb2c985808c642933ac895220654b8c899e4f4bd38f9fd97ff6e
languageName: node
linkType: hard
@@ -14851,38 +14878,38 @@ __metadata:
languageName: node
linkType: hard
-"@rjsf/core@npm:5.15.1":
- version: 5.15.1
- resolution: "@rjsf/core@npm:5.15.1"
+"@rjsf/core@npm:5.16.1":
+ version: 5.16.1
+ resolution: "@rjsf/core@npm:5.16.1"
dependencies:
lodash: ^4.17.21
lodash-es: ^4.17.21
- markdown-to-jsx: ^7.3.2
- nanoid: ^3.3.6
+ markdown-to-jsx: ^7.4.0
+ nanoid: ^3.3.7
prop-types: ^15.8.1
peerDependencies:
- "@rjsf/utils": ^5.12.x
+ "@rjsf/utils": ^5.16.x
react: ^16.14.0 || >=17
- checksum: d03f05563e7eafbcb3ea72b41867ec1b95547ed95609b10d0af6c09e880f119d50ad3bd76d2c6a903fa7c6c3286007684d43ce0a0c318d910f0e2a35cd7ef8de
+ checksum: 2f88dc6af9dda8ec5c8cbac63f3f9e776a11fe363ce938aa7b5c7a3baaa84a7a2f3796ebf55b361a8cb65267a1715ab880a4743636fb88e06b0240d07f0e4c7b
languageName: node
linkType: hard
-"@rjsf/material-ui@npm:5.15.1":
- version: 5.15.1
- resolution: "@rjsf/material-ui@npm:5.15.1"
+"@rjsf/material-ui@npm:5.16.1":
+ version: 5.16.1
+ resolution: "@rjsf/material-ui@npm:5.16.1"
peerDependencies:
"@material-ui/core": ^4.12.3
"@material-ui/icons": ^4.11.2
- "@rjsf/core": ^5.12.x
- "@rjsf/utils": ^5.12.x
+ "@rjsf/core": ^5.16.x
+ "@rjsf/utils": ^5.16.x
react: ^16.14.0 || >=17
- checksum: cd282bdeadbb291402e2064e1983e9da8515881bac2011a428a85addf3fcf2935d25333a333d4d3373a61fe6993c7598737c5af75bba008018dd2c7754195ba6
+ checksum: ca237b699d74246622f4a29078674bfbf9c8238adec7fda6a5062e064d11c6f15c6dba117daa21fe3ac778fa2e884fb2366b5c5bb5e9490f91f9b611f7f010fe
languageName: node
linkType: hard
-"@rjsf/utils@npm:5.15.1":
- version: 5.15.1
- resolution: "@rjsf/utils@npm:5.15.1"
+"@rjsf/utils@npm:5.16.1":
+ version: 5.16.1
+ resolution: "@rjsf/utils@npm:5.16.1"
dependencies:
json-schema-merge-allof: ^0.8.1
jsonpointer: ^5.0.1
@@ -14891,21 +14918,21 @@ __metadata:
react-is: ^18.2.0
peerDependencies:
react: ^16.14.0 || >=17
- checksum: ec0d56bf2627d55759a59090db0d59402244a6fae64528f66dde1f5de2eaaf2a6841dea7bbb185eb36fd344b3abd4825b2b422f3b1b0bb05365847073aa1e790
+ checksum: 0c69527de4ab6f9d6ec4d1a5e05a31a0a38062d40abe2a2da7bc2324b20b08b0e90c188977ac4408f3b004c758c28097444746f3215e21e184c11cad7e9278c1
languageName: node
linkType: hard
-"@rjsf/validator-ajv8@npm:5.15.1":
- version: 5.15.1
- resolution: "@rjsf/validator-ajv8@npm:5.15.1"
+"@rjsf/validator-ajv8@npm:5.16.1":
+ version: 5.16.1
+ resolution: "@rjsf/validator-ajv8@npm:5.16.1"
dependencies:
ajv: ^8.12.0
ajv-formats: ^2.1.1
lodash: ^4.17.21
lodash-es: ^4.17.21
peerDependencies:
- "@rjsf/utils": ^5.12.x
- checksum: d32538968d9a9a664a44ffee1b24a835142aaacda3c1ad4671f6d6a4ed564e68e5dea4f37d1c62ee2c03f8a5b55174c0815040eff3c7814260c1181f945adced
+ "@rjsf/utils": ^5.16.x
+ checksum: ab26fc02ad86c7ff36e69aa1285b43a67aa65b2a47e3741a67c243131f74848e55f7215a20416c1a636703aa7f95af7d4270eda9818253f7ea2b3c5f86a26980
languageName: node
linkType: hard
@@ -15351,7 +15378,7 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^2.1.0, @smithy/abort-controller@npm:^2.1.1":
+"@smithy/abort-controller@npm:^2.1.1":
version: 2.1.1
resolution: "@smithy/abort-controller@npm:2.1.1"
dependencies:
@@ -15361,276 +15388,276 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/chunked-blob-reader-native@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/chunked-blob-reader-native@npm:2.1.0"
+"@smithy/chunked-blob-reader-native@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/chunked-blob-reader-native@npm:2.1.1"
dependencies:
- "@smithy/util-base64": ^2.1.0
+ "@smithy/util-base64": ^2.1.1
tslib: ^2.5.0
- checksum: 39ff866a5887dfbe515463d841d869559e18aa18e97a644be49f12821012c171d89d759dbe3999b0bedcafdad8c1202c747b2f5a71a6c1f63082b0fae13b844c
+ checksum: 82f475b9090e12306292d46b27cca841691a251db5c9b5520830f7e5c947bbe69b497619773b25754dcdd8580620fd3677f478e1325501549f6182d78e95c583
languageName: node
linkType: hard
-"@smithy/chunked-blob-reader@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/chunked-blob-reader@npm:2.1.0"
+"@smithy/chunked-blob-reader@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/chunked-blob-reader@npm:2.1.1"
dependencies:
tslib: ^2.5.0
- checksum: 0e59309a3566057e6529d33954ac2621d979dcbc93f92696df617c89bf7b382576cac43b874cba8b394a16f619d60d25acc6f2c839278c2c50df3ddeacb90e02
+ checksum: e9d7f6f80fffccb5b615aa4eecf0e48849e625a70a79acc371b74b3d5e6dffed3b0d21d8beafe2e1cc1ebc235b8c24ed7d7e31e8c3565d97efe1238dda82c813
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/config-resolver@npm:2.1.0"
+"@smithy/config-resolver@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/config-resolver@npm:2.1.1"
dependencies:
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/types": ^2.9.0
- "@smithy/util-config-provider": ^2.2.0
- "@smithy/util-middleware": ^2.1.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-config-provider": ^2.2.1
+ "@smithy/util-middleware": ^2.1.1
tslib: ^2.5.0
- checksum: 09bda075b007bf08a3253ea257685ade769f70e0735d154c4495469a87ac941efc76501c3a5afecb1209ade4a35db2e4c0ae6c50f71b9970576c7eade8f4b42b
+ checksum: 18c8af60cbc528887a82dc0eabaf0b398d868511dc6b10fa01f41c77ea9c2679ab2137feaee51aa9060dbc5c46fc33325a659f4bd54549c203f64e15dbacbc0a
languageName: node
linkType: hard
-"@smithy/core@npm:^1.3.0":
- version: 1.3.0
- resolution: "@smithy/core@npm:1.3.0"
+"@smithy/core@npm:^1.3.1":
+ version: 1.3.1
+ resolution: "@smithy/core@npm:1.3.1"
dependencies:
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-retry": ^2.1.0
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/util-middleware": ^2.1.0
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-retry": ^2.1.1
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-middleware": ^2.1.1
tslib: ^2.5.0
- checksum: b35792e3915412e15062e561c3de84cd5ffdf3fe6d053460a48843bd97d16af44048e8cede18011b5fec0b12732f7d22feedcae526cd077d18c2a3567e291686
+ checksum: b8a34ac6000afaba2d3ddf85f3ef2ad9e70fc20ae54ccb7e79d22b7afe3b8fa9c2409ed14dd2d0cabc99a1d1f51fceaf91ab81d1d2c8bf11ca94101619f3cde2
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^2.2.0":
- version: 2.2.0
- resolution: "@smithy/credential-provider-imds@npm:2.2.0"
+"@smithy/credential-provider-imds@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "@smithy/credential-provider-imds@npm:2.2.1"
dependencies:
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
tslib: ^2.5.0
- checksum: 4c1722f5e541cb64211f8d6cd81298ae6c74a41f93c223f7c8e2b118cf103cdd16e20ff6440c8393aa4f017c619fa8ca691049729f5869b8f9aa852b1b9cb448
+ checksum: a4e693719384440718728772ea2126be133bbc83fa7bfcefd236942ccb28d1390f1b32fe3262bf330ba4c8e600d01ac73a57110eb42462ec1eb6bbd51e2676a6
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/eventstream-codec@npm:2.1.0"
+"@smithy/eventstream-codec@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/eventstream-codec@npm:2.1.1"
dependencies:
"@aws-crypto/crc32": 3.0.0
- "@smithy/types": ^2.9.0
- "@smithy/util-hex-encoding": ^2.1.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-hex-encoding": ^2.1.1
tslib: ^2.5.0
- checksum: de1f72d3d4146b3c4bb81aa93b423b6cce89a606feeb209c6b181643686cd1832af56ebd632041c8d708e1923f8c779353953b988b437a35ca4a9b57c9c57329
+ checksum: 7e59028a69e669d1ca1a0fef788f9892a427fad32f33ded731cbfa3bde0163acbc1e7d207e0ce3eae2d3b53f48dce7a99ded092122cdf78e4f392cffd762bfe3
languageName: node
linkType: hard
-"@smithy/eventstream-serde-browser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/eventstream-serde-browser@npm:2.1.0"
+"@smithy/eventstream-serde-browser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/eventstream-serde-browser@npm:2.1.1"
dependencies:
- "@smithy/eventstream-serde-universal": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/eventstream-serde-universal": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 77b2a904ec7562ebd4eb69b960ecf1b134c8e9a676b52804ec7d40703f505d36158390f511f3d5d56ae1991d6f4ac30c4b8c0889e09ffa384f470e573ab838e2
+ checksum: c909b620de25e9779653742012c665df8c76bf5193bb79054ef302bc3c08b0fa5620884a5965a3a6ebbb4f059da1b05221662a7a652aa979f4830f26c534be60
languageName: node
linkType: hard
-"@smithy/eventstream-serde-config-resolver@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/eventstream-serde-config-resolver@npm:2.1.0"
+"@smithy/eventstream-serde-config-resolver@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/eventstream-serde-config-resolver@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 62b4c7062a775954a76744dd268eeb0504669f81e537245a876851d97ed4187ceb0685fe02bfa73e6e04502f81cb81b4acdf40c8237d7049c7ed8df8c1952ac2
+ checksum: 14d4d1c638be460290eb05dec3a700d742f8ce77814c1c235fbd7cf248941a387595f1cd684b9acfc3e081a8d9e6dc2810f10c894b3e08f16f0c3adb130cb736
languageName: node
linkType: hard
-"@smithy/eventstream-serde-node@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/eventstream-serde-node@npm:2.1.0"
+"@smithy/eventstream-serde-node@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/eventstream-serde-node@npm:2.1.1"
dependencies:
- "@smithy/eventstream-serde-universal": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/eventstream-serde-universal": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: f882576d7a26c8ff3013550a6d8c224ab2a4082fb28fb21edbe4fa80593041e7cad0b86c0c8c1ffcebffda9fd55f63d84ae4f8524984dcb7243afc221ccdd000
+ checksum: 4be3dd11854d66310273bae07faafd4ca872158be8d3ef7bdc1dec55a175e983975750ebdaf762e74daf80495e379bd2791971a50899076865759a75b2634d73
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/eventstream-serde-universal@npm:2.1.0"
+"@smithy/eventstream-serde-universal@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/eventstream-serde-universal@npm:2.1.1"
dependencies:
- "@smithy/eventstream-codec": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/eventstream-codec": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 206e7c7154a485c5538d970fc95b8b3d0ebbce6be0f02617146ab17b02787e4b424e6ae06cc38397fb9477a6db25b5afff76b4756ba2f736a68fd01154fc9f28
+ checksum: 99c7cf5b869f8e6323e976335a3238b77d3b1c32005fc78093d448981883294e4d59bcbd419e88d6a53c76aab01c27bc9af63a5dfed9451d2302eaf6ccddbd64
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^2.4.0":
- version: 2.4.0
- resolution: "@smithy/fetch-http-handler@npm:2.4.0"
+"@smithy/fetch-http-handler@npm:^2.4.1":
+ version: 2.4.1
+ resolution: "@smithy/fetch-http-handler@npm:2.4.1"
dependencies:
- "@smithy/protocol-http": ^3.1.0
- "@smithy/querystring-builder": ^2.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-base64": ^2.1.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/querystring-builder": ^2.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-base64": ^2.1.1
tslib: ^2.5.0
- checksum: 1f6165ca546bb274d6111b9819ae7d4969ea79a81e718b41438feae04d2aaee942ef62464c3e6e2999e78f27b977c39c560e06fbb76fb9fda443c2bc77db2a3d
+ checksum: c23701d45bca6842b5206939ccd587e3482ace9f656ae3dca92ff0bad3fefb846cc33683dff41a19186f2a5662ca6cd66c8aefda4664b7dfd95f9a616055a1c1
languageName: node
linkType: hard
-"@smithy/hash-blob-browser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/hash-blob-browser@npm:2.1.0"
+"@smithy/hash-blob-browser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/hash-blob-browser@npm:2.1.1"
dependencies:
- "@smithy/chunked-blob-reader": ^2.1.0
- "@smithy/chunked-blob-reader-native": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/chunked-blob-reader": ^2.1.1
+ "@smithy/chunked-blob-reader-native": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: c76e9a9393f1fcfa3b567083ea50764f565d01879bb8062da09c8cf403a92867e7e60fdae0d6f82d4df7a684026537efa9e6be7d26245e08ea5ec6bd4680de19
+ checksum: f4dc57c11ef32ddea0e7094d2c230aa274f1e410d84c789d8f5e2ed8a090da8675ca76da9605d297285324107ea8106af1c2aab2859bd62d6e9a8db415eb8e55
languageName: node
linkType: hard
-"@smithy/hash-node@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/hash-node@npm:2.1.0"
+"@smithy/hash-node@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/hash-node@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
- "@smithy/util-buffer-from": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-buffer-from": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: fbeca22f0ce172e16530c6b84ac8452a6fdf965451bfacd7a626dc992ec69696edea7dc95e5e4bc8109ccb905db104d62b023788432df075e5a1a70e976907fa
+ checksum: 5d5aae69b94dcb8abaf9f6a5b53ee320c9e126445c4540fcf2169e8ea7ebd953acff7fd77ba514614f6ebbb0baf412e878eebcc3427a5b9b6f8ee39abbc59230
languageName: node
linkType: hard
-"@smithy/hash-stream-node@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/hash-stream-node@npm:2.1.0"
+"@smithy/hash-stream-node@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/hash-stream-node@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
- "@smithy/util-utf8": ^2.1.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 0f86820521fda9d82b5114630ac69cb0a04ad68158ef02636b3c7bcd46461b9f7ec1bf3c46a1cb34bcac135faf61f94f127913f365f6ee9187928932b4bfaabb
+ checksum: da3c4ba14c648ee0d2fe7d3298d601150ee0ce5ac0c7d9f54a88148b5f67b03513b41560f76f5f109f11196547b4dc4f26e314774794596d7e3ee1103a9906a8
languageName: node
linkType: hard
-"@smithy/invalid-dependency@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/invalid-dependency@npm:2.1.0"
+"@smithy/invalid-dependency@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/invalid-dependency@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 72b8f405cc77a0050f46f4ef648322aa5c1a421f25cac282b172f421b20a790809ffd621959e2278d174d6daf6f3c45acc533236fbfbc157a2537aeb88206f26
+ checksum: f95ecd9acd337a408b6608a3f451b24a61e26149878f61fc7855c724888f0d28abf0b798d16990dadb7eafc8027098f934c0cd44e75d01d31617bd1fbfd93935
languageName: node
linkType: hard
-"@smithy/is-array-buffer@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/is-array-buffer@npm:2.1.0"
+"@smithy/is-array-buffer@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/is-array-buffer@npm:2.1.1"
dependencies:
tslib: ^2.5.0
- checksum: cf32161a01a0384b47738bbc58dd6a317e3b5113f411ad141f174cc44e2a9e91f72082bdefa4477dc53c8e3ab6292d1487f26d66fce4f1fe7cc5da4ecde31e11
+ checksum: 5dbf9ed59715c871321d0624e3842340c1d662d2e8b78313d1658d39eb793b3ac5c379d573eba0a2ca3add9b313848d4d93fd04bb8565c75fbab749928b239a6
languageName: node
linkType: hard
-"@smithy/md5-js@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/md5-js@npm:2.1.0"
+"@smithy/md5-js@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/md5-js@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
- "@smithy/util-utf8": ^2.1.0
+ "@smithy/types": ^2.9.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: b8d2f24df059e33feff8362fc9c4bdffc6f3e220f5a9c25959ea763d2f92d482ab7fb554164bc846b7d838c398be1fa76147cca616bf3e04c560e31c1cc315d5
+ checksum: d15bc426a46d80d450b555a5ccd3d5a6bf37190f4b9ccb705852cd53ce61e4fe6fb08a569b87303ee787da57023f2b75f0e7893644af16c89e9aaf513f8afff3
languageName: node
linkType: hard
-"@smithy/middleware-content-length@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/middleware-content-length@npm:2.1.0"
+"@smithy/middleware-content-length@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/middleware-content-length@npm:2.1.1"
dependencies:
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 794a467d1db31015ee0fc3886363b4081b7213268c8ce175647077b2b7485a9a280b00349013b79d5f545476b7818ace85e14428df5b5587bb96219685cc7ebe
+ checksum: cb0ea801f72a1a01f5956b3526df930fc19762b07d43a3871ff29815f621603410753d37710d72675d9761b93da32a38cfd5195582de8b6a47e299b1f073be25
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^2.4.0":
- version: 2.4.0
- resolution: "@smithy/middleware-endpoint@npm:2.4.0"
+"@smithy/middleware-endpoint@npm:^2.4.1":
+ version: 2.4.1
+ resolution: "@smithy/middleware-endpoint@npm:2.4.1"
dependencies:
- "@smithy/middleware-serde": ^2.1.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/url-parser": ^2.1.0
- "@smithy/util-middleware": ^2.1.0
+ "@smithy/middleware-serde": ^2.1.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/url-parser": ^2.1.1
+ "@smithy/util-middleware": ^2.1.1
tslib: ^2.5.0
- checksum: 0ff6c10d5ddeef3add524c1b4fbe155aeaf6aeeff9c714111236bc5ad76f8459ec82dc9bd07355a63ef509ffb51173514d268d83b89eb75537976722400e7786
+ checksum: 685f74c76cba205bdb20ad7bda449b73e498ae2e9074a026d48b38c7b4456d8a0cfb4fdb48625b65f93f3a75e92eaf7951db28f8e9f44e50ce18fd59a7b325af
languageName: node
linkType: hard
-"@smithy/middleware-retry@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/middleware-retry@npm:2.1.0"
+"@smithy/middleware-retry@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/middleware-retry@npm:2.1.1"
dependencies:
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/service-error-classification": ^2.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/util-middleware": ^2.1.0
- "@smithy/util-retry": ^2.1.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/service-error-classification": ^2.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-middleware": ^2.1.1
+ "@smithy/util-retry": ^2.1.1
tslib: ^2.5.0
uuid: ^8.3.2
- checksum: 4ac9dacd7295f31378d8828810e44f7f7c526761010cef0e5cbd602cdc7306906a42e57b7d06e5e31e100f2cf9a3d73398d6350e9dc502b3375a2182608dbb16
+ checksum: a4bc59d2ff8f65367aeb93391a2aafc7caf8031d8b2dfb32ee35748cdc46e06d5182c37bee90d7a107e890959bd40e6a7f4041bc1b0b36a99d14919b1cc78812
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/middleware-serde@npm:2.1.0"
+"@smithy/middleware-serde@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/middleware-serde@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: d225f8bd960a1586219c53926ec33ae06f868f558ccc1777850abd160fb1d179ca4d4838c67032e8ea5cc8491e721b1317d14f040ffe735a6b0515e6847eda1c
+ checksum: ed77b80ac6b68640ee4bf8310bc4d9f5aa13de2741333f6f03a4983e897fa66e0de057d178e78d9ba095d5686d3e4531437c9dd2583366efe948bd75b2aa8581
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/middleware-stack@npm:2.1.0"
+"@smithy/middleware-stack@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/middleware-stack@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 160abf4bd8ad0799f25053054585b6da987373f1352649f215a496d007a8c2ffed9cb1f2fde7219dcf8dc6883952be63d547f7b6cfcab45db61e645ff6d4bebb
+ checksum: 0d7c1051c96fcf19f7d5e96bc59484ce13df4e570c1da3eda74d23a7911b41eb61d6c378aad0aa21f7e9c72934148bdf39f9767c57abd4845aa4417a84e3f6e4
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^2.2.0":
- version: 2.2.0
- resolution: "@smithy/node-config-provider@npm:2.2.0"
+"@smithy/node-config-provider@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "@smithy/node-config-provider@npm:2.2.1"
dependencies:
- "@smithy/property-provider": ^2.1.0
- "@smithy/shared-ini-file-loader": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/shared-ini-file-loader": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: d46a83f51e7186bdc80404df260e676979f5f576ad6e958ee59a24feeb0ac661558646d772991e70bef63398c24e4cf0dfea38cd76935860aaab9c7d61e4d234
+ checksum: 62ed3124d888a10cac633a250fbe12d6c5b8aa75ea691889abebce227cbaf155f3db00fa6beb453fbd6147e667e70819d043da1750980669451281a28eafd285
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^2.1.7, @smithy/node-http-handler@npm:^2.3.0":
+"@smithy/node-http-handler@npm:^2.1.7, @smithy/node-http-handler@npm:^2.3.1":
version: 2.3.1
resolution: "@smithy/node-http-handler@npm:2.3.1"
dependencies:
@@ -15643,17 +15670,17 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/property-provider@npm:2.1.0"
+"@smithy/property-provider@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/property-provider@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: abeceb40091e121bdbc4788af8c4664d4b624a5a3ffe17185cbe29c21deb785b9788dfec70bb552d82422ab566f4c8aed0b7697d50abc8bf76e498ad929e49a5
+ checksum: e87d70c4efe07e830cfb2094b046af89175b87b13259fba37641aa7bfc2ab0c7bf2397797ac48b92e1feb11bf6129b82b350519172093efd7ac4d3a4a98bbe2f
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^3.1.0, @smithy/protocol-http@npm:^3.1.1":
+"@smithy/protocol-http@npm:^3.1.1":
version: 3.1.1
resolution: "@smithy/protocol-http@npm:3.1.1"
dependencies:
@@ -15663,7 +15690,7 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^2.1.0, @smithy/querystring-builder@npm:^2.1.1":
+"@smithy/querystring-builder@npm:^2.1.1":
version: 2.1.1
resolution: "@smithy/querystring-builder@npm:2.1.1"
dependencies:
@@ -15674,62 +15701,62 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/querystring-parser@npm:2.1.0"
+"@smithy/querystring-parser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/querystring-parser@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 59c149d9654712066496c4685ab1ebf1ca792dd05de8bb88cdd512a2408b2c62cd618a3d3aab1eae2a74eb5b6da3649ef68b01e67b1c4838fe6881dc25e73775
+ checksum: bfac40793b0e42f4e25137db4e7d866debfa32557359cc41e02a23174a6fd8e0132f098cef5669a3ddf5211e477c9c97d4aa9039b35c7b4a29f2207236da236e
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/service-error-classification@npm:2.1.0"
+"@smithy/service-error-classification@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/service-error-classification@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
- checksum: 3889559eea95d96175b701d968d2b40409c0abee7de7434e6e9ebf4d5d1ecf90bda0cbf62b9768b787f0d18e39e729bc8d67bd6b1537df253cb854b263a96dc6
+ "@smithy/types": ^2.9.1
+ checksum: 59a5e3cb0fb42d70fc2d85814124abbff60e28cc9aa45d87fde3370e25943abaf4b6baf62cc40e496c3687e9fa9161156a055ad29a4f7ce8dd7d937bbf49f9a7
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^2.3.0":
- version: 2.3.0
- resolution: "@smithy/shared-ini-file-loader@npm:2.3.0"
+"@smithy/shared-ini-file-loader@npm:^2.3.1":
+ version: 2.3.1
+ resolution: "@smithy/shared-ini-file-loader@npm:2.3.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: ea2855ef47df8711b89623f74e84151ced3716fd0255310071e67e8d1a303e0b1a9aa86a72cc7216ad82a162f37b019c639e5a7c5b4a8462499fa4def7e40bdb
+ checksum: 89b0dfb65faab917fcb4a6a8f34a85d668a759ccbfd6c4dc3d6311e59a8f1b78baab1d97402c333d2207da810cb00de9d5b4379f114bde82135f9aa0d0069cab
languageName: node
linkType: hard
-"@smithy/signature-v4@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/signature-v4@npm:2.1.0"
+"@smithy/signature-v4@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/signature-v4@npm:2.1.1"
dependencies:
- "@smithy/eventstream-codec": ^2.1.0
- "@smithy/is-array-buffer": ^2.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-hex-encoding": ^2.1.0
- "@smithy/util-middleware": ^2.1.0
- "@smithy/util-uri-escape": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@smithy/eventstream-codec": ^2.1.1
+ "@smithy/is-array-buffer": ^2.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-hex-encoding": ^2.1.1
+ "@smithy/util-middleware": ^2.1.1
+ "@smithy/util-uri-escape": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 3e2fa005930f8228b9480087f4eeacbf36200e268c760890182e21ae4035b5e02e9d10bc6d9f9ae0bc257b02cadadb522afdf1f3bddf3c2d61c3e3796f90e8ca
+ checksum: fa3d4728b0bcf98e606a6e13a47f91efc6eb9edb6925ba48c3b9cecdf8170adf27e28a0684dabe385e8a7379d0743f52b19cd9a1a01884cd0f75c048c4324fd2
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^2.3.0":
- version: 2.3.0
- resolution: "@smithy/smithy-client@npm:2.3.0"
+"@smithy/smithy-client@npm:^2.3.1":
+ version: 2.3.1
+ resolution: "@smithy/smithy-client@npm:2.3.1"
dependencies:
- "@smithy/middleware-endpoint": ^2.4.0
- "@smithy/middleware-stack": ^2.1.0
- "@smithy/protocol-http": ^3.1.0
- "@smithy/types": ^2.9.0
- "@smithy/util-stream": ^2.1.0
+ "@smithy/middleware-endpoint": ^2.4.1
+ "@smithy/middleware-stack": ^2.1.1
+ "@smithy/protocol-http": ^3.1.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-stream": ^2.1.1
tslib: ^2.5.0
- checksum: ed101b2b8cb4c439fb7e0e37d399317e599b8ea9cef267da5491c63797d85f82b42675a4e69e2795ad984a7ef00f87c56276a755155e11fc6f5c56f41b6b813a
+ checksum: 9b13c361528b3120b1a1db17cd60521d04c72f664c2709be20934cea12756117441d2a33d0464ff3099be11ccb12946c62ece1126b9532eb8f6243a35d6fd171
languageName: node
linkType: hard
@@ -15742,7 +15769,7 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/types@npm:^2.9.0, @smithy/types@npm:^2.9.1":
+"@smithy/types@npm:^2.9.1":
version: 2.9.1
resolution: "@smithy/types@npm:2.9.1"
dependencies:
@@ -15751,150 +15778,150 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/url-parser@npm:2.1.0"
+"@smithy/url-parser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/url-parser@npm:2.1.1"
dependencies:
- "@smithy/querystring-parser": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/querystring-parser": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: e61ee1d7a3357f02f8f0d8364de3d2798134b0b5c686e3ab12917352feff5e445d0b8b16237f2c5444a9e48c8df57e8ca91770b29d804f8f469d6bdbc7498f97
+ checksum: 5c939f3ff9c53a0b7a0c5a1ac7641f229598d2bf9499e1abf4d33c1c1cd13bd5f7fcfffd00c366ca9f8092d28979a4a958b80f9bbc91e817e4d1940451e93489
languageName: node
linkType: hard
-"@smithy/util-base64@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-base64@npm:2.1.0"
+"@smithy/util-base64@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-base64@npm:2.1.1"
dependencies:
- "@smithy/util-buffer-from": ^2.1.0
+ "@smithy/util-buffer-from": ^2.1.1
tslib: ^2.5.0
- checksum: 76a58830c82c4400374eddc09cd38f3f62f14f0d42295dfb468ed7cfc3928a7093c2879c01ed2e8c858f0bab47710a0514deb8da754d640b94a70281bec87315
+ checksum: 6dbb93b8745798d56476d37c99dc9f53fe5fc29329b8161fc9e5c55c5a3062916b3e5e4dd596541b248979eefa550d8da7fbb6ab254bf069cb4c920aea6c3590
languageName: node
linkType: hard
-"@smithy/util-body-length-browser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-body-length-browser@npm:2.1.0"
+"@smithy/util-body-length-browser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-body-length-browser@npm:2.1.1"
dependencies:
tslib: ^2.5.0
- checksum: ca37935d801ae4812e39c70e54651aaa029ad0bb6720a3529d9a0367a64316e892683805b25a36981126f458a3d3f5633be4f9b9e8de2a7293b8ea08bfd8607a
+ checksum: 6f7808a41b57a5ab1334f0d036ecec6809a959bcfe6a200f985f35e0c96e72f34fdcb6154873f795835d1d927098055e2dec31ebfb5e5382d1c4c612c80a37c0
languageName: node
linkType: hard
-"@smithy/util-body-length-node@npm:^2.2.0":
- version: 2.2.0
- resolution: "@smithy/util-body-length-node@npm:2.2.0"
+"@smithy/util-body-length-node@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "@smithy/util-body-length-node@npm:2.2.1"
dependencies:
tslib: ^2.5.0
- checksum: a2ada7daeb31147675b66f0a95cd24ed10ee800211ddde34b1bbbd0a2bfbfdc82efbc8fe2c9bf4e18a67e7112aaf432f381a32e19be06735c8f4e0c3eec1a4a5
+ checksum: 6bddc6fac7c9875ae7baaf6088d91192fbe4405bc5c1b69100d52aa1bfebabcc194f5f1b159d8f6f3ade3b54e416f185781970c30a97d4b0a7cec6d02fc490c4
languageName: node
linkType: hard
-"@smithy/util-buffer-from@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-buffer-from@npm:2.1.0"
+"@smithy/util-buffer-from@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-buffer-from@npm:2.1.1"
dependencies:
- "@smithy/is-array-buffer": ^2.1.0
+ "@smithy/is-array-buffer": ^2.1.1
tslib: ^2.5.0
- checksum: 0e90dd3f324eae8863377d11f88cbdabf22aa29f5cb365bda8c5a23f24bbc2671c314aefccfab33e048fbeb18c939228bb43a5f0dc719fed71d484142ef3aaf5
+ checksum: 8dc7f9afaa356696f14a80cd983a750cbad8eba7c46498ed74fb8ec0cb307f14df64fb10ceb30b2d4792395bb8b216c89155a93dee0f2b3e5cab94fef459a195
languageName: node
linkType: hard
-"@smithy/util-config-provider@npm:^2.2.0":
- version: 2.2.0
- resolution: "@smithy/util-config-provider@npm:2.2.0"
+"@smithy/util-config-provider@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "@smithy/util-config-provider@npm:2.2.1"
dependencies:
tslib: ^2.5.0
- checksum: ec61ff7f2f89c7c7c621141b9e19e8a5fa3c05041632d9b894b28b7d8bae9231271a61acfce19737bde0efce186062fa03cc05e4a006d96ea5c35ecf8a7e7e8d
+ checksum: f5b34bcf6ef944779f20d7639070e87a521e1a5620e5a91f2d2dbd764824985930a68b71b0b2bde12e1eaac947155789b73a8c09c1aa7ab923f08e42a4173ef4
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-browser@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-defaults-mode-browser@npm:2.1.0"
+"@smithy/util-defaults-mode-browser@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-defaults-mode-browser@npm:2.1.1"
dependencies:
- "@smithy/property-provider": ^2.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
bowser: ^2.11.0
tslib: ^2.5.0
- checksum: 55a5cf94ddeb573b959265609e3854bdca62d9c1460a9d12b765266d6a8bdba8485a8beb765495755ffb32df1cc78b97c8f4f1c2b3556f073cd988b278e07b4f
+ checksum: 5d3b11be1768410e24ad9829dc70bed9b50419f85a8ca934c6296e21e278d87f665cfdb603241ef749f80d154a2c4be26cd29338daecc625d31b30af8bd9c139
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-node@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-defaults-mode-node@npm:2.1.0"
+"@smithy/util-defaults-mode-node@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-defaults-mode-node@npm:2.1.1"
dependencies:
- "@smithy/config-resolver": ^2.1.0
- "@smithy/credential-provider-imds": ^2.2.0
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/property-provider": ^2.1.0
- "@smithy/smithy-client": ^2.3.0
- "@smithy/types": ^2.9.0
+ "@smithy/config-resolver": ^2.1.1
+ "@smithy/credential-provider-imds": ^2.2.1
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/property-provider": ^2.1.1
+ "@smithy/smithy-client": ^2.3.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 4f244dc6d85c356f0e83296d75a57179ec4ce16001d26169a93d3d449a0be0748495309db96f4425dbd0ecf85d00a46be6a5869c14d1b3083d393efd9fef5edf
+ checksum: 3d32e90ce9b6340f26f856c1fdd627b753faaa403813b7e6a51583bfaa6b7eab0f52fd6e067afb9f14e741c6fa31dfedfe22c7c73911b48f8f4fab0510992c32
languageName: node
linkType: hard
-"@smithy/util-endpoints@npm:^1.1.0":
- version: 1.1.0
- resolution: "@smithy/util-endpoints@npm:1.1.0"
+"@smithy/util-endpoints@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "@smithy/util-endpoints@npm:1.1.1"
dependencies:
- "@smithy/node-config-provider": ^2.2.0
- "@smithy/types": ^2.9.0
+ "@smithy/node-config-provider": ^2.2.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: ab646e2a8779e5901ff8be43744516ef413514efc9b42c82cea0461c9ee9b25b44709666b1504124d98c3512e93e5b24e532b0cade7031e4ea2ad7c3a752b306
+ checksum: 40619bf739c1fc959486946cb49319f34c9c4c5c19f46cdefc7ff8e7331b84f6ad7a4aeb8a0268f6d77d266ff5ec9df8d2244094dd79ae469983e9c07e43766a
languageName: node
linkType: hard
-"@smithy/util-hex-encoding@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-hex-encoding@npm:2.1.0"
+"@smithy/util-hex-encoding@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-hex-encoding@npm:2.1.1"
dependencies:
tslib: ^2.5.0
- checksum: 6a86bd3c7429b1762300a500d86b17a20499d9364c14c7e08aba49db3ee98b08dfa576513bbbd0cfed466807e04b6d71ff4922e71b89e59a79f0ffe482691364
+ checksum: eae5c94fd4d57dccbae5ad4d7684787b1e9b1df944cf9fcb497cbefaed6aec49c0a777cc1ea4d10fa7002b82f0b73b8830ae2efe98ed35a62dcf3c4f7d08a4cd
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-middleware@npm:2.1.0"
+"@smithy/util-middleware@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-middleware@npm:2.1.1"
dependencies:
- "@smithy/types": ^2.9.0
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 5b64efb80ad8f0855fd313812ea083a601d78e219898bab467fbfda50a8f7e1ee8399b895ca8c797c4becc8edc701d3ee976b9ae7b57b7b126ae69fc926574ac
+ checksum: 404bb944202df70ba0ff8bb6ea105ead0a6b365d5ef7bfafbfc919df228823563818f0ee36f0f1e20462200da2fb8c8961e20b237e4e1bd9f77c38dd701f39ab
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-retry@npm:2.1.0"
+"@smithy/util-retry@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-retry@npm:2.1.1"
dependencies:
- "@smithy/service-error-classification": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/service-error-classification": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 944ea383095357b2f4892849b2be05502183b5a07f825ca4012366e0e878dd9f478e774f1b413dc4190d38ae15e5cf3e26f484670f6b793488c07ccdaaa5e129
+ checksum: 1747c75f55a208f16104483cd76ec45200dedaa924868e84d4882b88f8b4a8d3a4422834359fd9bfba242e0e96a474349ac0a6f5d804fb15b15e8b639b6d2ad0
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-stream@npm:2.1.0"
+"@smithy/util-stream@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-stream@npm:2.1.1"
dependencies:
- "@smithy/fetch-http-handler": ^2.4.0
- "@smithy/node-http-handler": ^2.3.0
- "@smithy/types": ^2.9.0
- "@smithy/util-base64": ^2.1.0
- "@smithy/util-buffer-from": ^2.1.0
- "@smithy/util-hex-encoding": ^2.1.0
- "@smithy/util-utf8": ^2.1.0
+ "@smithy/fetch-http-handler": ^2.4.1
+ "@smithy/node-http-handler": ^2.3.1
+ "@smithy/types": ^2.9.1
+ "@smithy/util-base64": ^2.1.1
+ "@smithy/util-buffer-from": ^2.1.1
+ "@smithy/util-hex-encoding": ^2.1.1
+ "@smithy/util-utf8": ^2.1.1
tslib: ^2.5.0
- checksum: 41a4929ba5fd0dec38bbd859f1ef8d4fc244dc0ce8fcc897ae450e1b22e949b12c8d972120066055e03757702494241d9cd65cfdaa35f977cf3a513248bd52b6
+ checksum: 3a060226b8a506e722d0d8c1c4b7a2989241f7946c8acc892a8a70d92d9952cc8619b14bf686c9c822115d99159c6c16534bad2d72ecc2809a56f865224e82a6
languageName: node
linkType: hard
-"@smithy/util-uri-escape@npm:^2.1.0, @smithy/util-uri-escape@npm:^2.1.1":
+"@smithy/util-uri-escape@npm:^2.1.1":
version: 2.1.1
resolution: "@smithy/util-uri-escape@npm:2.1.1"
dependencies:
@@ -15903,24 +15930,24 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-utf8@npm:^2.0.0, @smithy/util-utf8@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-utf8@npm:2.1.0"
+"@smithy/util-utf8@npm:^2.0.0, @smithy/util-utf8@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-utf8@npm:2.1.1"
dependencies:
- "@smithy/util-buffer-from": ^2.1.0
+ "@smithy/util-buffer-from": ^2.1.1
tslib: ^2.5.0
- checksum: eb33393c3e83262418f9a08ed7dc3dd3895c281a4a38b03fca9a2686b67b64db7ba657287da0201d9083d41a4528be39ff8b9ab7bd5b9b9b2ce4d1c3a144c7bc
+ checksum: 286ce5cba3f45a8abd3d6c28e40b3204dd64300340818d77e42c1cbb0c2f6ad0c42f0e47ffaf38d74d0895b0dfd1750c5b55222ab4d205a3b39da4325971d303
languageName: node
linkType: hard
-"@smithy/util-waiter@npm:^2.1.0":
- version: 2.1.0
- resolution: "@smithy/util-waiter@npm:2.1.0"
+"@smithy/util-waiter@npm:^2.1.1":
+ version: 2.1.1
+ resolution: "@smithy/util-waiter@npm:2.1.1"
dependencies:
- "@smithy/abort-controller": ^2.1.0
- "@smithy/types": ^2.9.0
+ "@smithy/abort-controller": ^2.1.1
+ "@smithy/types": ^2.9.1
tslib: ^2.5.0
- checksum: 1b861e2eec1848afcca08c13dac3a32b02187f9958f26d79cb5805ba140fca228268c54f7122fae1b74c4000a70fccad4aad61f21ec02acfa4e9511eebecc31e
+ checksum: 52d9c82bb9684b6b11eeb2814fa1454514cb90aeeb87bfdf7c458613c13d18189712585486859c975824d08f2d1e3c817dd7e51c400531aaa479af8a06ea0bff
languageName: node
linkType: hard
@@ -16922,90 +16949,90 @@ __metadata:
languageName: node
linkType: hard
-"@swc/core-darwin-arm64@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-darwin-arm64@npm:1.3.104"
+"@swc/core-darwin-arm64@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-darwin-arm64@npm:1.3.105"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@swc/core-darwin-x64@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-darwin-x64@npm:1.3.104"
+"@swc/core-darwin-x64@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-darwin-x64@npm:1.3.105"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@swc/core-linux-arm-gnueabihf@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.104"
+"@swc/core-linux-arm-gnueabihf@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.105"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@swc/core-linux-arm64-gnu@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm64-gnu@npm:1.3.104"
+"@swc/core-linux-arm64-gnu@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm64-gnu@npm:1.3.105"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@swc/core-linux-arm64-musl@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-arm64-musl@npm:1.3.104"
+"@swc/core-linux-arm64-musl@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-arm64-musl@npm:1.3.105"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@swc/core-linux-x64-gnu@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-x64-gnu@npm:1.3.104"
+"@swc/core-linux-x64-gnu@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-x64-gnu@npm:1.3.105"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@swc/core-linux-x64-musl@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-linux-x64-musl@npm:1.3.104"
+"@swc/core-linux-x64-musl@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-linux-x64-musl@npm:1.3.105"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@swc/core-win32-arm64-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-arm64-msvc@npm:1.3.104"
+"@swc/core-win32-arm64-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-arm64-msvc@npm:1.3.105"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@swc/core-win32-ia32-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-ia32-msvc@npm:1.3.104"
+"@swc/core-win32-ia32-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-ia32-msvc@npm:1.3.105"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@swc/core-win32-x64-msvc@npm:1.3.104":
- version: 1.3.104
- resolution: "@swc/core-win32-x64-msvc@npm:1.3.104"
+"@swc/core-win32-x64-msvc@npm:1.3.105":
+ version: 1.3.105
+ resolution: "@swc/core-win32-x64-msvc@npm:1.3.105"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@swc/core@npm:^1.3.46":
- version: 1.3.104
- resolution: "@swc/core@npm:1.3.104"
+ version: 1.3.105
+ resolution: "@swc/core@npm:1.3.105"
dependencies:
- "@swc/core-darwin-arm64": 1.3.104
- "@swc/core-darwin-x64": 1.3.104
- "@swc/core-linux-arm-gnueabihf": 1.3.104
- "@swc/core-linux-arm64-gnu": 1.3.104
- "@swc/core-linux-arm64-musl": 1.3.104
- "@swc/core-linux-x64-gnu": 1.3.104
- "@swc/core-linux-x64-musl": 1.3.104
- "@swc/core-win32-arm64-msvc": 1.3.104
- "@swc/core-win32-ia32-msvc": 1.3.104
- "@swc/core-win32-x64-msvc": 1.3.104
+ "@swc/core-darwin-arm64": 1.3.105
+ "@swc/core-darwin-x64": 1.3.105
+ "@swc/core-linux-arm-gnueabihf": 1.3.105
+ "@swc/core-linux-arm64-gnu": 1.3.105
+ "@swc/core-linux-arm64-musl": 1.3.105
+ "@swc/core-linux-x64-gnu": 1.3.105
+ "@swc/core-linux-x64-musl": 1.3.105
+ "@swc/core-win32-arm64-msvc": 1.3.105
+ "@swc/core-win32-ia32-msvc": 1.3.105
+ "@swc/core-win32-x64-msvc": 1.3.105
"@swc/counter": ^0.1.1
"@swc/types": ^0.1.5
peerDependencies:
@@ -17034,7 +17061,7 @@ __metadata:
peerDependenciesMeta:
"@swc/helpers":
optional: true
- checksum: 95fbf1412c8685d311cf2d7efbfa43e082d2d9e84ece48c4d8d96d6c67c5923569bfb26352451eb3e4d98adcb556dcfac65271c0fba77f078bb755fe2f64b295
+ checksum: 5baa880bc92748ef4845d9c65eba5d6dd01adaa673854e20a5116f5e267c12180db50e563cf3c34a415772b9742d021176a9d9a91065c190ef6f54fefe85728c
languageName: node
linkType: hard
@@ -17055,14 +17082,14 @@ __metadata:
linkType: hard
"@swc/jest@npm:^0.2.22":
- version: 0.2.30
- resolution: "@swc/jest@npm:0.2.30"
+ version: 0.2.31
+ resolution: "@swc/jest@npm:0.2.31"
dependencies:
"@jest/create-cache-key-function": ^29.7.0
jsonc-parser: ^3.2.0
peerDependencies:
"@swc/core": "*"
- checksum: 8ce25300949b8dfedaadec866d056a511ae2791e5cbbc8008b7d086c9c29b1b727c3f42aade88e824aa8205616e9aab812f9fa83ab4384e72f49a469f503256b
+ checksum: 1dae629a81a623de6a662dcac34a97f91986457f172bec1c8fc360d4407c2499dcbf73d420123996809366900ef785b2cbfda4f2f6acf2f1729e85f6f2b791b7
languageName: node
linkType: hard
@@ -17152,8 +17179,8 @@ __metadata:
linkType: soft
"@testing-library/dom@npm:^9.0.0":
- version: 9.3.3
- resolution: "@testing-library/dom@npm:9.3.3"
+ version: 9.3.4
+ resolution: "@testing-library/dom@npm:9.3.4"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/runtime": ^7.12.5
@@ -17163,7 +17190,7 @@ __metadata:
dom-accessibility-api: ^0.5.9
lz-string: ^1.5.0
pretty-format: ^27.0.2
- checksum: 34e0a564da7beb92aa9cc44a9080221e2412b1a132eb37be3d513fe6c58027674868deb9f86195756d98d15ba969a30fe00632a4e26e25df2a5a4f6ac0686e37
+ checksum: dfd6fb0d6c7b4dd716ba3c47309bc9541b4a55772cb61758b4f396b3785efe2dbc75dc63423545c039078c7ffcc5e4b8c67c2db1b6af4799580466036f70026f
languageName: node
linkType: hard
@@ -17289,15 +17316,15 @@ __metadata:
languageName: node
linkType: hard
-"@ts-morph/common@npm:~0.21.0":
- version: 0.21.0
- resolution: "@ts-morph/common@npm:0.21.0"
+"@ts-morph/common@npm:~0.22.0":
+ version: 0.22.0
+ resolution: "@ts-morph/common@npm:0.22.0"
dependencies:
- fast-glob: ^3.2.12
- minimatch: ^7.4.3
- mkdirp: ^2.1.6
+ fast-glob: ^3.3.2
+ minimatch: ^9.0.3
+ mkdirp: ^3.0.1
path-browserify: ^1.0.1
- checksum: c322e2a58608d7d924646b10ba9ad432b03e7b119788c9f0f270550bd5aca22947fcaa1c63f27e80898a50de3ed99fc8d9c23569c6a2f3f36c9307e35ceba3ed
+ checksum: e549facfff2a68eeef4e3e2c4183e7216a02b57e62cdfe60ca15d5fdee24770bd3b5b6d1a0388cfce7b4dfaeb0ebe31ffa40585e36b9fb7948aea8081fa73769
languageName: node
linkType: hard
@@ -18426,9 +18453,9 @@ __metadata:
linkType: hard
"@types/node@npm:^16.11.26, @types/node@npm:^16.7.10, @types/node@npm:^16.9.2":
- version: 16.18.72
- resolution: "@types/node@npm:16.18.72"
- checksum: c0f1748b20566417d3b777d11962f84500b4cb9c77ebb59c51f2882c3e5141bd4636709dc63fe2e45d6d6799fc4c5a98931abcb2dd3a5b107e448d76ae848320
+ version: 16.18.74
+ resolution: "@types/node@npm:16.18.74"
+ checksum: 33d8f157b51cb2f6907a7019e0bef0733f6ebd025f208863e6e6ea4721348902f2c7ac9eeaadff9f1e138927921e620c7f0a655475a298569d7551f2d28e35f3
languageName: node
linkType: hard
@@ -18776,12 +18803,12 @@ __metadata:
linkType: hard
"@types/recharts@npm:^1.8.14, @types/recharts@npm:^1.8.15":
- version: 1.8.28
- resolution: "@types/recharts@npm:1.8.28"
+ version: 1.8.29
+ resolution: "@types/recharts@npm:1.8.29"
dependencies:
"@types/d3-shape": ^1
"@types/react": "*"
- checksum: b334ed1b34123483a2f03dd4b13bdae3048a4a50b2a46b69e6580545ecd3fd57874a9818e5c2c1d8a98dc0bf8a1b6d45b4790d31fb5c395d7b7c6c268b716634
+ checksum: 091d018298d9c5e22b1a937e1229e721e2f6ac030fb73024717f6d20f3ff18575557560afd2247987f102f5981402b1fa1bf13362147aa0e89656ecc51ac3e2b
languageName: node
linkType: hard
@@ -19256,14 +19283,14 @@ __metadata:
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^6.12.0":
- version: 6.14.0
- resolution: "@typescript-eslint/eslint-plugin@npm:6.14.0"
+ version: 6.19.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:6.19.0"
dependencies:
"@eslint-community/regexpp": ^4.5.1
- "@typescript-eslint/scope-manager": 6.14.0
- "@typescript-eslint/type-utils": 6.14.0
- "@typescript-eslint/utils": 6.14.0
- "@typescript-eslint/visitor-keys": 6.14.0
+ "@typescript-eslint/scope-manager": 6.19.0
+ "@typescript-eslint/type-utils": 6.19.0
+ "@typescript-eslint/utils": 6.19.0
+ "@typescript-eslint/visitor-keys": 6.19.0
debug: ^4.3.4
graphemer: ^1.4.0
ignore: ^5.2.4
@@ -19276,25 +19303,25 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: ec688fd71b21576bfe0e4176889fddf3c13d8b07792461b84017d689ed11a9bffbf4d2ab61e9bdb254e43d2c1e159d5c2fc21bdfa6a6c2d64f9e1956a668fbe8
+ checksum: 9880567d52d4e6559e2343caeed68f856d593b42816b8f705cd98d5a5b46cc620e3bebaaf08bbc982061bba18e5be94d6c539c0c816e8772ddabba0ad4e9363e
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^6.7.2":
- version: 6.14.0
- resolution: "@typescript-eslint/parser@npm:6.14.0"
+ version: 6.19.0
+ resolution: "@typescript-eslint/parser@npm:6.19.0"
dependencies:
- "@typescript-eslint/scope-manager": 6.14.0
- "@typescript-eslint/types": 6.14.0
- "@typescript-eslint/typescript-estree": 6.14.0
- "@typescript-eslint/visitor-keys": 6.14.0
+ "@typescript-eslint/scope-manager": 6.19.0
+ "@typescript-eslint/types": 6.19.0
+ "@typescript-eslint/typescript-estree": 6.19.0
+ "@typescript-eslint/visitor-keys": 6.19.0
debug: ^4.3.4
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 5fbe8d7431654c14ba6c9782d3728026ad5c90e02c9c4319f45df972e653cf5c15ba320dce70cdffa9fb7ce4c4263c37585e7bc1c909d1252d0a599880963063
+ checksum: 0ac91ff83fdf693de4494b45be79f25803ea6ca3ee717e4f96785b7ffc1da0180adb0426b61bc6eff5666c8ef9ea58c50efbd4351ef9018c0050116cbd74a62b
languageName: node
linkType: hard
@@ -19308,22 +19335,22 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/scope-manager@npm:6.14.0"
+"@typescript-eslint/scope-manager@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/scope-manager@npm:6.19.0"
dependencies:
- "@typescript-eslint/types": 6.14.0
- "@typescript-eslint/visitor-keys": 6.14.0
- checksum: 0b577d42db925426a9838fe61703c226e18b697374fbe20cf9b93ba30fe58bf4a7f7f42491a4d24b7f3cc12d9a189fe3524c0e9b7708727e710d95b908250a14
+ "@typescript-eslint/types": 6.19.0
+ "@typescript-eslint/visitor-keys": 6.19.0
+ checksum: 47d9d1b70cd64f9d1bb717090850e0ff1a34e453c28b43fd0cecaea4db05cacebd60f5da55b35c4b3cc01491f02e9de358f82a0822b27c00e80e3d1a27de32d1
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/type-utils@npm:6.14.0"
+"@typescript-eslint/type-utils@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/type-utils@npm:6.19.0"
dependencies:
- "@typescript-eslint/typescript-estree": 6.14.0
- "@typescript-eslint/utils": 6.14.0
+ "@typescript-eslint/typescript-estree": 6.19.0
+ "@typescript-eslint/utils": 6.19.0
debug: ^4.3.4
ts-api-utils: ^1.0.1
peerDependencies:
@@ -19331,7 +19358,7 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 09988f25279598840673c41ba44b03756f2dfb31284ab72af97c170711a0f31e5c53d6b120aa83f31438565e82aae1a1ca4d1ed0de4890654dd6a6a33d88202c
+ checksum: a88f022617be636f43429a7c7c5cd2e0e29955e96d4a9fed7d03467dc4a432b1240a71009d62213604ddb3522be9694e6b78882ee805687cda107021d1ddb203
languageName: node
linkType: hard
@@ -19342,10 +19369,10 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/types@npm:6.14.0"
- checksum: 624e6c5227f596dcc9757348d09c5a09b846a62938b8b4409614cf8108013b64ed8b270c32e87ea8890dd09ed896b82e92872c3574dbf07dcda11a168d69dd1f
+"@typescript-eslint/types@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/types@npm:6.19.0"
+ checksum: 1371b5ba41c1d2879b3c2823ab01a30cf034e476ef53ff2a7f9e9a4a0056dfbbfecd3143031b05430aa6c749233cacbd01b72cea38a9ece1c6cf95a5cd43da6a
languageName: node
linkType: hard
@@ -19367,38 +19394,39 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/typescript-estree@npm:6.14.0"
+"@typescript-eslint/typescript-estree@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/typescript-estree@npm:6.19.0"
dependencies:
- "@typescript-eslint/types": 6.14.0
- "@typescript-eslint/visitor-keys": 6.14.0
+ "@typescript-eslint/types": 6.19.0
+ "@typescript-eslint/visitor-keys": 6.19.0
debug: ^4.3.4
globby: ^11.1.0
is-glob: ^4.0.3
+ minimatch: 9.0.3
semver: ^7.5.4
ts-api-utils: ^1.0.1
peerDependenciesMeta:
typescript:
optional: true
- checksum: 495d7616463685bfd8138ffa9fbc0a7f9130ff8a3f6f85775960b4f0a3fdc259ae53b104cdfe562b60310860b5a6c8387307790734555084aa087e3bb9c28a69
+ checksum: 919f9588840cdab7e0ef6471f4c35d602523b142b2cffeabe9171d6ce65eb7f41614d0cb17e008e0d8e796374821ab053ced35b84642c3b1d491987362f2fdb5
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/utils@npm:6.14.0"
+"@typescript-eslint/utils@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/utils@npm:6.19.0"
dependencies:
"@eslint-community/eslint-utils": ^4.4.0
"@types/json-schema": ^7.0.12
"@types/semver": ^7.5.0
- "@typescript-eslint/scope-manager": 6.14.0
- "@typescript-eslint/types": 6.14.0
- "@typescript-eslint/typescript-estree": 6.14.0
+ "@typescript-eslint/scope-manager": 6.19.0
+ "@typescript-eslint/types": 6.19.0
+ "@typescript-eslint/typescript-estree": 6.19.0
semver: ^7.5.4
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
- checksum: 36e8501cb85647947189f31017c36d6f6ac7ef0399fa0e18eb64f1b83e00f1e8ace1d9ac5015ef4d9c1b820179f1def8d61d7ea9e5d61433eb848cf5c49dc8b0
+ checksum: 05a26251a526232b08850b6c3327637213ef989453e353f3a8255433b74893a70d5c38369c528b762e853b7586d7830d728b372494e65f37770ecb05a88112d4
languageName: node
linkType: hard
@@ -19430,13 +19458,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:6.14.0":
- version: 6.14.0
- resolution: "@typescript-eslint/visitor-keys@npm:6.14.0"
+"@typescript-eslint/visitor-keys@npm:6.19.0":
+ version: 6.19.0
+ resolution: "@typescript-eslint/visitor-keys@npm:6.19.0"
dependencies:
- "@typescript-eslint/types": 6.14.0
+ "@typescript-eslint/types": 6.19.0
eslint-visitor-keys: ^3.4.1
- checksum: fc593c4e94d5739be7bd88e42313a301bc9806fad758b6a0a1bafd296ff41522be602caf4976beec84e363b0f56585bb98df3c157f70de984de721798501fd8a
+ checksum: 35b11143e1b55ecf01e0f513085df2cc83d0781f4a8354dc10f6ec3356f66b91a1ed8abadb6fb66af1c1746f9c874eabc8b5636882466e229cda5d6a39aada08
languageName: node
linkType: hard
@@ -23283,9 +23311,9 @@ __metadata:
linkType: hard
"core-js@npm:^3.26.0, core-js@npm:^3.6.5":
- version: 3.35.0
- resolution: "core-js@npm:3.35.0"
- checksum: 25c224aca3df012b98f08f13ccbd8171ef5852acd33fd5e58e106d27f5f0c97de2fdbc520f0b4364d26253caf2deb3e5d265310f57d2a66ae6cc922850e649f0
+ version: 3.35.1
+ resolution: "core-js@npm:3.35.1"
+ checksum: e246af6b634be3763ffe3ce6ac4601b4dc5b928006fb6c95e5d08ecd82a2413bf36f00ffe178b89c9a8e94000288933a78a9881b2c9498e6cf312b031013b952
languageName: node
linkType: hard
@@ -26968,16 +26996,16 @@ __metadata:
languageName: node
linkType: hard
-"fast-glob@npm:^3.2.11, fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9":
- version: 3.2.12
- resolution: "fast-glob@npm:3.2.12"
+"fast-glob@npm:^3.2.11, fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2":
+ version: 3.3.2
+ resolution: "fast-glob@npm:3.3.2"
dependencies:
"@nodelib/fs.stat": ^2.0.2
"@nodelib/fs.walk": ^1.2.3
glob-parent: ^5.1.2
merge2: ^1.3.0
micromatch: ^4.0.4
- checksum: 0b1990f6ce831c7e28c4d505edcdaad8e27e88ab9fa65eedadb730438cfc7cde4910d6c975d6b7b8dc8a73da4773702ebcfcd6e3518e73938bb1383badfe01c2
+ checksum: 900e4979f4dbc3313840078419245621259f349950411ca2fa445a2f9a1a6d98c3b5e7e0660c5ccd563aa61abe133a21765c6c0dec8e57da1ba71d8000b05ec1
languageName: node
linkType: hard
@@ -28444,23 +28472,7 @@ __metadata:
languageName: node
linkType: hard
-"graphiql@npm:3.0.10":
- version: 3.0.10
- resolution: "graphiql@npm:3.0.10"
- dependencies:
- "@graphiql/react": ^0.20.2
- "@graphiql/toolkit": ^0.9.1
- graphql-language-service: ^5.2.0
- markdown-it: ^12.2.0
- peerDependencies:
- graphql: ^15.5.0 || ^16.0.0
- react: ^16.8.0 || ^17 || ^18
- react-dom: ^16.8.0 || ^17 || ^18
- checksum: f85b5e82cd2280325dedb28d42580119df46b6724a913a571b7a8183c2bf23d4832edf45570d6c8a0af18ba576f50c9b39219a8537277cba626f0411e6ed55bb
- languageName: node
- linkType: hard
-
-"graphiql@npm:^3.0.6":
+"graphiql@npm:3.1.0, graphiql@npm:^3.0.6":
version: 3.1.0
resolution: "graphiql@npm:3.1.0"
dependencies:
@@ -30461,12 +30473,12 @@ __metadata:
linkType: hard
"isolated-vm@npm:^4.5.0":
- version: 4.6.0
- resolution: "isolated-vm@npm:4.6.0"
+ version: 4.7.2
+ resolution: "isolated-vm@npm:4.7.2"
dependencies:
node-gyp: latest
prebuild-install: ^7.1.1
- checksum: 011853d46bc934751012f5c1ed3eaba43dc4bd274672e59ff8e4c7eb0df668c93f3e0b91e3b4e812d2b8476c9ace218f34e7a3188b08b343409370e70044a874
+ checksum: 16f43f6413623dc7009a8bb9fa567fb30ffc151e21e9a7ae616f25626e750ba823527fb24e2e17408943c6bbbcc7235db89f41262d43a8d8155ad99e888b0760
languageName: node
linkType: hard
@@ -31328,9 +31340,9 @@ __metadata:
linkType: hard
"js-base64@npm:^3.6.0":
- version: 3.7.5
- resolution: "js-base64@npm:3.7.5"
- checksum: 67a78c8b1c47b73f1c6fba1957e9fe6fd9dc78ac93ac46cc2e43472dcb9cf150d126fb0e593192e88e0497354fa634d17d255add7cc6ee3c7b4d29870faa8e18
+ version: 3.7.6
+ resolution: "js-base64@npm:3.7.6"
+ checksum: 4e1e82443c22f3f8f24902b071ea824069a28a16a86c3d8706e8c0741cace92cfb4affd093f52d13981369e10df840e54df8d0a59ede6dd2204a1f0aa4b64deb
languageName: node
linkType: hard
@@ -31651,13 +31663,13 @@ __metadata:
linkType: hard
"json-schema-to-ts@npm:^2.6.2":
- version: 2.9.2
- resolution: "json-schema-to-ts@npm:2.9.2"
+ version: 2.12.0
+ resolution: "json-schema-to-ts@npm:2.12.0"
dependencies:
"@babel/runtime": ^7.18.3
"@types/json-schema": ^7.0.9
- ts-algebra: ^1.2.0
- checksum: 64bf7226511a3719075d28e715fbd203576088b6ebcf494d6c5ee2bcf5b24d6081fa0cfce22ce254ad8798b7044603db4e4d19779c6f5765285fb9ddaa0756ef
+ ts-algebra: ^1.2.2
+ checksum: 6dc4bc836591d888beb20e8bf45dfa3b75df4a331f18675bd2e39a2262e105e0dc86012031fff0be408499a07ae8bc30f5a879c24696189b2c30a34edd5fa72f
languageName: node
linkType: hard
@@ -33243,12 +33255,12 @@ __metadata:
languageName: node
linkType: hard
-"markdown-to-jsx@npm:^7.3.2":
- version: 7.3.2
- resolution: "markdown-to-jsx@npm:7.3.2"
+"markdown-to-jsx@npm:^7.4.0":
+ version: 7.4.0
+ resolution: "markdown-to-jsx@npm:7.4.0"
peerDependencies:
react: ">= 0.14.0"
- checksum: 8885c6343b71570b0a7ec16cd85a49b853a830234790ee7430e2517ea5d8d361ff138bd52147f650790f3e7b3a28a15c755fc16f8856dd01ddf09a6161782e06
+ checksum: 59959d14d7927ed8a97e42d39771e2b445b90fa098477fb6ab040f044d230517dc4a95ba38a4f924cfc965a96b32211d93def150a6184f0e51d2cefdc8cb415d
languageName: node
linkType: hard
@@ -34140,7 +34152,7 @@ __metadata:
languageName: node
linkType: hard
-"minimatch@npm:9.0.3, minimatch@npm:^9.0.1":
+"minimatch@npm:9.0.3, minimatch@npm:^9.0.1, minimatch@npm:^9.0.3":
version: 9.0.3
resolution: "minimatch@npm:9.0.3"
dependencies:
@@ -34388,12 +34400,12 @@ __metadata:
languageName: node
linkType: hard
-"mkdirp@npm:^2.1.6":
- version: 2.1.6
- resolution: "mkdirp@npm:2.1.6"
+"mkdirp@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "mkdirp@npm:3.0.1"
bin:
mkdirp: dist/cjs/src/bin.js
- checksum: 8a1d09ffac585e55f41c54f445051f5bc33a7de99b952bb04c576cafdf1a67bb4bae8cb93736f7da6838771fbf75bc630430a3a59e1252047d2278690bd150ee
+ checksum: 972deb188e8fb55547f1e58d66bd6b4a3623bf0c7137802582602d73e6480c1c2268dcbafbfb1be466e00cc7e56ac514d7fd9334b7cf33e3e2ab547c16f83a8d
languageName: node
linkType: hard
@@ -34550,8 +34562,8 @@ __metadata:
linkType: hard
"msw@npm:^2.0.0, msw@npm:^2.0.8":
- version: 2.1.2
- resolution: "msw@npm:2.1.2"
+ version: 2.1.3
+ resolution: "msw@npm:2.1.3"
dependencies:
"@bundled-es-modules/cookie": ^2.0.0
"@bundled-es-modules/js-levenshtein": ^2.0.1
@@ -34581,7 +34593,7 @@ __metadata:
optional: true
bin:
msw: cli/index.js
- checksum: 58b6e9ad480f5a3e7b7f6d32e9ea87a4b8b4940614991d8762f4b8a319f9d04fef8db4207bb427450f033cdade9495ef5b87dde91e26ded257c98e3544529cef
+ checksum: 0380a2c5c03608f066037bd76e543406a8c625cdc138bc5de220ec1831fe36cf3616246bdb3eaed96c96c7e967b2874975aff899c8e673d64a0182835e73bacb
languageName: node
linkType: hard
@@ -34703,7 +34715,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^3.3.6, nanoid@npm:^3.3.7":
+"nanoid@npm:^3.3.7":
version: 3.3.7
resolution: "nanoid@npm:3.3.7"
bin:
@@ -35699,7 +35711,7 @@ __metadata:
languageName: node
linkType: hard
-"openid-client@npm:^5.2.1, openid-client@npm:^5.3.0, openid-client@npm:^5.4.3":
+"openid-client@npm:^5.2.1, openid-client@npm:^5.3.0, openid-client@npm:^5.4.3, openid-client@npm:^5.5.0":
version: 5.6.4
resolution: "openid-client@npm:5.6.4"
dependencies:
@@ -36853,27 +36865,27 @@ __metadata:
languageName: node
linkType: hard
-"playwright-core@npm:1.41.0":
- version: 1.41.0
- resolution: "playwright-core@npm:1.41.0"
+"playwright-core@npm:1.41.1":
+ version: 1.41.1
+ resolution: "playwright-core@npm:1.41.1"
bin:
playwright-core: cli.js
- checksum: 14671265916a1fd0c71d94640de19c48bcce3f7dec35530f10e349e97030ea44ffa8ee518cbf811501e3ab2b74874aecf917e46bf40fea0570db1d4bea1fe7ac
+ checksum: c83446a560c6bd85f6f0cd586ff8c643b77e2005567386e12f85890936cc370673114b94cd883246018797cc1580e93b0296ade7d07275bb611b8962f5bb9693
languageName: node
linkType: hard
-"playwright@npm:1.41.0":
- version: 1.41.0
- resolution: "playwright@npm:1.41.0"
+"playwright@npm:1.41.1":
+ version: 1.41.1
+ resolution: "playwright@npm:1.41.1"
dependencies:
fsevents: 2.3.2
- playwright-core: 1.41.0
+ playwright-core: 1.41.1
dependenciesMeta:
fsevents:
optional: true
bin:
playwright: cli.js
- checksum: e7c32136911c58e06b964fe7d33f8b3d8f6a067ae5218662a0811dd6c90e007db1774eb7e161f4aa748d760f404f4c066b7b7303c2b617f7448b6ee4b86c9999
+ checksum: 3da7fb929abdec6adbdd8829f840580f5f210713214a8d230b130127f2270403eb2113c6c1418012221149707250fff896794c7c22c260dd09a92bf800227f31
languageName: node
linkType: hard
@@ -38608,15 +38620,15 @@ __metadata:
linkType: hard
"react-router-dom@npm:^6.3.0":
- version: 6.20.1
- resolution: "react-router-dom@npm:6.20.1"
+ version: 6.21.3
+ resolution: "react-router-dom@npm:6.21.3"
dependencies:
- "@remix-run/router": 1.13.1
- react-router: 6.20.1
+ "@remix-run/router": 1.14.2
+ react-router: 6.21.3
peerDependencies:
react: ">=16.8"
react-dom: ">=16.8"
- checksum: 137b12fd3c3fd2a9469367946353c8ccd4e31473c6ec650eeb2d9e9f256f64b031fafaecb2ae4dc47bbab817c8d089b1f07a0db74699df7d874850e511cd5380
+ checksum: bcf668aa1428ca3048d7675f1ae3fe983c8792357a0ed59a1414cb1d682227727aad7c44c4222c6774b8d01bf352478845f7f3f668ebfcaa177208ef64e10bdc
languageName: node
linkType: hard
@@ -38631,14 +38643,14 @@ __metadata:
languageName: node
linkType: hard
-"react-router@npm:6.20.1, react-router@npm:^6.3.0":
- version: 6.20.1
- resolution: "react-router@npm:6.20.1"
+"react-router@npm:6.21.3, react-router@npm:^6.3.0":
+ version: 6.21.3
+ resolution: "react-router@npm:6.21.3"
dependencies:
- "@remix-run/router": 1.13.1
+ "@remix-run/router": 1.14.2
peerDependencies:
react: ">=16.8"
- checksum: 046efa4b101c64de823f0c838948a50ad53f3ccdd7887604d93c1ccf19c4e797935cab602aa001d793544445412ebeb95c2c7f880e3e86ca447772db574789d7
+ checksum: 7e6297d5b67ae07d2e8564e036dbb15ebd706b41c22238940f47eee9b21ffb76d41336803c3b33435f1ebe210226577e32df3838bcbf2cd7c813fa357c0a4fac
languageName: node
linkType: hard
@@ -38789,8 +38801,8 @@ __metadata:
linkType: hard
"react-use@npm:^17.2.4, react-use@npm:^17.3.1, react-use@npm:^17.3.2, react-use@npm:^17.4.0":
- version: 17.4.3
- resolution: "react-use@npm:17.4.3"
+ version: 17.5.0
+ resolution: "react-use@npm:17.5.0"
dependencies:
"@types/js-cookie": ^2.2.6
"@xobotyi/scrollbar-width": ^1.9.5
@@ -38809,7 +38821,7 @@ __metadata:
peerDependencies:
react: "*"
react-dom: "*"
- checksum: efa54c795ca900902022096c4c87b2a8c2290fe1748f3b2bf4d31ad40bfa35c1520f67e3da5f0a227a6429256df7bca251d9323487652debc924de5208a9cedd
+ checksum: d3164db313f27aa701dcf87177861db6e19624ea7dd8bc81805352af7f6bf04072010b9776da4ac458d6bd318759ee69b12763d96098d83c75b7d66ffc689e3a
languageName: node
linkType: hard
@@ -42514,10 +42526,10 @@ __metadata:
languageName: node
linkType: hard
-"ts-algebra@npm:^1.2.0":
- version: 1.2.0
- resolution: "ts-algebra@npm:1.2.0"
- checksum: 471d3a049dbceadf2355f980e4d0a4cba413b50e66f0c8fb5eece876c238f7d2a270e1c85aa9ebd04349ae70335715f8e6d87338fd8cf755d12e285e884b3d91
+"ts-algebra@npm:^1.2.2":
+ version: 1.2.2
+ resolution: "ts-algebra@npm:1.2.2"
+ checksum: eea0c08fba10c4a758086079c575a32c4c050f50087e06fcc1ccd53b045bdf7bdb0ab9597a52a241a714f058ff047cedbddcb1539de5e66bb424aa5b33c677a1
languageName: node
linkType: hard
@@ -42560,13 +42572,13 @@ __metadata:
languageName: node
linkType: hard
-"ts-morph@npm:^20.0.0":
- version: 20.0.0
- resolution: "ts-morph@npm:20.0.0"
+"ts-morph@npm:^21.0.0":
+ version: 21.0.1
+ resolution: "ts-morph@npm:21.0.1"
dependencies:
- "@ts-morph/common": ~0.21.0
+ "@ts-morph/common": ~0.22.0
code-block-writer: ^12.0.0
- checksum: 8a96d72a26e4e3c4139c581834364a97207f78a5878f70aa6f58787c0f4003a9386a64f43b814bac7bf028e572ef8660939f56844641b05bfaf7ae7437be9011
+ checksum: f8e6acd4cdb2842af47ccf4e8900dc3f230f20c3b0d28e1e8b58c395b0a16d7b3e03ef56f29da3fdb861c50e22eb52524e0fc4bfca0fde8448f81b8f4f6aa157
languageName: node
linkType: hard
@@ -44619,7 +44631,22 @@ __metadata:
languageName: node
linkType: hard
-"ws@npm:*, ws@npm:8.14.2, ws@npm:^8.11.0, ws@npm:^8.12.0, ws@npm:^8.13.0, ws@npm:^8.14.2, ws@npm:^8.8.0":
+"ws@npm:*, ws@npm:^8.11.0, ws@npm:^8.12.0, ws@npm:^8.13.0, ws@npm:^8.14.2, ws@npm:^8.8.0":
+ version: 8.16.0
+ resolution: "ws@npm:8.16.0"
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ">=5.0.2"
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ checksum: feb3eecd2bae82fa8a8beef800290ce437d8b8063bdc69712725f21aef77c49cb2ff45c6e5e7fce622248f9c7abaee506bae0a9064067ffd6935460c7357321b
+ languageName: node
+ linkType: hard
+
+"ws@npm:8.14.2":
version: 8.14.2
resolution: "ws@npm:8.14.2"
peerDependencies: