@@ -41164,7 +41164,7 @@ export type components = {
41164
41164
readonly created_at: string;
41165
41165
/** @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. */
41166
41166
readonly dismissed_at: string | null;
41167
- readonly dismissed_by: Record<string, never>;
41167
+ readonly dismissed_by: Record<string, never> | null ;
41168
41168
/** @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`. */
41169
41169
readonly dismissed_reason: string | null;
41170
41170
/**
@@ -42189,7 +42189,7 @@ export type components = {
42189
42189
readonly display_title: string;
42190
42190
readonly event: string;
42191
42191
readonly head_branch: string;
42192
- readonly head_commit?: Record<string, never>;
42192
+ readonly head_commit?: Record<string, never> | null ;
42193
42193
readonly head_repository?: {
42194
42194
readonly archive_url?: string;
42195
42195
readonly assignees_url?: string;
@@ -42496,7 +42496,7 @@ export type components = {
42496
42496
readonly created_at: string;
42497
42497
readonly event: string;
42498
42498
readonly head_branch: string;
42499
- readonly head_commit?: Record<string, never>;
42499
+ readonly head_commit?: Record<string, never> | null ;
42500
42500
readonly head_repository?: {
42501
42501
readonly archive_url?: string;
42502
42502
readonly assignees_url?: string;
@@ -42844,7 +42844,7 @@ export type components = {
42844
42844
readonly created_at: string;
42845
42845
readonly event: string;
42846
42846
readonly head_branch: string;
42847
- readonly head_commit?: Record<string, never>;
42847
+ readonly head_commit?: Record<string, never> | null ;
42848
42848
readonly head_repository?: {
42849
42849
readonly archive_url?: string;
42850
42850
readonly assignees_url?: string;
@@ -44324,7 +44324,7 @@ export type components = {
44324
44324
readonly labels_url?: string;
44325
44325
readonly language?: unknown;
44326
44326
readonly languages_url?: string;
44327
- readonly license?: Record<string, never>;
44327
+ readonly license?: Record<string, never> | null ;
44328
44328
readonly merges_url?: string;
44329
44329
readonly milestones_url?: string;
44330
44330
readonly mirror_url?: unknown;
@@ -45131,7 +45131,7 @@ export type components = {
45131
45131
readonly url?: string;
45132
45132
readonly user_view_type?: string;
45133
45133
} | null;
45134
- readonly assignees?: readonly Record<string, never>[];
45134
+ readonly assignees?: readonly ( Record<string, never> | null) [];
45135
45135
readonly author_association?: string;
45136
45136
readonly body?: string | null;
45137
45137
readonly closed_at?: string | null;
@@ -45158,10 +45158,10 @@ export type components = {
45158
45158
}[];
45159
45159
readonly labels_url?: string;
45160
45160
readonly locked: boolean;
45161
- readonly milestone?: Record<string, never>;
45161
+ readonly milestone?: Record<string, never> | null ;
45162
45162
readonly node_id?: string;
45163
45163
readonly number?: number;
45164
- readonly performed_via_github_app?: Record<string, never>;
45164
+ readonly performed_via_github_app?: Record<string, never> | null ;
45165
45165
readonly reactions?: {
45166
45166
readonly "+1"?: number;
45167
45167
readonly "-1"?: number;
@@ -45675,7 +45675,7 @@ export type components = {
45675
45675
readonly url?: string;
45676
45676
readonly user_view_type?: string;
45677
45677
} | null;
45678
- readonly assignees?: readonly Record<string, never>[];
45678
+ readonly assignees?: readonly ( Record<string, never> | null) [];
45679
45679
readonly author_association?: string;
45680
45680
readonly body?: string | null;
45681
45681
readonly closed_at?: string | null;
@@ -45702,10 +45702,10 @@ export type components = {
45702
45702
}[];
45703
45703
readonly labels_url?: string;
45704
45704
readonly locked: boolean;
45705
- readonly milestone?: Record<string, never>;
45705
+ readonly milestone?: Record<string, never> | null ;
45706
45706
readonly node_id?: string;
45707
45707
readonly number?: number;
45708
- readonly performed_via_github_app?: Record<string, never>;
45708
+ readonly performed_via_github_app?: Record<string, never> | null ;
45709
45709
readonly reactions?: {
45710
45710
readonly "+1"?: number;
45711
45711
readonly "-1"?: number;
@@ -46221,7 +46221,7 @@ export type components = {
46221
46221
readonly url?: string;
46222
46222
readonly user_view_type?: string;
46223
46223
} | null;
46224
- readonly assignees?: readonly Record<string, never>[];
46224
+ readonly assignees?: readonly ( Record<string, never> | null) [];
46225
46225
readonly author_association?: string;
46226
46226
readonly body?: string | null;
46227
46227
readonly closed_at?: string | null;
@@ -46248,10 +46248,10 @@ export type components = {
46248
46248
}[];
46249
46249
readonly labels_url?: string;
46250
46250
readonly locked: boolean;
46251
- readonly milestone?: Record<string, never>;
46251
+ readonly milestone?: Record<string, never> | null ;
46252
46252
readonly node_id?: string;
46253
46253
readonly number?: number;
46254
- readonly performed_via_github_app?: Record<string, never>;
46254
+ readonly performed_via_github_app?: Record<string, never> | null ;
46255
46255
readonly reactions?: {
46256
46256
readonly "+1"?: number;
46257
46257
readonly "-1"?: number;
@@ -46744,8 +46744,8 @@ export type components = {
46744
46744
} | null;
46745
46745
} & {
46746
46746
readonly active_lock_reason?: string | null;
46747
- readonly assignee?: Record<string, never>;
46748
- readonly assignees?: readonly Record<string, never>[];
46747
+ readonly assignee?: Record<string, never> | null ;
46748
+ readonly assignees?: readonly ( Record<string, never> | null) [];
46749
46749
readonly author_association?: string;
46750
46750
readonly body?: string | null;
46751
46751
readonly closed_at: string | null;
@@ -46755,13 +46755,13 @@ export type components = {
46755
46755
readonly events_url?: string;
46756
46756
readonly html_url?: string;
46757
46757
readonly id?: number;
46758
- readonly labels?: readonly Record<string, never>[];
46758
+ readonly labels?: readonly ( Record<string, never> | null) [];
46759
46759
readonly labels_url?: string;
46760
46760
readonly locked?: boolean;
46761
- readonly milestone?: Record<string, never>;
46761
+ readonly milestone?: Record<string, never> | null ;
46762
46762
readonly node_id?: string;
46763
46763
readonly number?: number;
46764
- readonly performed_via_github_app?: Record<string, never>;
46764
+ readonly performed_via_github_app?: Record<string, never> | null ;
46765
46765
readonly reactions?: {
46766
46766
readonly "+1"?: number;
46767
46767
readonly "-1"?: number;
@@ -52843,8 +52843,8 @@ export type components = {
52843
52843
readonly body?: string | Record<string, never>;
52844
52844
readonly body_html?: string;
52845
52845
readonly container_metadata?: {
52846
- readonly labels?: Record<string, never>;
52847
- readonly manifest?: Record<string, never>;
52846
+ readonly labels?: Record<string, never> | null ;
52847
+ readonly manifest?: Record<string, never> | null ;
52848
52848
readonly tag?: {
52849
52849
readonly digest?: string;
52850
52850
readonly name?: string;
@@ -52869,19 +52869,19 @@ export type components = {
52869
52869
readonly name?: string;
52870
52870
readonly version?: string;
52871
52871
readonly npm_user?: string;
52872
- readonly author?: Record<string, never>;
52873
- readonly bugs?: Record<string, never>;
52872
+ readonly author?: Record<string, never> | null ;
52873
+ readonly bugs?: Record<string, never> | null ;
52874
52874
readonly dependencies?: Record<string, never>;
52875
52875
readonly dev_dependencies?: Record<string, never>;
52876
52876
readonly peer_dependencies?: Record<string, never>;
52877
52877
readonly optional_dependencies?: Record<string, never>;
52878
52878
readonly description?: string;
52879
- readonly dist?: Record<string, never>;
52879
+ readonly dist?: Record<string, never> | null ;
52880
52880
readonly git_head?: string;
52881
52881
readonly homepage?: string;
52882
52882
readonly license?: string;
52883
52883
readonly main?: string;
52884
- readonly repository?: Record<string, never>;
52884
+ readonly repository?: Record<string, never> | null ;
52885
52885
readonly scripts?: Record<string, never>;
52886
52886
readonly id?: string;
52887
52887
readonly node_version?: string;
@@ -52894,7 +52894,7 @@ export type components = {
52894
52894
readonly files?: readonly string[];
52895
52895
readonly bin?: Record<string, never>;
52896
52896
readonly man?: Record<string, never>;
52897
- readonly directories?: Record<string, never>;
52897
+ readonly directories?: Record<string, never> | null ;
52898
52898
readonly os?: readonly string[];
52899
52899
readonly cpu?: readonly string[];
52900
52900
readonly readme?: string;
@@ -82202,8 +82202,8 @@ export type components = {
82202
82202
readonly body?: string | Record<string, never>;
82203
82203
readonly body_html?: string;
82204
82204
readonly container_metadata?: {
82205
- readonly labels?: Record<string, never>;
82206
- readonly manifest?: Record<string, never>;
82205
+ readonly labels?: Record<string, never> | null ;
82206
+ readonly manifest?: Record<string, never> | null ;
82207
82207
readonly tag?: {
82208
82208
readonly digest?: string;
82209
82209
readonly name?: string;
@@ -82470,7 +82470,7 @@ export type components = {
82470
82470
readonly updated_at: string;
82471
82471
readonly version: string;
82472
82472
};
82473
- readonly registry: Record<string, never>;
82473
+ readonly registry: Record<string, never> | null ;
82474
82474
readonly updated_at: string;
82475
82475
};
82476
82476
readonly repository?: components["schemas"]["repository-webhooks"];
@@ -85136,7 +85136,7 @@ export type components = {
85136
85136
readonly head_branch?: string | null;
85137
85137
/** @description The name of the workflow. */
85138
85138
readonly workflow_name?: string | null;
85139
- readonly steps?: readonly Record<string, never>[];
85139
+ readonly steps?: readonly ( Record<string, never> | null) [];
85140
85140
readonly url?: string;
85141
85141
};
85142
85142
readonly deployment?: components["schemas"]["deployment"];
0 commit comments