Skip to content

Commit

Permalink
fix: new filtered cat gateway openAPI files
Browse files Browse the repository at this point in the history
  • Loading branch information
LynxLynxx committed Nov 12, 2024
1 parent 0e5bcf9 commit dbb6c34
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 2,544 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,6 @@ enum LogLevel {
const LogLevel(this.value);
}

enum Network {
@JsonValue(null)
swaggerGeneratedUnknown(null),

@JsonValue('mainnet')
mainnet('mainnet'),
@JsonValue('preprod')
preprod('preprod'),
@JsonValue('preview')
preview('preview');

final String? value;

const Network(this.value);
}

enum ReasonRejected {
@JsonValue(null)
swaggerGeneratedUnknown(null),
Expand Down Expand Up @@ -80,27 +64,3 @@ enum VoterGroupId {

const VoterGroupId(this.value);
}

enum VotingInfoDelegationsType {
@JsonValue(null)
swaggerGeneratedUnknown(null),

@JsonValue('Delegated')
delegated('Delegated');

final String? value;

const VotingInfoDelegationsType(this.value);
}

enum VotingInfoDirectVoterType {
@JsonValue(null)
swaggerGeneratedUnknown(null),

@JsonValue('Direct')
direct('Direct');

final String? value;

const VotingInfoDirectVoterType(this.value);
}
Loading

0 comments on commit dbb6c34

Please sign in to comment.