commit generated types
This commit is contained in:
parent
015414c5b0
commit
7bc95bdf62
2 changed files with 808 additions and 1 deletions
1
ficsit/.gitignore
vendored
1
ficsit/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
types.go
|
808
ficsit/types.go
Normal file
808
ficsit/types.go
Normal file
|
@ -0,0 +1,808 @@
|
|||
// Code generated by github.com/Khan/genqlient, DO NOT EDIT.
|
||||
|
||||
package ficsit
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/Khan/genqlient/graphql"
|
||||
"github.com/satisfactorymodding/ficsit-cli/ficsit/utils"
|
||||
)
|
||||
|
||||
// GetModGetMod includes the requested fields of the GraphQL type Mod.
|
||||
type GetModGetMod struct {
|
||||
Id string `json:"id"`
|
||||
Mod_reference string `json:"mod_reference"`
|
||||
Name string `json:"name"`
|
||||
Views int `json:"views"`
|
||||
Downloads int `json:"downloads"`
|
||||
Authors []GetModGetModAuthorsUserMod `json:"authors"`
|
||||
Full_description string `json:"full_description"`
|
||||
Source_url string `json:"source_url"`
|
||||
Created_at time.Time `json:"-"`
|
||||
}
|
||||
|
||||
// GetId returns GetModGetMod.Id, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetId() string { return v.Id }
|
||||
|
||||
// GetMod_reference returns GetModGetMod.Mod_reference, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetMod_reference() string { return v.Mod_reference }
|
||||
|
||||
// GetName returns GetModGetMod.Name, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetName() string { return v.Name }
|
||||
|
||||
// GetViews returns GetModGetMod.Views, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetViews() int { return v.Views }
|
||||
|
||||
// GetDownloads returns GetModGetMod.Downloads, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetDownloads() int { return v.Downloads }
|
||||
|
||||
// GetAuthors returns GetModGetMod.Authors, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetAuthors() []GetModGetModAuthorsUserMod { return v.Authors }
|
||||
|
||||
// GetFull_description returns GetModGetMod.Full_description, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetFull_description() string { return v.Full_description }
|
||||
|
||||
// GetSource_url returns GetModGetMod.Source_url, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetSource_url() string { return v.Source_url }
|
||||
|
||||
// GetCreated_at returns GetModGetMod.Created_at, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetMod) GetCreated_at() time.Time { return v.Created_at }
|
||||
|
||||
func (v *GetModGetMod) UnmarshalJSON(b []byte) error {
|
||||
|
||||
if string(b) == "null" {
|
||||
return nil
|
||||
}
|
||||
|
||||
var firstPass struct {
|
||||
*GetModGetMod
|
||||
Created_at json.RawMessage `json:"created_at"`
|
||||
graphql.NoUnmarshalJSON
|
||||
}
|
||||
firstPass.GetModGetMod = v
|
||||
|
||||
err := json.Unmarshal(b, &firstPass)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
{
|
||||
dst := &v.Created_at
|
||||
src := firstPass.Created_at
|
||||
if len(src) != 0 && string(src) != "null" {
|
||||
err = utils.UnmarshalDateTime(
|
||||
src, dst)
|
||||
if err != nil {
|
||||
return fmt.Errorf(
|
||||
"Unable to unmarshal GetModGetMod.Created_at: %w", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type __premarshalGetModGetMod struct {
|
||||
Id string `json:"id"`
|
||||
|
||||
Mod_reference string `json:"mod_reference"`
|
||||
|
||||
Name string `json:"name"`
|
||||
|
||||
Views int `json:"views"`
|
||||
|
||||
Downloads int `json:"downloads"`
|
||||
|
||||
Authors []GetModGetModAuthorsUserMod `json:"authors"`
|
||||
|
||||
Full_description string `json:"full_description"`
|
||||
|
||||
Source_url string `json:"source_url"`
|
||||
|
||||
Created_at json.RawMessage `json:"created_at"`
|
||||
}
|
||||
|
||||
func (v *GetModGetMod) MarshalJSON() ([]byte, error) {
|
||||
premarshaled, err := v.__premarshalJSON()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return json.Marshal(premarshaled)
|
||||
}
|
||||
|
||||
func (v *GetModGetMod) __premarshalJSON() (*__premarshalGetModGetMod, error) {
|
||||
var retval __premarshalGetModGetMod
|
||||
|
||||
retval.Id = v.Id
|
||||
retval.Mod_reference = v.Mod_reference
|
||||
retval.Name = v.Name
|
||||
retval.Views = v.Views
|
||||
retval.Downloads = v.Downloads
|
||||
retval.Authors = v.Authors
|
||||
retval.Full_description = v.Full_description
|
||||
retval.Source_url = v.Source_url
|
||||
{
|
||||
|
||||
dst := &retval.Created_at
|
||||
src := v.Created_at
|
||||
var err error
|
||||
*dst, err = json.Marshal(
|
||||
&src)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf(
|
||||
"Unable to marshal GetModGetMod.Created_at: %w", err)
|
||||
}
|
||||
}
|
||||
return &retval, nil
|
||||
}
|
||||
|
||||
// GetModGetModAuthorsUserMod includes the requested fields of the GraphQL type UserMod.
|
||||
type GetModGetModAuthorsUserMod struct {
|
||||
Role string `json:"role"`
|
||||
User GetModGetModAuthorsUserModUser `json:"user"`
|
||||
}
|
||||
|
||||
// GetRole returns GetModGetModAuthorsUserMod.Role, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetModAuthorsUserMod) GetRole() string { return v.Role }
|
||||
|
||||
// GetUser returns GetModGetModAuthorsUserMod.User, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetModAuthorsUserMod) GetUser() GetModGetModAuthorsUserModUser { return v.User }
|
||||
|
||||
// GetModGetModAuthorsUserModUser includes the requested fields of the GraphQL type User.
|
||||
type GetModGetModAuthorsUserModUser struct {
|
||||
Username string `json:"username"`
|
||||
}
|
||||
|
||||
// GetUsername returns GetModGetModAuthorsUserModUser.Username, and is useful for accessing the field via an interface.
|
||||
func (v *GetModGetModAuthorsUserModUser) GetUsername() string { return v.Username }
|
||||
|
||||
// GetModResponse is returned by GetMod on success.
|
||||
type GetModResponse struct {
|
||||
GetMod GetModGetMod `json:"getMod"`
|
||||
}
|
||||
|
||||
// GetGetMod returns GetModResponse.GetMod, and is useful for accessing the field via an interface.
|
||||
func (v *GetModResponse) GetGetMod() GetModGetMod { return v.GetMod }
|
||||
|
||||
type ModFields string
|
||||
|
||||
const (
|
||||
ModFieldsCreatedAt ModFields = "created_at"
|
||||
ModFieldsDownloads ModFields = "downloads"
|
||||
ModFieldsHotness ModFields = "hotness"
|
||||
ModFieldsLastVersionDate ModFields = "last_version_date"
|
||||
ModFieldsName ModFields = "name"
|
||||
ModFieldsPopularity ModFields = "popularity"
|
||||
ModFieldsSearch ModFields = "search"
|
||||
ModFieldsUpdatedAt ModFields = "updated_at"
|
||||
ModFieldsViews ModFields = "views"
|
||||
)
|
||||
|
||||
type ModFilter struct {
|
||||
Hidden bool `json:"hidden,omitempty"`
|
||||
Ids []string `json:"ids,omitempty"`
|
||||
Limit int `json:"limit,omitempty"`
|
||||
Offset int `json:"offset,omitempty"`
|
||||
Order Order `json:"order,omitempty"`
|
||||
Order_by ModFields `json:"order_by,omitempty"`
|
||||
References []string `json:"references,omitempty"`
|
||||
Search string `json:"search,omitempty"`
|
||||
}
|
||||
|
||||
// GetHidden returns ModFilter.Hidden, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetHidden() bool { return v.Hidden }
|
||||
|
||||
// GetIds returns ModFilter.Ids, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetIds() []string { return v.Ids }
|
||||
|
||||
// GetLimit returns ModFilter.Limit, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetLimit() int { return v.Limit }
|
||||
|
||||
// GetOffset returns ModFilter.Offset, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetOffset() int { return v.Offset }
|
||||
|
||||
// GetOrder returns ModFilter.Order, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetOrder() Order { return v.Order }
|
||||
|
||||
// GetOrder_by returns ModFilter.Order_by, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetOrder_by() ModFields { return v.Order_by }
|
||||
|
||||
// GetReferences returns ModFilter.References, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetReferences() []string { return v.References }
|
||||
|
||||
// GetSearch returns ModFilter.Search, and is useful for accessing the field via an interface.
|
||||
func (v *ModFilter) GetSearch() string { return v.Search }
|
||||
|
||||
type ModVersionConstraint struct {
|
||||
ModIdOrReference string `json:"modIdOrReference"`
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
// GetModIdOrReference returns ModVersionConstraint.ModIdOrReference, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionConstraint) GetModIdOrReference() string { return v.ModIdOrReference }
|
||||
|
||||
// GetVersion returns ModVersionConstraint.Version, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionConstraint) GetVersion() string { return v.Version }
|
||||
|
||||
// ModVersionsMod includes the requested fields of the GraphQL type Mod.
|
||||
type ModVersionsMod struct {
|
||||
Id string `json:"id"`
|
||||
Versions []ModVersionsModVersionsVersion `json:"versions"`
|
||||
}
|
||||
|
||||
// GetId returns ModVersionsMod.Id, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionsMod) GetId() string { return v.Id }
|
||||
|
||||
// GetVersions returns ModVersionsMod.Versions, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionsMod) GetVersions() []ModVersionsModVersionsVersion { return v.Versions }
|
||||
|
||||
// ModVersionsModVersionsVersion includes the requested fields of the GraphQL type Version.
|
||||
type ModVersionsModVersionsVersion struct {
|
||||
Id string `json:"id"`
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
// GetId returns ModVersionsModVersionsVersion.Id, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionsModVersionsVersion) GetId() string { return v.Id }
|
||||
|
||||
// GetVersion returns ModVersionsModVersionsVersion.Version, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionsModVersionsVersion) GetVersion() string { return v.Version }
|
||||
|
||||
// ModVersionsResponse is returned by ModVersions on success.
|
||||
type ModVersionsResponse struct {
|
||||
Mod ModVersionsMod `json:"mod"`
|
||||
}
|
||||
|
||||
// GetMod returns ModVersionsResponse.Mod, and is useful for accessing the field via an interface.
|
||||
func (v *ModVersionsResponse) GetMod() ModVersionsMod { return v.Mod }
|
||||
|
||||
// ModsGetMods includes the requested fields of the GraphQL type GetMods.
|
||||
type ModsGetMods struct {
|
||||
Count int `json:"count"`
|
||||
Mods []ModsGetModsModsMod `json:"mods"`
|
||||
}
|
||||
|
||||
// GetCount returns ModsGetMods.Count, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetMods) GetCount() int { return v.Count }
|
||||
|
||||
// GetMods returns ModsGetMods.Mods, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetMods) GetMods() []ModsGetModsModsMod { return v.Mods }
|
||||
|
||||
// ModsGetModsModsMod includes the requested fields of the GraphQL type Mod.
|
||||
type ModsGetModsModsMod struct {
|
||||
Id string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Mod_reference string `json:"mod_reference"`
|
||||
Last_version_date time.Time `json:"-"`
|
||||
Created_at time.Time `json:"-"`
|
||||
Views int `json:"views"`
|
||||
Downloads int `json:"downloads"`
|
||||
Popularity int `json:"popularity"`
|
||||
Hotness int `json:"hotness"`
|
||||
}
|
||||
|
||||
// GetId returns ModsGetModsModsMod.Id, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetId() string { return v.Id }
|
||||
|
||||
// GetName returns ModsGetModsModsMod.Name, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetName() string { return v.Name }
|
||||
|
||||
// GetMod_reference returns ModsGetModsModsMod.Mod_reference, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetMod_reference() string { return v.Mod_reference }
|
||||
|
||||
// GetLast_version_date returns ModsGetModsModsMod.Last_version_date, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetLast_version_date() time.Time { return v.Last_version_date }
|
||||
|
||||
// GetCreated_at returns ModsGetModsModsMod.Created_at, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetCreated_at() time.Time { return v.Created_at }
|
||||
|
||||
// GetViews returns ModsGetModsModsMod.Views, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetViews() int { return v.Views }
|
||||
|
||||
// GetDownloads returns ModsGetModsModsMod.Downloads, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetDownloads() int { return v.Downloads }
|
||||
|
||||
// GetPopularity returns ModsGetModsModsMod.Popularity, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetPopularity() int { return v.Popularity }
|
||||
|
||||
// GetHotness returns ModsGetModsModsMod.Hotness, and is useful for accessing the field via an interface.
|
||||
func (v *ModsGetModsModsMod) GetHotness() int { return v.Hotness }
|
||||
|
||||
func (v *ModsGetModsModsMod) UnmarshalJSON(b []byte) error {
|
||||
|
||||
if string(b) == "null" {
|
||||
return nil
|
||||
}
|
||||
|
||||
var firstPass struct {
|
||||
*ModsGetModsModsMod
|
||||
Last_version_date json.RawMessage `json:"last_version_date"`
|
||||
Created_at json.RawMessage `json:"created_at"`
|
||||
graphql.NoUnmarshalJSON
|
||||
}
|
||||
firstPass.ModsGetModsModsMod = v
|
||||
|
||||
err := json.Unmarshal(b, &firstPass)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
{
|
||||
dst := &v.Last_version_date
|
||||
src := firstPass.Last_version_date
|
||||
if len(src) != 0 && string(src) != "null" {
|
||||
err = utils.UnmarshalDateTime(
|
||||
src, dst)
|
||||
if err != nil {
|
||||
return fmt.Errorf(
|
||||
"Unable to unmarshal ModsGetModsModsMod.Last_version_date: %w", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
dst := &v.Created_at
|
||||
src := firstPass.Created_at
|
||||
if len(src) != 0 && string(src) != "null" {
|
||||
err = utils.UnmarshalDateTime(
|
||||
src, dst)
|
||||
if err != nil {
|
||||
return fmt.Errorf(
|
||||
"Unable to unmarshal ModsGetModsModsMod.Created_at: %w", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type __premarshalModsGetModsModsMod struct {
|
||||
Id string `json:"id"`
|
||||
|
||||
Name string `json:"name"`
|
||||
|
||||
Mod_reference string `json:"mod_reference"`
|
||||
|
||||
Last_version_date json.RawMessage `json:"last_version_date"`
|
||||
|
||||
Created_at json.RawMessage `json:"created_at"`
|
||||
|
||||
Views int `json:"views"`
|
||||
|
||||
Downloads int `json:"downloads"`
|
||||
|
||||
Popularity int `json:"popularity"`
|
||||
|
||||
Hotness int `json:"hotness"`
|
||||
}
|
||||
|
||||
func (v *ModsGetModsModsMod) MarshalJSON() ([]byte, error) {
|
||||
premarshaled, err := v.__premarshalJSON()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return json.Marshal(premarshaled)
|
||||
}
|
||||
|
||||
func (v *ModsGetModsModsMod) __premarshalJSON() (*__premarshalModsGetModsModsMod, error) {
|
||||
var retval __premarshalModsGetModsModsMod
|
||||
|
||||
retval.Id = v.Id
|
||||
retval.Name = v.Name
|
||||
retval.Mod_reference = v.Mod_reference
|
||||
{
|
||||
|
||||
dst := &retval.Last_version_date
|
||||
src := v.Last_version_date
|
||||
var err error
|
||||
*dst, err = json.Marshal(
|
||||
&src)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf(
|
||||
"Unable to marshal ModsGetModsModsMod.Last_version_date: %w", err)
|
||||
}
|
||||
}
|
||||
{
|
||||
|
||||
dst := &retval.Created_at
|
||||
src := v.Created_at
|
||||
var err error
|
||||
*dst, err = json.Marshal(
|
||||
&src)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf(
|
||||
"Unable to marshal ModsGetModsModsMod.Created_at: %w", err)
|
||||
}
|
||||
}
|
||||
retval.Views = v.Views
|
||||
retval.Downloads = v.Downloads
|
||||
retval.Popularity = v.Popularity
|
||||
retval.Hotness = v.Hotness
|
||||
return &retval, nil
|
||||
}
|
||||
|
||||
// ModsResponse is returned by Mods on success.
|
||||
type ModsResponse struct {
|
||||
GetMods ModsGetMods `json:"getMods"`
|
||||
}
|
||||
|
||||
// GetGetMods returns ModsResponse.GetMods, and is useful for accessing the field via an interface.
|
||||
func (v *ModsResponse) GetGetMods() ModsGetMods { return v.GetMods }
|
||||
|
||||
type Order string
|
||||
|
||||
const (
|
||||
OrderAsc Order = "asc"
|
||||
OrderDesc Order = "desc"
|
||||
)
|
||||
|
||||
// ResolveModDependenciesModsModVersion includes the requested fields of the GraphQL type ModVersion.
|
||||
type ResolveModDependenciesModsModVersion struct {
|
||||
Id string `json:"id"`
|
||||
Mod_reference string `json:"mod_reference"`
|
||||
Versions []ResolveModDependenciesModsModVersionVersionsVersion `json:"versions"`
|
||||
}
|
||||
|
||||
// GetId returns ResolveModDependenciesModsModVersion.Id, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersion) GetId() string { return v.Id }
|
||||
|
||||
// GetMod_reference returns ResolveModDependenciesModsModVersion.Mod_reference, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersion) GetMod_reference() string { return v.Mod_reference }
|
||||
|
||||
// GetVersions returns ResolveModDependenciesModsModVersion.Versions, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersion) GetVersions() []ResolveModDependenciesModsModVersionVersionsVersion {
|
||||
return v.Versions
|
||||
}
|
||||
|
||||
// ResolveModDependenciesModsModVersionVersionsVersion includes the requested fields of the GraphQL type Version.
|
||||
type ResolveModDependenciesModsModVersionVersionsVersion struct {
|
||||
Id string `json:"id"`
|
||||
Version string `json:"version"`
|
||||
Link string `json:"link"`
|
||||
Hash string `json:"hash"`
|
||||
Dependencies []ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency `json:"dependencies"`
|
||||
}
|
||||
|
||||
// GetId returns ResolveModDependenciesModsModVersionVersionsVersion.Id, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersion) GetId() string { return v.Id }
|
||||
|
||||
// GetVersion returns ResolveModDependenciesModsModVersionVersionsVersion.Version, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersion) GetVersion() string { return v.Version }
|
||||
|
||||
// GetLink returns ResolveModDependenciesModsModVersionVersionsVersion.Link, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersion) GetLink() string { return v.Link }
|
||||
|
||||
// GetHash returns ResolveModDependenciesModsModVersionVersionsVersion.Hash, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersion) GetHash() string { return v.Hash }
|
||||
|
||||
// GetDependencies returns ResolveModDependenciesModsModVersionVersionsVersion.Dependencies, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersion) GetDependencies() []ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency {
|
||||
return v.Dependencies
|
||||
}
|
||||
|
||||
// ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency includes the requested fields of the GraphQL type VersionDependency.
|
||||
type ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency struct {
|
||||
Condition string `json:"condition"`
|
||||
Mod_id string `json:"mod_id"`
|
||||
Optional bool `json:"optional"`
|
||||
}
|
||||
|
||||
// GetCondition returns ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency.Condition, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency) GetCondition() string {
|
||||
return v.Condition
|
||||
}
|
||||
|
||||
// GetMod_id returns ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency.Mod_id, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency) GetMod_id() string {
|
||||
return v.Mod_id
|
||||
}
|
||||
|
||||
// GetOptional returns ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency.Optional, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesModsModVersionVersionsVersionDependenciesVersionDependency) GetOptional() bool {
|
||||
return v.Optional
|
||||
}
|
||||
|
||||
// ResolveModDependenciesResponse is returned by ResolveModDependencies on success.
|
||||
type ResolveModDependenciesResponse struct {
|
||||
Mods []ResolveModDependenciesModsModVersion `json:"mods"`
|
||||
}
|
||||
|
||||
// GetMods returns ResolveModDependenciesResponse.Mods, and is useful for accessing the field via an interface.
|
||||
func (v *ResolveModDependenciesResponse) GetMods() []ResolveModDependenciesModsModVersion {
|
||||
return v.Mods
|
||||
}
|
||||
|
||||
// SMLVersionsResponse is returned by SMLVersions on success.
|
||||
type SMLVersionsResponse struct {
|
||||
SmlVersions SMLVersionsSmlVersionsGetSMLVersions `json:"smlVersions"`
|
||||
}
|
||||
|
||||
// GetSmlVersions returns SMLVersionsResponse.SmlVersions, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsResponse) GetSmlVersions() SMLVersionsSmlVersionsGetSMLVersions {
|
||||
return v.SmlVersions
|
||||
}
|
||||
|
||||
// SMLVersionsSmlVersionsGetSMLVersions includes the requested fields of the GraphQL type GetSMLVersions.
|
||||
type SMLVersionsSmlVersionsGetSMLVersions struct {
|
||||
Count int `json:"count"`
|
||||
Sml_versions []SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion `json:"sml_versions"`
|
||||
}
|
||||
|
||||
// GetCount returns SMLVersionsSmlVersionsGetSMLVersions.Count, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsSmlVersionsGetSMLVersions) GetCount() int { return v.Count }
|
||||
|
||||
// GetSml_versions returns SMLVersionsSmlVersionsGetSMLVersions.Sml_versions, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsSmlVersionsGetSMLVersions) GetSml_versions() []SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion {
|
||||
return v.Sml_versions
|
||||
}
|
||||
|
||||
// SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion includes the requested fields of the GraphQL type SMLVersion.
|
||||
type SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion struct {
|
||||
Id string `json:"id"`
|
||||
Version string `json:"version"`
|
||||
Satisfactory_version int `json:"satisfactory_version"`
|
||||
}
|
||||
|
||||
// GetId returns SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion.Id, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion) GetId() string { return v.Id }
|
||||
|
||||
// GetVersion returns SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion.Version, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion) GetVersion() string {
|
||||
return v.Version
|
||||
}
|
||||
|
||||
// GetSatisfactory_version returns SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion.Satisfactory_version, and is useful for accessing the field via an interface.
|
||||
func (v *SMLVersionsSmlVersionsGetSMLVersionsSml_versionsSMLVersion) GetSatisfactory_version() int {
|
||||
return v.Satisfactory_version
|
||||
}
|
||||
|
||||
type VersionFields string
|
||||
|
||||
const (
|
||||
VersionFieldsCreatedAt VersionFields = "created_at"
|
||||
VersionFieldsDownloads VersionFields = "downloads"
|
||||
VersionFieldsUpdatedAt VersionFields = "updated_at"
|
||||
)
|
||||
|
||||
type VersionFilter struct {
|
||||
Ids []string `json:"ids,omitempty"`
|
||||
Limit int `json:"limit,omitempty"`
|
||||
Offset int `json:"offset,omitempty"`
|
||||
Order Order `json:"order,omitempty"`
|
||||
Order_by VersionFields `json:"order_by,omitempty"`
|
||||
Search string `json:"search,omitempty"`
|
||||
}
|
||||
|
||||
// GetIds returns VersionFilter.Ids, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetIds() []string { return v.Ids }
|
||||
|
||||
// GetLimit returns VersionFilter.Limit, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetLimit() int { return v.Limit }
|
||||
|
||||
// GetOffset returns VersionFilter.Offset, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetOffset() int { return v.Offset }
|
||||
|
||||
// GetOrder returns VersionFilter.Order, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetOrder() Order { return v.Order }
|
||||
|
||||
// GetOrder_by returns VersionFilter.Order_by, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetOrder_by() VersionFields { return v.Order_by }
|
||||
|
||||
// GetSearch returns VersionFilter.Search, and is useful for accessing the field via an interface.
|
||||
func (v *VersionFilter) GetSearch() string { return v.Search }
|
||||
|
||||
// __GetModInput is used internally by genqlient
|
||||
type __GetModInput struct {
|
||||
ModId string `json:"modId"`
|
||||
}
|
||||
|
||||
// GetModId returns __GetModInput.ModId, and is useful for accessing the field via an interface.
|
||||
func (v *__GetModInput) GetModId() string { return v.ModId }
|
||||
|
||||
// __ModVersionsInput is used internally by genqlient
|
||||
type __ModVersionsInput struct {
|
||||
ModId string `json:"modId,omitempty"`
|
||||
Filter VersionFilter `json:"filter,omitempty"`
|
||||
}
|
||||
|
||||
// GetModId returns __ModVersionsInput.ModId, and is useful for accessing the field via an interface.
|
||||
func (v *__ModVersionsInput) GetModId() string { return v.ModId }
|
||||
|
||||
// GetFilter returns __ModVersionsInput.Filter, and is useful for accessing the field via an interface.
|
||||
func (v *__ModVersionsInput) GetFilter() VersionFilter { return v.Filter }
|
||||
|
||||
// __ModsInput is used internally by genqlient
|
||||
type __ModsInput struct {
|
||||
Filter ModFilter `json:"filter,omitempty"`
|
||||
}
|
||||
|
||||
// GetFilter returns __ModsInput.Filter, and is useful for accessing the field via an interface.
|
||||
func (v *__ModsInput) GetFilter() ModFilter { return v.Filter }
|
||||
|
||||
// __ResolveModDependenciesInput is used internally by genqlient
|
||||
type __ResolveModDependenciesInput struct {
|
||||
Filter []ModVersionConstraint `json:"filter"`
|
||||
}
|
||||
|
||||
// GetFilter returns __ResolveModDependenciesInput.Filter, and is useful for accessing the field via an interface.
|
||||
func (v *__ResolveModDependenciesInput) GetFilter() []ModVersionConstraint { return v.Filter }
|
||||
|
||||
func GetMod(
|
||||
ctx context.Context,
|
||||
client graphql.Client,
|
||||
modId string,
|
||||
) (*GetModResponse, error) {
|
||||
__input := __GetModInput{
|
||||
ModId: modId,
|
||||
}
|
||||
var err error
|
||||
|
||||
var retval GetModResponse
|
||||
err = client.MakeRequest(
|
||||
ctx,
|
||||
"GetMod",
|
||||
`
|
||||
query GetMod ($modId: ModID!) {
|
||||
getMod(modId: $modId) {
|
||||
id
|
||||
mod_reference
|
||||
name
|
||||
views
|
||||
downloads
|
||||
authors {
|
||||
role
|
||||
user {
|
||||
username
|
||||
}
|
||||
}
|
||||
full_description
|
||||
source_url
|
||||
created_at
|
||||
}
|
||||
}
|
||||
`,
|
||||
&retval,
|
||||
&__input,
|
||||
)
|
||||
return &retval, err
|
||||
}
|
||||
|
||||
func ModVersions(
|
||||
ctx context.Context,
|
||||
client graphql.Client,
|
||||
modId string,
|
||||
filter VersionFilter,
|
||||
) (*ModVersionsResponse, error) {
|
||||
__input := __ModVersionsInput{
|
||||
ModId: modId,
|
||||
Filter: filter,
|
||||
}
|
||||
var err error
|
||||
|
||||
var retval ModVersionsResponse
|
||||
err = client.MakeRequest(
|
||||
ctx,
|
||||
"ModVersions",
|
||||
`
|
||||
query ModVersions ($modId: String!, $filter: VersionFilter) {
|
||||
mod: getModByIdOrReference(modIdOrReference: $modId) {
|
||||
id
|
||||
versions(filter: $filter) {
|
||||
id
|
||||
version
|
||||
}
|
||||
}
|
||||
}
|
||||
`,
|
||||
&retval,
|
||||
&__input,
|
||||
)
|
||||
return &retval, err
|
||||
}
|
||||
|
||||
func Mods(
|
||||
ctx context.Context,
|
||||
client graphql.Client,
|
||||
filter ModFilter,
|
||||
) (*ModsResponse, error) {
|
||||
__input := __ModsInput{
|
||||
Filter: filter,
|
||||
}
|
||||
var err error
|
||||
|
||||
var retval ModsResponse
|
||||
err = client.MakeRequest(
|
||||
ctx,
|
||||
"Mods",
|
||||
`
|
||||
query Mods ($filter: ModFilter) {
|
||||
getMods(filter: $filter) {
|
||||
count
|
||||
mods {
|
||||
id
|
||||
name
|
||||
mod_reference
|
||||
last_version_date
|
||||
created_at
|
||||
views
|
||||
downloads
|
||||
popularity
|
||||
hotness
|
||||
}
|
||||
}
|
||||
}
|
||||
`,
|
||||
&retval,
|
||||
&__input,
|
||||
)
|
||||
return &retval, err
|
||||
}
|
||||
|
||||
func ResolveModDependencies(
|
||||
ctx context.Context,
|
||||
client graphql.Client,
|
||||
filter []ModVersionConstraint,
|
||||
) (*ResolveModDependenciesResponse, error) {
|
||||
__input := __ResolveModDependenciesInput{
|
||||
Filter: filter,
|
||||
}
|
||||
var err error
|
||||
|
||||
var retval ResolveModDependenciesResponse
|
||||
err = client.MakeRequest(
|
||||
ctx,
|
||||
"ResolveModDependencies",
|
||||
`
|
||||
query ResolveModDependencies ($filter: [ModVersionConstraint!]!) {
|
||||
mods: resolveModVersions(filter: $filter) {
|
||||
id
|
||||
mod_reference
|
||||
versions {
|
||||
id
|
||||
version
|
||||
link
|
||||
hash
|
||||
dependencies {
|
||||
condition
|
||||
mod_id
|
||||
optional
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`,
|
||||
&retval,
|
||||
&__input,
|
||||
)
|
||||
return &retval, err
|
||||
}
|
||||
|
||||
func SMLVersions(
|
||||
ctx context.Context,
|
||||
client graphql.Client,
|
||||
) (*SMLVersionsResponse, error) {
|
||||
var err error
|
||||
|
||||
var retval SMLVersionsResponse
|
||||
err = client.MakeRequest(
|
||||
ctx,
|
||||
"SMLVersions",
|
||||
`
|
||||
query SMLVersions {
|
||||
smlVersions: getSMLVersions(filter: {limit:100}) {
|
||||
count
|
||||
sml_versions {
|
||||
id
|
||||
version
|
||||
satisfactory_version
|
||||
}
|
||||
}
|
||||
}
|
||||
`,
|
||||
&retval,
|
||||
nil,
|
||||
)
|
||||
return &retval, err
|
||||
}
|
Loading…
Reference in a new issue