diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 3f90cc07d..eeb1f7dea 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -77916,6 +77916,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -150401,10 +150463,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index c025743bf..684426cde 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -57029,6 +57029,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -109765,10 +109806,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 155fb6a3f..aed6965ae 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -77827,6 +77827,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -149759,10 +149821,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 9cf621596..d5467079b 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -56954,6 +56954,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -109292,10 +109333,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index d9ded37b0..e6e89a1fc 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -78223,6 +78223,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -151437,10 +151499,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 8ecddbab5..7127c1589 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -57217,6 +57217,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -110486,10 +110527,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index b0aa6549b..b6a0b56e2 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -417794,10 +417794,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -722169,6 +722169,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 5665f1d61..2cf19df48 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -83619,10 +83619,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -109104,6 +109104,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - *341 + - *342 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index ce73ab0e9..33ab1f060 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -409308,10 +409308,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -707876,6 +707876,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index f88381e79..f13a5f305 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -83170,10 +83170,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -108547,6 +108547,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - *341 + - *342 + responses: + '200': + description: Response + co{"code":"deadline_exceeded","msg":"operation timed out"}