@@ -9579,7 +9579,7 @@ export interface components {
9579
9579
* "deployments": "write"
9580
9580
* }
9581
9581
*/
9582
- permissions?: Record<string, never >;
9582
+ permissions?: Record<string, unknown >;
9583
9583
/** @description The repositories this token has access to */
9584
9584
repositories?: (components["schemas"]["repository"])[];
9585
9585
/** @example config.yaml */
@@ -10635,8 +10635,8 @@ export interface components {
10635
10635
comments_url: string;
10636
10636
owner?: components["schemas"]["simple-user"];
10637
10637
truncated?: boolean;
10638
- forks?: (Record<string, never >)[];
10639
- history?: (Record<string, never >)[];
10638
+ forks?: (Record<string, unknown >)[];
10639
+ history?: (Record<string, unknown >)[];
10640
10640
};
10641
10641
/**
10642
10642
* Public User
@@ -10780,8 +10780,8 @@ export interface components {
10780
10780
comments_url: string;
10781
10781
owner?: components["schemas"]["nullable-simple-user"];
10782
10782
truncated?: boolean;
10783
- forks?: (Record<string, never >)[];
10784
- history?: (Record<string, never >)[];
10783
+ forks?: (Record<string, unknown >)[];
10784
+ history?: (Record<string, unknown >)[];
10785
10785
}) | null;
10786
10786
url?: string;
10787
10787
forks_url?: string;
@@ -11728,7 +11728,7 @@ export interface components {
11728
11728
* Empty Object
11729
11729
* @description An object without any properties.
11730
11730
*/
11731
- "empty-object": Record<string, never >;
11731
+ "empty-object": Record<string, unknown >;
11732
11732
/**
11733
11733
* Codespace machine
11734
11734
* @description A description of the machine powering a codespace.
@@ -12294,7 +12294,7 @@ export interface components {
12294
12294
node_id: string;
12295
12295
/** Format: uri */
12296
12296
archive_url?: string;
12297
- exclude?: (Record<string, never >)[];
12297
+ exclude?: (Record<string, unknown >)[];
12298
12298
};
12299
12299
/**
12300
12300
* Minimal Repository
@@ -20742,8 +20742,8 @@ export interface components {
20742
20742
primary_key_id?: number;
20743
20743
key_id?: string;
20744
20744
public_key?: string;
20745
- emails?: (Record<string, never >)[];
20746
- subkeys?: (Record<string, never >)[];
20745
+ emails?: (Record<string, unknown >)[];
20746
+ subkeys?: (Record<string, unknown >)[];
20747
20747
can_sign?: boolean;
20748
20748
can_encrypt_comms?: boolean;
20749
20749
can_encrypt_storage?: boolean;
@@ -22586,7 +22586,7 @@ export interface components {
22586
22586
id: number;
22587
22587
node_id: string;
22588
22588
original_environment: string;
22589
- payload: Record<string, never > | string;
22589
+ payload: Record<string, unknown > | string;
22590
22590
/**
22591
22591
* App
22592
22592
* @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
@@ -23120,7 +23120,7 @@ export interface components {
23120
23120
id: number;
23121
23121
node_id: string;
23122
23122
original_environment: string;
23123
- payload: string | Record<string, never >;
23123
+ payload: string | Record<string, unknown >;
23124
23124
/**
23125
23125
* App
23126
23126
* @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
@@ -40484,7 +40484,7 @@ export interface components {
40484
40484
/** Format: uri */
40485
40485
url?: string;
40486
40486
}) | null;
40487
- body?: string | Record<string, never >;
40487
+ body?: string | Record<string, unknown >;
40488
40488
body_html?: string;
40489
40489
container_metadata?: ({
40490
40490
labels?: Record<string, unknown> | null;
@@ -40496,7 +40496,7 @@ export interface components {
40496
40496
}) | null;
40497
40497
created_at?: string;
40498
40498
description: string;
40499
- docker_metadata?: (Record<string, never >)[];
40499
+ docker_metadata?: (Record<string, unknown >)[];
40500
40500
draft?: boolean;
40501
40501
/** Format: uri */
40502
40502
html_url: string;
@@ -40513,29 +40513,29 @@ export interface components {
40513
40513
npm_user?: string;
40514
40514
author?: Record<string, unknown> | null;
40515
40515
bugs?: Record<string, unknown> | null;
40516
- dependencies?: Record<string, never >;
40517
- dev_dependencies?: Record<string, never >;
40518
- peer_dependencies?: Record<string, never >;
40519
- optional_dependencies?: Record<string, never >;
40516
+ dependencies?: Record<string, unknown >;
40517
+ dev_dependencies?: Record<string, unknown >;
40518
+ peer_dependencies?: Record<string, unknown >;
40519
+ optional_dependencies?: Record<string, unknown >;
40520
40520
description?: string;
40521
40521
dist?: Record<string, unknown> | null;
40522
40522
git_head?: string;
40523
40523
homepage?: string;
40524
40524
license?: string;
40525
40525
main?: string;
40526
40526
repository?: Record<string, unknown> | null;
40527
- scripts?: Record<string, never >;
40527
+ scripts?: Record<string, unknown >;
40528
40528
id?: string;
40529
40529
node_version?: string;
40530
40530
npm_version?: string;
40531
40531
has_shrinkwrap?: boolean;
40532
- maintainers?: (Record<string, never >)[];
40533
- contributors?: (Record<string, never >)[];
40534
- engines?: Record<string, never >;
40532
+ maintainers?: (Record<string, unknown >)[];
40533
+ contributors?: (Record<string, unknown >)[];
40534
+ engines?: Record<string, unknown >;
40535
40535
keywords?: (string)[];
40536
40536
files?: (string)[];
40537
- bin?: Record<string, never >;
40538
- man?: Record<string, never >;
40537
+ bin?: Record<string, unknown >;
40538
+ man?: Record<string, unknown >;
40539
40539
directories?: Record<string, unknown> | null;
40540
40540
os?: (string)[];
40541
40541
cpu?: (string)[];
@@ -40623,7 +40623,7 @@ export interface components {
40623
40623
/** Format: uri */
40624
40624
url: string;
40625
40625
};
40626
- rubygems_metadata?: (Record<string, never >)[];
40626
+ rubygems_metadata?: (Record<string, unknown >)[];
40627
40627
source_url?: string;
40628
40628
summary: string;
40629
40629
tag_name?: string;
@@ -40743,14 +40743,14 @@ export interface components {
40743
40743
body_html: string;
40744
40744
created_at: string;
40745
40745
description: string;
40746
- docker_metadata?: (Record<string, never >)[];
40746
+ docker_metadata?: (Record<string, unknown >)[];
40747
40747
draft?: boolean;
40748
40748
/** Format: uri */
40749
40749
html_url: string;
40750
40750
id: number;
40751
40751
installation_command: string;
40752
40752
manifest?: string;
40753
- metadata: (Record<string, never >)[];
40753
+ metadata: (Record<string, unknown >)[];
40754
40754
name: string;
40755
40755
package_files: ({
40756
40756
content_type: string;
@@ -40819,7 +40819,7 @@ export interface components {
40819
40819
/** Format: uri */
40820
40820
url: string;
40821
40821
};
40822
- rubygems_metadata?: (Record<string, never >)[];
40822
+ rubygems_metadata?: (Record<string, unknown >)[];
40823
40823
/** Format: uri */
40824
40824
source_url?: string;
40825
40825
summary: string;
@@ -79177,7 +79177,7 @@ export interface components {
79177
79177
type: string;
79178
79178
url: string;
79179
79179
};
79180
- body?: string | Record<string, never >;
79180
+ body?: string | Record<string, unknown >;
79181
79181
body_html?: string;
79182
79182
container_metadata?: {
79183
79183
labels?: Record<string, unknown> | null;
@@ -79189,7 +79189,7 @@ export interface components {
79189
79189
};
79190
79190
created_at?: string;
79191
79191
description: string;
79192
- docker_metadata?: (Record<string, never >)[];
79192
+ docker_metadata?: (Record<string, unknown >)[];
79193
79193
draft?: boolean;
79194
79194
html_url: string;
79195
79195
id: number;
@@ -79203,32 +79203,32 @@ export interface components {
79203
79203
name?: string;
79204
79204
version?: string;
79205
79205
npm_user?: string;
79206
- author?: string | Record<string, never >;
79207
- bugs?: string | Record<string, never >;
79208
- dependencies?: Record<string, never >;
79209
- dev_dependencies?: Record<string, never >;
79210
- peer_dependencies?: Record<string, never >;
79211
- optional_dependencies?: Record<string, never >;
79206
+ author?: string | Record<string, unknown >;
79207
+ bugs?: string | Record<string, unknown >;
79208
+ dependencies?: Record<string, unknown >;
79209
+ dev_dependencies?: Record<string, unknown >;
79210
+ peer_dependencies?: Record<string, unknown >;
79211
+ optional_dependencies?: Record<string, unknown >;
79212
79212
description?: string;
79213
- dist?: string | Record<string, never >;
79213
+ dist?: string | Record<string, unknown >;
79214
79214
git_head?: string;
79215
79215
homepage?: string;
79216
79216
license?: string;
79217
79217
main?: string;
79218
- repository?: string | Record<string, never >;
79219
- scripts?: Record<string, never >;
79218
+ repository?: string | Record<string, unknown >;
79219
+ scripts?: Record<string, unknown >;
79220
79220
id?: string;
79221
79221
node_version?: string;
79222
79222
npm_version?: string;
79223
79223
has_shrinkwrap?: boolean;
79224
79224
maintainers?: (string)[];
79225
79225
contributors?: (string)[];
79226
- engines?: Record<string, never >;
79226
+ engines?: Record<string, unknown >;
79227
79227
keywords?: (string)[];
79228
79228
files?: (string)[];
79229
- bin?: Record<string, never >;
79230
- man?: Record<string, never >;
79231
- directories?: string | Record<string, never >;
79229
+ bin?: Record<string, unknown >;
79230
+ man?: Record<string, unknown >;
79231
+ directories?: string | Record<string, unknown >;
79232
79232
os?: (string)[];
79233
79233
cpu?: (string)[];
79234
79234
readme?: string;
@@ -79239,7 +79239,7 @@ export interface components {
79239
79239
deleted_by_id?: number;
79240
79240
}) | null;
79241
79241
nuget_metadata?: (({
79242
- id?: string | Record<string, never > | number;
79242
+ id?: string | Record<string, unknown > | number;
79243
79243
name?: string;
79244
79244
value?: OneOf<[boolean, string, number, {
79245
79245
url?: string;
@@ -79295,7 +79295,7 @@ export interface components {
79295
79295
target_commitish?: string;
79296
79296
url?: string;
79297
79297
};
79298
- rubygems_metadata?: (Record<string, never >)[];
79298
+ rubygems_metadata?: (Record<string, unknown >)[];
79299
79299
summary: string;
79300
79300
tag_name?: string;
79301
79301
target_commitish?: string;
@@ -79380,7 +79380,7 @@ export interface components {
79380
79380
id: number;
79381
79381
installation_command: string;
79382
79382
manifest?: string;
79383
- metadata: (Record<string, never >)[];
79383
+ metadata: (Record<string, unknown >)[];
79384
79384
name: string;
79385
79385
package_files: ({
79386
79386
content_type?: string;
@@ -79429,7 +79429,7 @@ export interface components {
79429
79429
target_commitish: string;
79430
79430
url: string;
79431
79431
};
79432
- rubygems_metadata?: (Record<string, never >)[];
79432
+ rubygems_metadata?: (Record<string, unknown >)[];
79433
79433
summary: string;
79434
79434
tag_name?: string;
79435
79435
target_commitish: string;
@@ -86258,7 +86258,7 @@ export interface components {
86258
86258
/** @description Accepted */
86259
86259
accepted: {
86260
86260
content: {
86261
- "application/json": Record<string, never >;
86261
+ "application/json": Record<string, unknown >;
86262
86262
};
86263
86263
};
86264
86264
/** @description Forbidden */
@@ -88116,9 +88116,9 @@ export interface operations {
88116
88116
content?: string;
88117
88117
/** @description The new filename for the file. */
88118
88118
filename?: string | null;
88119
- }) & (Record<string, never > | Record<string, never > | Record<string, never >)) | null) | undefined;
88119
+ }) & (Record<string, unknown > | Record<string, unknown > | Record<string, unknown >)) | null) | undefined;
88120
88120
};
88121
- }) & (Record<string, never > | Record<string, never >)) | null;
88121
+ }) & (Record<string, unknown > | Record<string, unknown >)) | null;
88122
88122
};
88123
88123
};
88124
88124
responses: {
@@ -88289,7 +88289,7 @@ export interface operations {
88289
88289
/** @description Not Found if gist is not starred */
88290
88290
404: {
88291
88291
content: {
88292
- "application/json": Record<string, never >;
88292
+ "application/json": Record<string, unknown >;
88293
88293
};
88294
88294
};
88295
88295
};
@@ -91125,7 +91125,7 @@ export interface operations {
91125
91125
/** @description Response */
91126
91126
200: {
91127
91127
content: {
91128
- "application/json": components["schemas"]["interaction-limit-response"] | Record<string, never >;
91128
+ "application/json": components["schemas"]["interaction-limit-response"] | Record<string, unknown >;
91129
91129
};
91130
91130
};
91131
91131
};
@@ -91678,7 +91678,7 @@ export interface operations {
91678
91678
/** @description User is getting converted asynchronously */
91679
91679
202: {
91680
91680
content: {
91681
- "application/json": Record<string, never >;
91681
+ "application/json": Record<string, unknown >;
91682
91682
};
91683
91683
};
91684
91684
/** @description User was converted */
@@ -93215,7 +93215,7 @@ export interface operations {
93215
93215
/** @description Response */
93216
93216
201: {
93217
93217
content: {
93218
- "application/json": Record<string, never >;
93218
+ "application/json": Record<string, unknown >;
93219
93219
};
93220
93220
};
93221
93221
304: components["responses"]["not_modified"];
@@ -93398,7 +93398,7 @@ export interface operations {
93398
93398
/** @description Response */
93399
93399
201: {
93400
93400
content: {
93401
- "application/json": Record<string, never >;
93401
+ "application/json": Record<string, unknown >;
93402
93402
};
93403
93403
};
93404
93404
304: components["responses"]["not_modified"];
@@ -99945,7 +99945,7 @@ export interface operations {
99945
99945
/** @description Response */
99946
99946
200: {
99947
99947
content: {
99948
- "application/json": components["schemas"]["interaction-limit-response"] | Record<string, never >;
99948
+ "application/json": components["schemas"]["interaction-limit-response"] | Record<string, unknown >;
99949
99949
};
99950
99950
};
99951
99951
};
@@ -101212,7 +101212,7 @@ export interface operations {
101212
101212
*/
101213
101213
path: "/" | "/docs";
101214
101214
});
101215
- }) & (Record<string, never > | Record<string, never > | Record<string, never > | Record<string, never > | Record<string, never >);
101215
+ }) & (Record<string, unknown > | Record<string, unknown > | Record<string, unknown > | Record<string, unknown > | Record<string, unknown >);
101216
101216
};
101217
101217
};
101218
101218
responses: {
@@ -101247,7 +101247,7 @@ export interface operations {
101247
101247
*/
101248
101248
path?: "/" | "/docs";
101249
101249
};
101250
- }) & (Record<string, never > | Record<string, never >)) | null;
101250
+ }) & (Record<string, unknown > | Record<string, unknown >)) | null;
101251
101251
};
101252
101252
};
101253
101253
responses: {
@@ -102039,7 +102039,7 @@ export interface operations {
102039
102039
reviewers?: (string)[];
102040
102040
/** @description An array of team `slug`s that will be requested. */
102041
102041
team_reviewers?: (string)[];
102042
- } & (Record<string, never > | Record<string, never >);
102042
+ } & (Record<string, unknown > | Record<string, unknown >);
102043
102043
};
102044
102044
};
102045
102045
responses: {
@@ -105732,7 +105732,7 @@ export interface operations {
105732
105732
/** @description Default response */
105733
105733
200: {
105734
105734
content: {
105735
- "application/json": components["schemas"]["interaction-limit-response"] | Record<string, never >;
105735
+ "application/json": components["schemas"]["interaction-limit-response"] | Record<string, unknown >;
105736
105736
};
105737
105737
};
105738
105738
/** @description Response when there are no restrictions */
0 commit comments