@@ -40001,7 +40001,7 @@ export type components = {
40001
40001
readonly created_at: string;
40002
40002
/** @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. */
40003
40003
readonly dismissed_at: string | null;
40004
- readonly dismissed_by: Record<string, never>;
40004
+ readonly dismissed_by: Record<string, never> | null ;
40005
40005
/** @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`. */
40006
40006
readonly dismissed_reason: string | null;
40007
40007
/**
@@ -41020,7 +41020,7 @@ export type components = {
41020
41020
readonly display_title: string;
41021
41021
readonly event: string;
41022
41022
readonly head_branch: string;
41023
- readonly head_commit?: Record<string, never>;
41023
+ readonly head_commit?: Record<string, never> | null ;
41024
41024
readonly head_repository?: {
41025
41025
readonly archive_url?: string;
41026
41026
readonly assignees_url?: string;
@@ -41323,7 +41323,7 @@ export type components = {
41323
41323
readonly created_at: string;
41324
41324
readonly event: string;
41325
41325
readonly head_branch: string;
41326
- readonly head_commit?: Record<string, never>;
41326
+ readonly head_commit?: Record<string, never> | null ;
41327
41327
readonly head_repository?: {
41328
41328
readonly archive_url?: string;
41329
41329
readonly assignees_url?: string;
@@ -41666,7 +41666,7 @@ export type components = {
41666
41666
readonly created_at: string;
41667
41667
readonly event: string;
41668
41668
readonly head_branch: string;
41669
- readonly head_commit?: Record<string, never>;
41669
+ readonly head_commit?: Record<string, never> | null ;
41670
41670
readonly head_repository?: {
41671
41671
readonly archive_url?: string;
41672
41672
readonly assignees_url?: string;
@@ -43136,7 +43136,7 @@ export type components = {
43136
43136
readonly labels_url?: string;
43137
43137
readonly language?: unknown;
43138
43138
readonly languages_url?: string;
43139
- readonly license?: Record<string, never>;
43139
+ readonly license?: Record<string, never> | null ;
43140
43140
readonly merges_url?: string;
43141
43141
readonly milestones_url?: string;
43142
43142
readonly mirror_url?: unknown;
@@ -43929,7 +43929,7 @@ export type components = {
43929
43929
/** Format: uri */
43930
43930
readonly url?: string;
43931
43931
} | null;
43932
- readonly assignees?: readonly Record<string, never>[];
43932
+ readonly assignees?: readonly ( Record<string, never> | null) [];
43933
43933
readonly author_association?: string;
43934
43934
readonly body?: string | null;
43935
43935
readonly closed_at?: string | null;
@@ -43956,10 +43956,10 @@ export type components = {
43956
43956
}[];
43957
43957
readonly labels_url?: string;
43958
43958
readonly locked: boolean;
43959
- readonly milestone?: Record<string, never>;
43959
+ readonly milestone?: Record<string, never> | null ;
43960
43960
readonly node_id?: string;
43961
43961
readonly number?: number;
43962
- readonly performed_via_github_app?: Record<string, never>;
43962
+ readonly performed_via_github_app?: Record<string, never> | null ;
43963
43963
readonly reactions?: {
43964
43964
readonly "+1"?: number;
43965
43965
readonly "-1"?: number;
@@ -44461,7 +44461,7 @@ export type components = {
44461
44461
/** Format: uri */
44462
44462
readonly url?: string;
44463
44463
} | null;
44464
- readonly assignees?: readonly Record<string, never>[];
44464
+ readonly assignees?: readonly ( Record<string, never> | null) [];
44465
44465
readonly author_association?: string;
44466
44466
readonly body?: string | null;
44467
44467
readonly closed_at?: string | null;
@@ -44488,10 +44488,10 @@ export type components = {
44488
44488
}[];
44489
44489
readonly labels_url?: string;
44490
44490
readonly locked: boolean;
44491
- readonly milestone?: Record<string, never>;
44491
+ readonly milestone?: Record<string, never> | null ;
44492
44492
readonly node_id?: string;
44493
44493
readonly number?: number;
44494
- readonly performed_via_github_app?: Record<string, never>;
44494
+ readonly performed_via_github_app?: Record<string, never> | null ;
44495
44495
readonly reactions?: {
44496
44496
readonly "+1"?: number;
44497
44497
readonly "-1"?: number;
@@ -44994,7 +44994,7 @@ export type components = {
44994
44994
/** Format: uri */
44995
44995
readonly url?: string;
44996
44996
} | null;
44997
- readonly assignees?: readonly Record<string, never>[];
44997
+ readonly assignees?: readonly ( Record<string, never> | null) [];
44998
44998
readonly author_association?: string;
44999
44999
readonly body?: string | null;
45000
45000
readonly closed_at?: string | null;
@@ -45021,10 +45021,10 @@ export type components = {
45021
45021
}[];
45022
45022
readonly labels_url?: string;
45023
45023
readonly locked: boolean;
45024
- readonly milestone?: Record<string, never>;
45024
+ readonly milestone?: Record<string, never> | null ;
45025
45025
readonly node_id?: string;
45026
45026
readonly number?: number;
45027
- readonly performed_via_github_app?: Record<string, never>;
45027
+ readonly performed_via_github_app?: Record<string, never> | null ;
45028
45028
readonly reactions?: {
45029
45029
readonly "+1"?: number;
45030
45030
readonly "-1"?: number;
@@ -45506,8 +45506,8 @@ export type components = {
45506
45506
} | null;
45507
45507
} & {
45508
45508
readonly active_lock_reason?: string | null;
45509
- readonly assignee?: Record<string, never>;
45510
- readonly assignees?: readonly Record<string, never>[];
45509
+ readonly assignee?: Record<string, never> | null ;
45510
+ readonly assignees?: readonly ( Record<string, never> | null) [];
45511
45511
readonly author_association?: string;
45512
45512
readonly body?: string | null;
45513
45513
readonly closed_at: string | null;
@@ -45517,13 +45517,13 @@ export type components = {
45517
45517
readonly events_url?: string;
45518
45518
readonly html_url?: string;
45519
45519
readonly id?: number;
45520
- readonly labels?: readonly Record<string, never>[];
45520
+ readonly labels?: readonly ( Record<string, never> | null) [];
45521
45521
readonly labels_url?: string;
45522
45522
readonly locked?: boolean;
45523
- readonly milestone?: Record<string, never>;
45523
+ readonly milestone?: Record<string, never> | null ;
45524
45524
readonly node_id?: string;
45525
45525
readonly number?: number;
45526
- readonly performed_via_github_app?: Record<string, never>;
45526
+ readonly performed_via_github_app?: Record<string, never> | null ;
45527
45527
readonly reactions?: {
45528
45528
readonly "+1"?: number;
45529
45529
readonly "-1"?: number;
@@ -51485,8 +51485,8 @@ export type components = {
51485
51485
readonly body?: string | Record<string, never>;
51486
51486
readonly body_html?: string;
51487
51487
readonly container_metadata?: {
51488
- readonly labels?: Record<string, never>;
51489
- readonly manifest?: Record<string, never>;
51488
+ readonly labels?: Record<string, never> | null ;
51489
+ readonly manifest?: Record<string, never> | null ;
51490
51490
readonly tag?: {
51491
51491
readonly digest?: string;
51492
51492
readonly name?: string;
@@ -51511,19 +51511,19 @@ export type components = {
51511
51511
readonly name?: string;
51512
51512
readonly version?: string;
51513
51513
readonly npm_user?: string;
51514
- readonly author?: Record<string, never>;
51515
- readonly bugs?: Record<string, never>;
51514
+ readonly author?: Record<string, never> | null ;
51515
+ readonly bugs?: Record<string, never> | null ;
51516
51516
readonly dependencies?: Record<string, never>;
51517
51517
readonly dev_dependencies?: Record<string, never>;
51518
51518
readonly peer_dependencies?: Record<string, never>;
51519
51519
readonly optional_dependencies?: Record<string, never>;
51520
51520
readonly description?: string;
51521
- readonly dist?: Record<string, never>;
51521
+ readonly dist?: Record<string, never> | null ;
51522
51522
readonly git_head?: string;
51523
51523
readonly homepage?: string;
51524
51524
readonly license?: string;
51525
51525
readonly main?: string;
51526
- readonly repository?: Record<string, never>;
51526
+ readonly repository?: Record<string, never> | null ;
51527
51527
readonly scripts?: Record<string, never>;
51528
51528
readonly id?: string;
51529
51529
readonly node_version?: string;
@@ -51536,7 +51536,7 @@ export type components = {
51536
51536
readonly files?: readonly string[];
51537
51537
readonly bin?: Record<string, never>;
51538
51538
readonly man?: Record<string, never>;
51539
- readonly directories?: Record<string, never>;
51539
+ readonly directories?: Record<string, never> | null ;
51540
51540
readonly os?: readonly string[];
51541
51541
readonly cpu?: readonly string[];
51542
51542
readonly readme?: string;
@@ -80599,8 +80599,8 @@ export type components = {
80599
80599
readonly body?: string | Record<string, never>;
80600
80600
readonly body_html?: string;
80601
80601
readonly container_metadata?: {
80602
- readonly labels?: Record<string, never>;
80603
- readonly manifest?: Record<string, never>;
80602
+ readonly labels?: Record<string, never> | null ;
80603
+ readonly manifest?: Record<string, never> | null ;
80604
80604
readonly tag?: {
80605
80605
readonly digest?: string;
80606
80606
readonly name?: string;
@@ -80863,7 +80863,7 @@ export type components = {
80863
80863
readonly updated_at: string;
80864
80864
readonly version: string;
80865
80865
};
80866
- readonly registry: Record<string, never>;
80866
+ readonly registry: Record<string, never> | null ;
80867
80867
readonly updated_at: string;
80868
80868
};
80869
80869
readonly repository?: components["schemas"]["repository-webhooks"];
@@ -83470,7 +83470,7 @@ export type components = {
83470
83470
readonly head_branch?: string | null;
83471
83471
/** @description The name of the workflow. */
83472
83472
readonly workflow_name?: string | null;
83473
- readonly steps?: readonly Record<string, never>[];
83473
+ readonly steps?: readonly ( Record<string, never> | null) [];
83474
83474
readonly url?: string;
83475
83475
};
83476
83476
readonly deployment?: components["schemas"]["deployment"];
0 commit comments