Skip to content

Commit

Permalink
chore: regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
mnahkies committed Apr 21, 2024
1 parent 4ef18e1 commit d8c47c9
Show file tree
Hide file tree
Showing 10 changed files with 61,485 additions and 0 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ export type t_actions_secret = {
updated_at: string
}

export type t_actions_set_default_workflow_permissions = {
can_approve_pull_request_reviews?: t_actions_can_approve_pull_request_reviews
default_workflow_permissions?: t_actions_default_workflow_permissions
}

export type t_actions_variable = {
created_at: string
name: string
Expand Down Expand Up @@ -915,6 +920,21 @@ export type t_code_scanning_default_setup = {
updated_at?: string | null
}

export type t_code_scanning_default_setup_update = {
languages?: (
| "c-cpp"
| "csharp"
| "go"
| "java-kotlin"
| "javascript-typescript"
| "python"
| "ruby"
| "swift"
)[]
query_suite?: "default" | "extended"
state?: "configured" | "not-configured"
}

export type t_code_scanning_default_setup_update_response = {
run_id?: number
run_url?: string
Expand Down Expand Up @@ -1731,6 +1751,15 @@ export type t_deployment_branch_policy = {
type?: "branch" | "tag"
}

export type t_deployment_branch_policy_name_pattern = {
name: string
}

export type t_deployment_branch_policy_name_pattern_with_type = {
name: string
type?: "branch" | "tag"
}

export type t_deployment_branch_policy_settings = {
custom_branch_policies: boolean
protected_branches: boolean
Expand Down Expand Up @@ -2570,6 +2599,11 @@ export type t_interaction_group =
| "contributors_only"
| "collaborators_only"

export type t_interaction_limit = {
expiry?: t_interaction_expiry
limit: t_interaction_group
}

export type t_interaction_limit_response = {
expires_at: string
limit: t_interaction_group
Expand Down Expand Up @@ -4220,6 +4254,26 @@ export type t_private_user = {
url: string
}

export type t_private_vulnerability_report_create = {
cvss_vector_string?: string | null
cwe_ids?: string[] | null
description: string
severity?: "critical" | "high" | "medium" | "low" | null
start_private_fork?: boolean
summary: string
vulnerabilities?:
| {
package: {
ecosystem: t_security_advisory_ecosystems
name?: string | null
}
patched_versions?: string | null
vulnerable_functions?: string[] | null
vulnerable_version_range?: string | null
}[]
| null
}

export type t_project = {
body: string | null
columns_url: string
Expand Down Expand Up @@ -5326,12 +5380,64 @@ export type t_repository_advisory = {
readonly withdrawn_at: string | null
}

export type t_repository_advisory_create = {
credits?:
| {
login: string
type: t_security_advisory_credit_types
}[]
| null
cve_id?: string | null
cvss_vector_string?: string | null
cwe_ids?: string[] | null
description: string
severity?: "critical" | "high" | "medium" | "low" | null
start_private_fork?: boolean
summary: string
vulnerabilities: {
package: {
ecosystem: t_security_advisory_ecosystems
name?: string | null
}
patched_versions?: string | null
vulnerable_functions?: string[] | null
vulnerable_version_range?: string | null
}[]
}

export type t_repository_advisory_credit = {
state: "accepted" | "declined" | "pending"
type: t_security_advisory_credit_types
user: t_simple_user
}

export type t_repository_advisory_update = {
collaborating_teams?: string[] | null
collaborating_users?: string[] | null
credits?:
| {
login: string
type: t_security_advisory_credit_types
}[]
| null
cve_id?: string | null
cvss_vector_string?: string | null
cwe_ids?: string[] | null
description?: string
severity?: "critical" | "high" | "medium" | "low" | null
state?: "published" | "closed" | "draft"
summary?: string
vulnerabilities?: {
package: {
ecosystem: t_security_advisory_ecosystems
name?: string | null
}
patched_versions?: string | null
vulnerable_functions?: string[] | null
vulnerable_version_range?: string | null
}[]
}

export type t_repository_advisory_vulnerability = {
package: {
ecosystem: t_security_advisory_ecosystems
Expand Down Expand Up @@ -6164,6 +6270,27 @@ export type t_simple_user = {
url: string
}

export type t_snapshot = {
detector: {
name: string
url: string
version: string
}
job: {
correlator: string
html_url?: string
id: string
}
manifests?: {
[key: string]: t_manifest | undefined
}
metadata?: t_metadata
ref: string
scanned: string
sha: string
version: number
}

export type t_social_account = {
provider: string
url: string
Expand Down
Loading

0 comments on commit d8c47c9

Please sign in to comment.