@@ -19076,7 +19076,7 @@ export type components = {
19076
19076
* @description The execution scope of the vulnerable dependency.
19077
19077
* @enum {string|null}
19078
19078
*/
19079
- readonly scope?: "development" | "runtime";
19079
+ readonly scope?: "development" | "runtime" | null ;
19080
19080
};
19081
19081
readonly security_advisory: components["schemas"]["dependabot-alert-security-advisory"];
19082
19082
readonly security_vulnerability: components["schemas"]["dependabot-alert-security-vulnerability"];
@@ -19090,7 +19090,7 @@ export type components = {
19090
19090
* @description The reason that the alert was dismissed.
19091
19091
* @enum {string|null}
19092
19092
*/
19093
- readonly dismissed_reason: "fix_started" | "inaccurate" | "no_bandwidth" | "not_used" | "tolerable_risk";
19093
+ readonly dismissed_reason: "fix_started" | "inaccurate" | "no_bandwidth" | "not_used" | "tolerable_risk" | null ;
19094
19094
/** @description An optional comment associated with the alert's dismissal. */
19095
19095
readonly dismissed_comment: string | null;
19096
19096
readonly fixed_at: components["schemas"]["alert-fixed-at"];
@@ -19111,7 +19111,7 @@ export type components = {
19111
19111
* @description **Required when the `state` is `resolved`.** The reason for resolving the alert.
19112
19112
* @enum {string|null}
19113
19113
*/
19114
- readonly "secret-scanning-alert-resolution": "false_positive" | "wont_fix" | "revoked" | "used_in_tests";
19114
+ readonly "secret-scanning-alert-resolution": "false_positive" | "wont_fix" | "revoked" | "used_in_tests" | null ;
19115
19115
readonly "organization-secret-scanning-alert": {
19116
19116
readonly number?: components["schemas"]["alert-number"];
19117
19117
readonly created_at?: components["schemas"]["alert-created-at"];
@@ -19379,7 +19379,7 @@ export type components = {
19379
19379
* @example not_planned
19380
19380
* @enum {string|null}
19381
19381
*/
19382
- readonly state_reason?: "completed" | "reopened" | "not_planned";
19382
+ readonly state_reason?: "completed" | "reopened" | "not_planned" | null ;
19383
19383
/**
19384
19384
* @description Title of the issue
19385
19385
* @example Widget creation fails in Safari on OS X 10.8
@@ -20920,12 +20920,12 @@ export type components = {
20920
20920
* @description The severity of the alert.
20921
20921
* @enum {string|null}
20922
20922
*/
20923
- readonly severity?: "none" | "note" | "warning" | "error";
20923
+ readonly severity?: "none" | "note" | "warning" | "error" | null ;
20924
20924
/**
20925
20925
* @description The security severity of the alert.
20926
20926
* @enum {string|null}
20927
20927
*/
20928
- readonly security_severity_level?: "low" | "medium" | "high" | "critical";
20928
+ readonly security_severity_level?: "low" | "medium" | "high" | "critical" | null ;
20929
20929
/** @description A short description of the rule used to detect the alert. */
20930
20930
readonly description?: string;
20931
20931
};
@@ -20957,7 +20957,7 @@ export type components = {
20957
20957
* @description A classification of the file. For example to identify it as generated.
20958
20958
* @enum {string|null}
20959
20959
*/
20960
- readonly "code-scanning-alert-classification": "source" | "generated" | "test" | "library";
20960
+ readonly "code-scanning-alert-classification": "source" | "generated" | "test" | "library" | null ;
20961
20961
readonly "code-scanning-alert-instance": {
20962
20962
readonly ref?: components["schemas"]["code-scanning-ref"];
20963
20963
readonly analysis_key?: components["schemas"]["code-scanning-analysis-analysis-key"];
@@ -21032,7 +21032,7 @@ export type components = {
21032
21032
* @example ready
21033
21033
* @enum {string|null}
21034
21034
*/
21035
- readonly prebuild_availability: "none" | "ready" | "in_progress";
21035
+ readonly prebuild_availability: "none" | "ready" | "in_progress" | null ;
21036
21036
} | null;
21037
21037
/**
21038
21038
* Codespace
@@ -22235,7 +22235,7 @@ export type components = {
22235
22235
* @example org_actors
22236
22236
* @enum {string|null}
22237
22237
*/
22238
- readonly values_editable_by?: "org_actors" | "org_and_repo_actors";
22238
+ readonly values_editable_by?: "org_actors" | "org_and_repo_actors" | null ;
22239
22239
};
22240
22240
/**
22241
22241
* Custom Property Value
@@ -23533,7 +23533,7 @@ export type components = {
23533
23533
* @description The severity of the advisory.
23534
23534
* @enum {string|null}
23535
23535
*/
23536
- readonly severity: "critical" | "high" | "medium" | "low";
23536
+ readonly severity: "critical" | "high" | "medium" | "low" | null ;
23537
23537
/** @description The author of the advisory. */
23538
23538
readonly author: components["schemas"]["simple-user"] | null;
23539
23539
/** @description The publisher of the advisory. */
@@ -24695,7 +24695,7 @@ export type components = {
24695
24695
* @example success
24696
24696
* @enum {string|null}
24697
24697
*/
24698
- readonly conclusion: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required";
24698
+ readonly conclusion: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required" | null ;
24699
24699
/**
24700
24700
* Format: date-time
24701
24701
* @description The time that the job created, in ISO 8601 format.
@@ -26031,7 +26031,7 @@ export type components = {
26031
26031
* @example neutral
26032
26032
* @enum {string|null}
26033
26033
*/
26034
- readonly conclusion: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required";
26034
+ readonly conclusion: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required" | null ;
26035
26035
/**
26036
26036
* Format: date-time
26037
26037
* @example 2018-05-04T01:14:52Z
@@ -26161,7 +26161,7 @@ export type components = {
26161
26161
* @example completed
26162
26162
* @enum {string|null}
26163
26163
*/
26164
- readonly status: "queued" | "in_progress" | "completed" | "waiting" | "requested" | "pending";
26164
+ readonly status: "queued" | "in_progress" | "completed" | "waiting" | "requested" | "pending" | null ;
26165
26165
/**
26166
26166
* @example neutral
26167
26167
* @enum {string|null}
@@ -26225,12 +26225,12 @@ export type components = {
26225
26225
* @description The severity of the alert.
26226
26226
* @enum {string|null}
26227
26227
*/
26228
- readonly severity?: "none" | "note" | "warning" | "error";
26228
+ readonly severity?: "none" | "note" | "warning" | "error" | null ;
26229
26229
/**
26230
26230
* @description The security severity of the alert.
26231
26231
* @enum {string|null}
26232
26232
*/
26233
- readonly security_severity_level?: "low" | "medium" | "high" | "critical";
26233
+ readonly security_severity_level?: "low" | "medium" | "high" | "critical" | null ;
26234
26234
/** @description A short description of the rule used to detect the alert. */
26235
26235
readonly description?: string;
26236
26236
/** @description description of the rule used to detect the alert. */
@@ -26382,7 +26382,7 @@ export type components = {
26382
26382
* @description The frequency of the periodic analysis.
26383
26383
* @enum {string|null}
26384
26384
*/
26385
- readonly schedule?: "weekly";
26385
+ readonly schedule?: "weekly" | null ;
26386
26386
};
26387
26387
/** @description Configuration for code scanning default setup. */
26388
26388
readonly "code-scanning-default-setup-update": {
@@ -26523,7 +26523,7 @@ export type components = {
26523
26523
* @example ready
26524
26524
* @enum {string|null}
26525
26525
*/
26526
- readonly prebuild_availability: "none" | "ready" | "in_progress";
26526
+ readonly prebuild_availability: "none" | "ready" | "in_progress" | null ;
26527
26527
};
26528
26528
/**
26529
26529
* Codespaces Permissions Check
@@ -27376,7 +27376,7 @@ export type components = {
27376
27376
* @description The execution scope of the vulnerable dependency.
27377
27377
* @enum {string|null}
27378
27378
*/
27379
- readonly scope?: "development" | "runtime";
27379
+ readonly scope?: "development" | "runtime" | null ;
27380
27380
};
27381
27381
readonly security_advisory: components["schemas"]["dependabot-alert-security-advisory"];
27382
27382
readonly security_vulnerability: components["schemas"]["dependabot-alert-security-vulnerability"];
@@ -27390,7 +27390,7 @@ export type components = {
27390
27390
* @description The reason that the alert was dismissed.
27391
27391
* @enum {string|null}
27392
27392
*/
27393
- readonly dismissed_reason: "fix_started" | "inaccurate" | "no_bandwidth" | "not_used" | "tolerable_risk";
27393
+ readonly dismissed_reason: "fix_started" | "inaccurate" | "no_bandwidth" | "not_used" | "tolerable_risk" | null ;
27394
27394
/** @description An optional comment associated with the alert's dismissal. */
27395
27395
readonly dismissed_comment: string | null;
27396
27396
readonly fixed_at: components["schemas"]["alert-fixed-at"];
@@ -28332,7 +28332,7 @@ export type components = {
28332
28332
* @example not_planned
28333
28333
* @enum {string|null}
28334
28334
*/
28335
- readonly state_reason?: "completed" | "reopened" | "not_planned";
28335
+ readonly state_reason?: "completed" | "reopened" | "not_planned" | null ;
28336
28336
/**
28337
28337
* @description Title of the issue
28338
28338
* @example Widget creation fails in Safari on OS X 10.8
@@ -29148,7 +29148,7 @@ export type components = {
29148
29148
* @default RIGHT
29149
29149
* @enum {string|null}
29150
29150
*/
29151
- readonly start_side: "LEFT" | "RIGHT";
29151
+ readonly start_side: "LEFT" | "RIGHT" | null ;
29152
29152
/**
29153
29153
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
29154
29154
* @example 2
@@ -29420,7 +29420,7 @@ export type components = {
29420
29420
* @example built
29421
29421
* @enum {string|null}
29422
29422
*/
29423
- readonly status: "built" | "building" | "errored";
29423
+ readonly status: "built" | "building" | "errored" | null ;
29424
29424
/**
29425
29425
* @description The Pages site's custom domain
29426
29426
* @example example.com
@@ -29431,7 +29431,7 @@ export type components = {
29431
29431
* @example pending
29432
29432
* @enum {string|null}
29433
29433
*/
29434
- readonly protected_domain_state?: "pending" | "verified" | "unverified";
29434
+ readonly protected_domain_state?: "pending" | "verified" | "unverified" | null ;
29435
29435
/**
29436
29436
* Format: date-time
29437
29437
* @description The timestamp when a pending domain becomes unverified.
@@ -29454,7 +29454,7 @@ export type components = {
29454
29454
* @example legacy
29455
29455
* @enum {string|null}
29456
29456
*/
29457
- readonly build_type?: "legacy" | "workflow";
29457
+ readonly build_type?: "legacy" | "workflow" | null ;
29458
29458
readonly source?: components["schemas"]["pages-source-hash"];
29459
29459
/**
29460
29460
* @description Whether the GitHub Pages site is publicly visible. If set to `true`, the site is accessible to anyone on the internet. If set to `false`, the site will only be accessible to users who have at least `read` access to the repository that published the site.
@@ -30255,7 +30255,7 @@ export type components = {
30255
30255
* @default RIGHT
30256
30256
* @enum {string|null}
30257
30257
*/
30258
- readonly start_side: "LEFT" | "RIGHT";
30258
+ readonly start_side: "LEFT" | "RIGHT" | null ;
30259
30259
/**
30260
30260
* @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
30261
30261
* @example 2
@@ -30649,7 +30649,7 @@ export type components = {
30649
30649
* @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
30650
30650
* @enum {string|null}
30651
30651
*/
30652
- readonly severity?: "critical" | "high" | "medium" | "low";
30652
+ readonly severity?: "critical" | "high" | "medium" | "low" | null ;
30653
30653
/** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
30654
30654
readonly cvss_vector_string?: string | null;
30655
30655
/**
@@ -30684,7 +30684,7 @@ export type components = {
30684
30684
* @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
30685
30685
* @enum {string|null}
30686
30686
*/
30687
- readonly severity?: "critical" | "high" | "medium" | "low";
30687
+ readonly severity?: "critical" | "high" | "medium" | "low" | null ;
30688
30688
/** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
30689
30689
readonly cvss_vector_string?: string | null;
30690
30690
/**
@@ -30727,7 +30727,7 @@ export type components = {
30727
30727
* @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
30728
30728
* @enum {string|null}
30729
30729
*/
30730
- readonly severity?: "critical" | "high" | "medium" | "low";
30730
+ readonly severity?: "critical" | "high" | "medium" | "low" | null ;
30731
30731
/** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
30732
30732
readonly cvss_vector_string?: string | null;
30733
30733
/**
@@ -32614,7 +32614,7 @@ export type components = {
32614
32614
* @example neutral
32615
32615
* @enum {string|null}
32616
32616
*/
32617
- readonly conclusion?: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required" | "stale" | "startup_failure";
32617
+ readonly conclusion?: "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required" | "stale" | "startup_failure" | null ;
32618
32618
/** Format: date-time */
32619
32619
readonly created_at?: string;
32620
32620
/** @example master */
@@ -32656,7 +32656,7 @@ export type components = {
32656
32656
* @example neutral
32657
32657
* @enum {string|null}
32658
32658
*/
32659
- readonly conclusion: "waiting" | "pending" | "startup_failure" | "stale" | "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required";
32659
+ readonly conclusion: "waiting" | "pending" | "startup_failure" | "stale" | "success" | "failure" | "neutral" | "cancelled" | "skipped" | "timed_out" | "action_required" | null ;
32660
32660
readonly deployment?: components["schemas"]["deployment-simple"];
32661
32661
/** @example https://example.com */
32662
32662
readonly details_url: string;
@@ -33022,7 +33022,7 @@ export type components = {
33022
33022
* @example resolved
33023
33023
* @enum {string|null}
33024
33024
*/
33025
- readonly state_reason: "resolved" | "outdated" | "duplicate" | "reopened";
33025
+ readonly state_reason: "resolved" | "outdated" | "duplicate" | "reopened" | null ;
33026
33026
readonly timeline_url?: string;
33027
33027
readonly title: string;
33028
33028
/** Format: date-time */
@@ -37053,7 +37053,7 @@ export type components = {
37053
37053
* @description The reason for resolving the alert.
37054
37054
* @enum {string|null}
37055
37055
*/
37056
- readonly "secret-scanning-alert-resolution-webhook": "false_positive" | "wont_fix" | "revoked" | "used_in_tests" | "pattern_deleted" | "pattern_edited";
37056
+ readonly "secret-scanning-alert-resolution-webhook": "false_positive" | "wont_fix" | "revoked" | "used_in_tests" | "pattern_deleted" | "pattern_edited" | null ;
37057
37057
readonly "secret-scanning-alert-webhook": {
37058
37058
readonly number?: components["schemas"]["alert-number"];
37059
37059
readonly created_at?: components["schemas"]["alert-created-at"];
@@ -82078,7 +82078,7 @@ export type components = {
82078
82078
/** Format: uri */
82079
82079
readonly check_suite_url: string;
82080
82080
/** @enum {string|null} */
82081
- readonly conclusion: "action_required" | "cancelled" | "failure" | "neutral" | "skipped" | "stale" | "success" | "timed_out";
82081
+ readonly conclusion: "action_required" | "cancelled" | "failure" | "neutral" | "skipped" | "stale" | "success" | "timed_out" | null ;
82082
82082
/** Format: date-time */
82083
82083
readonly created_at: string;
82084
82084
readonly event: string;
@@ -82531,7 +82531,7 @@ export type components = {
82531
82531
/** Format: uri */
82532
82532
readonly check_suite_url: string;
82533
82533
/** @enum {string|null} */
82534
- readonly conclusion: "action_required" | "cancelled" | "failure" | "neutral" | "skipped" | "stale" | "success" | "timed_out";
82534
+ readonly conclusion: "action_required" | "cancelled" | "failure" | "neutral" | "skipped" | "stale" | "success" | "timed_out" | null ;
82535
82535
/** Format: date-time */
82536
82536
readonly created_at: string;
82537
82537
readonly event: string;
@@ -104716,7 +104716,7 @@ export interface operations {
104716
104716
* @example not_planned
104717
104717
* @enum {string|null}
104718
104718
*/
104719
- readonly state_reason?: "completed" | "not_planned" | "reopened";
104719
+ readonly state_reason?: "completed" | "not_planned" | "reopened" | null ;
104720
104720
readonly milestone?: (string | number) | null;
104721
104721
/** @description Labels to associate with this issue. Pass one or more labels to _replace_ the set of labels on this issue. Send an empty array (`[]`) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped. */
104722
104722
readonly labels?: readonly (string | {
0 commit comments