Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
4b6f488f59
|
5827
proto/igdbapi.pb.go
5827
proto/igdbapi.pb.go
File diff suppressed because it is too large
Load Diff
@@ -209,6 +209,19 @@ enum AgeRatingContentDescriptionCategoryEnum {
|
|||||||
CLASS_IND_ATOS_CRIMINOSOS = 85 [deprecated = true];
|
CLASS_IND_ATOS_CRIMINOSOS = 85 [deprecated = true];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message AgeRatingContentDescriptionTypeResult {
|
||||||
|
repeated AgeRatingContentDescriptionType ageratingcontentdescriptiontypes = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message AgeRatingContentDescriptionType {
|
||||||
|
uint64 id = 1;
|
||||||
|
string slug = 2;
|
||||||
|
string name = 3;
|
||||||
|
google.protobuf.Timestamp created_at = 4;
|
||||||
|
google.protobuf.Timestamp updated_at = 5;
|
||||||
|
string checksum = 6;
|
||||||
|
}
|
||||||
|
|
||||||
message AgeRatingContentDescriptionV2Result {
|
message AgeRatingContentDescriptionV2Result {
|
||||||
repeated AgeRatingContentDescriptionV2 ageratingcontentdescriptionsv2 = 1;
|
repeated AgeRatingContentDescriptionV2 ageratingcontentdescriptionsv2 = 1;
|
||||||
}
|
}
|
||||||
@@ -220,6 +233,7 @@ message AgeRatingContentDescriptionV2 {
|
|||||||
google.protobuf.Timestamp created_at = 4;
|
google.protobuf.Timestamp created_at = 4;
|
||||||
google.protobuf.Timestamp updated_at = 5;
|
google.protobuf.Timestamp updated_at = 5;
|
||||||
string checksum = 6;
|
string checksum = 6;
|
||||||
|
AgeRatingContentDescriptionType description_type = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message AgeRatingOrganizationResult {
|
message AgeRatingOrganizationResult {
|
||||||
@@ -260,6 +274,20 @@ message Artwork {
|
|||||||
string url = 7;
|
string url = 7;
|
||||||
int32 width = 8;
|
int32 width = 8;
|
||||||
string checksum = 9;
|
string checksum = 9;
|
||||||
|
ArtworkType artwork_type = 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ArtworkTypeResult {
|
||||||
|
repeated ArtworkType artworktypes = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ArtworkType {
|
||||||
|
uint64 id = 1;
|
||||||
|
string slug = 2;
|
||||||
|
string name = 3;
|
||||||
|
google.protobuf.Timestamp created_at = 4;
|
||||||
|
google.protobuf.Timestamp updated_at = 5;
|
||||||
|
string checksum = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message CharacterResult {
|
message CharacterResult {
|
||||||
@@ -1342,6 +1370,7 @@ message ReleaseDate {
|
|||||||
ReleaseDateStatus status = 13;
|
ReleaseDateStatus status = 13;
|
||||||
DateFormat date_format = 14;
|
DateFormat date_format = 14;
|
||||||
ReleaseDateRegion release_region = 15;
|
ReleaseDateRegion release_region = 15;
|
||||||
|
int32 d = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ReleaseDateRegionResult {
|
message ReleaseDateRegionResult {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||||
|
|
||||||
wget https://api.igdb.com/v4/igdbapi.proto -O ./igdbapi.proto
|
wget https://api.igdb.com/v4/igdbapi.proto -O ./proto/igdbapi.proto
|
||||||
protoc --go_out=. --go_opt=Mproto/igdbapi.proto=/proto ./proto/igdbapi.proto
|
protoc --go_out=. --go_opt=Mproto/igdbapi.proto=/proto ./proto/igdbapi.proto
|
||||||
|
|||||||
Reference in New Issue
Block a user