@@ -12220,7 +12220,7 @@ export interface components {
12220
12220
language?: string;
12221
12221
raw_url?: string;
12222
12222
size?: number;
12223
- } | undefined ;
12223
+ };
12224
12224
};
12225
12225
public: boolean;
12226
12226
/** Format: date-time */
@@ -12360,7 +12360,7 @@ export interface components {
12360
12360
language?: string;
12361
12361
raw_url?: string;
12362
12362
size?: number;
12363
- } | undefined ;
12363
+ };
12364
12364
};
12365
12365
public: boolean;
12366
12366
/** Format: date-time */
@@ -12386,15 +12386,15 @@ export interface components {
12386
12386
git_push_url?: string;
12387
12387
html_url?: string;
12388
12388
files?: {
12389
- [key: string]: ( {
12389
+ [key: string]: {
12390
12390
filename?: string;
12391
12391
type?: string;
12392
12392
language?: string;
12393
12393
raw_url?: string;
12394
12394
size?: number;
12395
12395
truncated?: boolean;
12396
12396
content?: string;
12397
- } | null) | undefined ;
12397
+ } | null;
12398
12398
};
12399
12399
public?: boolean;
12400
12400
created_at?: string;
@@ -13807,13 +13807,13 @@ export interface components {
13807
13807
/** @description Permissions requested, categorized by type of permission. */
13808
13808
permissions: {
13809
13809
organization?: {
13810
- [key: string]: string | undefined ;
13810
+ [key: string]: string;
13811
13811
};
13812
13812
repository?: {
13813
- [key: string]: string | undefined ;
13813
+ [key: string]: string;
13814
13814
};
13815
13815
other?: {
13816
- [key: string]: string | undefined ;
13816
+ [key: string]: string;
13817
13817
};
13818
13818
};
13819
13819
/** @description Date and time when the request for access was created. */
@@ -13843,13 +13843,13 @@ export interface components {
13843
13843
/** @description Permissions requested, categorized by type of permission. */
13844
13844
permissions: {
13845
13845
organization?: {
13846
- [key: string]: string | undefined ;
13846
+ [key: string]: string;
13847
13847
};
13848
13848
repository?: {
13849
- [key: string]: string | undefined ;
13849
+ [key: string]: string;
13850
13850
};
13851
13851
other?: {
13852
- [key: string]: string | undefined ;
13852
+ [key: string]: string;
13853
13853
};
13854
13854
};
13855
13855
/** @description Date and time when the fine-grained personal access token was approved to access the organization. */
@@ -17048,7 +17048,7 @@ export interface components {
17048
17048
* @description User-defined metadata to store domain-specific information limited to 8 keys with scalar values.
17049
17049
*/
17050
17050
metadata: {
17051
- [key: string]: ( null | string | number | boolean) | undefined ;
17051
+ [key: string]: null | string | number | boolean;
17052
17052
};
17053
17053
dependency: {
17054
17054
/** @description Package-url (PURL) of dependency. See https://github.com/package-url/purl-spec for more details. */
@@ -17077,7 +17077,7 @@ export interface components {
17077
17077
metadata?: components["schemas"]["metadata"];
17078
17078
/** @description A collection of resolved package dependencies. */
17079
17079
resolved?: {
17080
- [key: string]: components["schemas"]["dependency"] | undefined ;
17080
+ [key: string]: components["schemas"]["dependency"];
17081
17081
};
17082
17082
};
17083
17083
/**
@@ -17111,7 +17111,7 @@ export interface components {
17111
17111
metadata?: components["schemas"]["metadata"];
17112
17112
/** @description A collection of package manifests, which are a collection of related dependencies declared in a file or representing a logical group of dependencies. */
17113
17113
manifests?: {
17114
- [key: string]: components["schemas"]["manifest"] | undefined ;
17114
+ [key: string]: components["schemas"]["manifest"];
17115
17115
};
17116
17116
/**
17117
17117
* Format: date-time
@@ -18250,7 +18250,7 @@ export interface components {
18250
18250
* @description Language
18251
18251
*/
18252
18252
language: {
18253
- [key: string]: number | undefined ;
18253
+ [key: string]: number;
18254
18254
};
18255
18255
/**
18256
18256
* License Content
@@ -20594,37 +20594,37 @@ export interface components {
20594
20594
/** @description New requested permissions, categorized by type of permission. */
20595
20595
permissions_added: {
20596
20596
organization?: {
20597
- [key: string]: string | undefined ;
20597
+ [key: string]: string;
20598
20598
};
20599
20599
repository?: {
20600
- [key: string]: string | undefined ;
20600
+ [key: string]: string;
20601
20601
};
20602
20602
other?: {
20603
- [key: string]: string | undefined ;
20603
+ [key: string]: string;
20604
20604
};
20605
20605
};
20606
20606
/** @description Requested permissions that elevate access for a previously approved request for access, categorized by type of permission. */
20607
20607
permissions_upgraded: {
20608
20608
organization?: {
20609
- [key: string]: string | undefined ;
20609
+ [key: string]: string;
20610
20610
};
20611
20611
repository?: {
20612
- [key: string]: string | undefined ;
20612
+ [key: string]: string;
20613
20613
};
20614
20614
other?: {
20615
- [key: string]: string | undefined ;
20615
+ [key: string]: string;
20616
20616
};
20617
20617
};
20618
20618
/** @description Permissions requested, categorized by type of permission. This field incorporates `permissions_added` and `permissions_upgraded`. */
20619
20619
permissions_result: {
20620
20620
organization?: {
20621
- [key: string]: string | undefined ;
20621
+ [key: string]: string;
20622
20622
};
20623
20623
repository?: {
20624
- [key: string]: string | undefined ;
20624
+ [key: string]: string;
20625
20625
};
20626
20626
other?: {
20627
- [key: string]: string | undefined ;
20627
+ [key: string]: string;
20628
20628
};
20629
20629
};
20630
20630
/**
@@ -37960,12 +37960,12 @@ export interface components {
37960
37960
};
37961
37961
platform?: string;
37962
37962
metadata?: {
37963
- [key: string]: string | undefined ;
37963
+ [key: string]: string;
37964
37964
};
37965
37965
repo?: string;
37966
- dependencies?: ( {
37967
- [key: string]: string | undefined ;
37968
- }) [];
37966
+ dependencies?: {
37967
+ [key: string]: string;
37968
+ }[];
37969
37969
commit_oid?: string;
37970
37970
};
37971
37971
/** package published event */
@@ -78906,7 +78906,7 @@ export interface operations {
78906
78906
200: {
78907
78907
content: {
78908
78908
"application/json": {
78909
- [key: string]: string | undefined ;
78909
+ [key: string]: string;
78910
78910
};
78911
78911
};
78912
78912
};
@@ -79078,7 +79078,7 @@ export interface operations {
79078
79078
[key: string]: {
79079
79079
/** @description Content of the file */
79080
79080
content: string;
79081
- } | undefined ;
79081
+ };
79082
79082
};
79083
79083
public?: boolean | ("true" | "false");
79084
79084
};
@@ -79215,12 +79215,12 @@ export interface operations {
79215
79215
* To delete a file, set the whole file to null. For example: `hello.py : null`.
79216
79216
*/
79217
79217
files?: {
79218
- [key: string]: (( {
79218
+ [key: string]: ({
79219
79219
/** @description The new content of the file. */
79220
79220
content?: string;
79221
79221
/** @description The new filename for the file. */
79222
79222
filename?: string | null;
79223
- }) | null) | undefined ;
79223
+ }) | null;
79224
79224
};
79225
79225
}) | null;
79226
79226
};
0 commit comments