-
Notifications
You must be signed in to change notification settings - Fork 7
[PLA-2471] Regenerate and set version to v3.0.3 #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/BatchTransactionModeEnum.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// Determines how a batch transaction handles failed calls. | ||
| /// </summary> | ||
| public enum BatchTransactionModeEnum | ||
| { | ||
| [EnumMember(Value = "HALT_ON_ERROR")] HaltOnError, | ||
| [EnumMember(Value = "CONTINUE_ON_ERROR")] ContinueOnError, | ||
| [EnumMember(Value = "ALL_OR_NOTHING")] AllOrNothing | ||
| } | ||
|
|
23 changes: 23 additions & 0 deletions
23
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/CoveragePolicy.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// Whether the fuel tank covers only transaction fees (FEES) or fees and the storage deposit (FEES_AND_DEPOSIT). | ||
| /// </summary> | ||
| public enum CoveragePolicy | ||
| { | ||
| [EnumMember(Value = "FEES")] Fees, | ||
| [EnumMember(Value = "FEES_AND_DEPOSIT")] FeesAndDeposit | ||
| } | ||
|
|
67 changes: 67 additions & 0 deletions
67
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/FuelTankPermittedMethod.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// A transaction method that a fuel tank rule set may permit. Identifies the pallet and extrinsic; the call arguments are irrelevant on-chain. | ||
| /// </summary> | ||
| public enum FuelTankPermittedMethod | ||
| { | ||
| [EnumMember(Value = "CREATE_COLLECTION")] CreateCollection, | ||
| [EnumMember(Value = "DESTROY_COLLECTION")] DestroyCollection, | ||
| [EnumMember(Value = "MUTATE_COLLECTION")] MutateCollection, | ||
| [EnumMember(Value = "MUTATE_TOKEN")] MutateToken, | ||
| [EnumMember(Value = "CREATE_TOKEN")] CreateToken, | ||
| [EnumMember(Value = "MINT_TOKEN")] MintToken, | ||
| [EnumMember(Value = "TRANSFER_TOKEN")] TransferToken, | ||
| [EnumMember(Value = "CREATE_TOKENS")] CreateTokens, | ||
| [EnumMember(Value = "MINT_TOKENS")] MintTokens, | ||
| [EnumMember(Value = "BATCH_TRANSFER")] BatchTransfer, | ||
| [EnumMember(Value = "FREEZE_COLLECTION")] FreezeCollection, | ||
| [EnumMember(Value = "THAW_COLLECTION")] ThawCollection, | ||
| [EnumMember(Value = "FREEZE_TOKEN")] FreezeToken, | ||
| [EnumMember(Value = "THAW_TOKEN")] ThawToken, | ||
| [EnumMember(Value = "BURN_TOKEN")] BurnToken, | ||
| [EnumMember(Value = "INFUSE_TOKEN")] InfuseToken, | ||
| [EnumMember(Value = "INFUSE_TOKENS")] InfuseTokens, | ||
| [EnumMember(Value = "TRANSFER_ENJ")] TransferEnj, | ||
| [EnumMember(Value = "CREATE_LISTING")] CreateListing, | ||
| [EnumMember(Value = "CANCEL_LISTING")] CancelListing, | ||
| [EnumMember(Value = "FILL_LISTING")] FillListing, | ||
| [EnumMember(Value = "FINALIZE_AUCTION")] FinalizeAuction, | ||
| [EnumMember(Value = "ADD_WHITELISTED_ACCOUNTS")] AddWhitelistedAccounts, | ||
| [EnumMember(Value = "REMOVE_WHITELISTED_ACCOUNTS")] RemoveWhitelistedAccounts, | ||
| [EnumMember(Value = "PLACE_BID")] PlaceBid, | ||
| [EnumMember(Value = "PLACE_COUNTER_OFFER")] PlaceCounterOffer, | ||
| [EnumMember(Value = "ANSWER_COUNTER_OFFER")] AnswerCounterOffer, | ||
| [EnumMember(Value = "CREATE_TOKEN_GROUP")] CreateTokenGroup, | ||
| [EnumMember(Value = "DESTROY_TOKEN_GROUP")] DestroyTokenGroup, | ||
| [EnumMember(Value = "ADD_TOKEN_TO_GROUP")] AddTokenToGroup, | ||
| [EnumMember(Value = "REMOVE_TOKEN_FROM_GROUP")] RemoveTokenFromGroup, | ||
| [EnumMember(Value = "SET_TOKEN_GROUPS")] SetTokenGroups, | ||
| [EnumMember(Value = "SET_TOKEN_GROUP_ATTRIBUTE")] SetTokenGroupAttribute, | ||
| [EnumMember(Value = "REMOVE_TOKEN_GROUP_ATTRIBUTE")] RemoveTokenGroupAttribute, | ||
| [EnumMember(Value = "SET_TOKEN_ATTRIBUTE")] SetTokenAttribute, | ||
| [EnumMember(Value = "SET_COLLECTION_ATTRIBUTE")] SetCollectionAttribute, | ||
| [EnumMember(Value = "REMOVE_TOKEN_ATTRIBUTE")] RemoveTokenAttribute, | ||
| [EnumMember(Value = "REMOVE_COLLECTION_ATTRIBUTE")] RemoveCollectionAttribute, | ||
| [EnumMember(Value = "BATCH_SET_COLLECTION_ATTRIBUTE")] BatchSetCollectionAttribute, | ||
| [EnumMember(Value = "BATCH_SET_TOKEN_ATTRIBUTE")] BatchSetTokenAttribute, | ||
| [EnumMember(Value = "REMOVE_ALL_COLLECTION_ATTRIBUTES")] RemoveAllCollectionAttributes, | ||
| [EnumMember(Value = "REMOVE_ALL_TOKEN_ATTRIBUTES")] RemoveAllTokenAttributes, | ||
| [EnumMember(Value = "ACCEPT_COLLECTION_TRANSFER")] AcceptCollectionTransfer, | ||
| [EnumMember(Value = "CANCEL_COLLECTION_TRANSFER")] CancelCollectionTransfer, | ||
| [EnumMember(Value = "APPROVE_COLLECTION")] ApproveCollection, | ||
| [EnumMember(Value = "UNAPPROVE_COLLECTION")] UnapproveCollection | ||
| } | ||
|
|
25 changes: 25 additions & 0 deletions
25
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/FuelTankWhitelistedPallet.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// A pallet that a fuel tank rule set may whitelist, allowing any of its calls. | ||
| /// </summary> | ||
| public enum FuelTankWhitelistedPallet | ||
| { | ||
| [EnumMember(Value = "MULTI_TOKENS")] MultiTokens, | ||
| [EnumMember(Value = "BALANCES")] Balances, | ||
| [EnumMember(Value = "MARKETPLACE")] Marketplace, | ||
| [EnumMember(Value = "UTILITY")] Utility | ||
| } | ||
|
|
23 changes: 23 additions & 0 deletions
23
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/ManagedWalletSweepStatusEnum.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// The sweep status of a managed wallet: SWEPT once emptied of transferable tokens, PENDING while any remain. | ||
| /// </summary> | ||
| public enum ManagedWalletSweepStatusEnum | ||
| { | ||
| [EnumMember(Value = "PENDING")] Pending, | ||
| [EnumMember(Value = "SWEPT")] Swept | ||
| } | ||
|
|
24 changes: 24 additions & 0 deletions
24
src/Enjin.Platform.Sdk/Enjin.Platform.Sdk/Schema/Enums/ShouldMutateAction.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| // <auto-generated> This file has been auto generated. </auto-generated> | ||
| #nullable enable annotations | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.ComponentModel; | ||
| using System.Globalization; | ||
| using System.Runtime.Serialization; | ||
| #if !GRAPHQL_GENERATOR_DISABLE_NEWTONSOFT_JSON | ||
| using Newtonsoft.Json; | ||
| #endif | ||
|
|
||
| namespace Enjin.Platform.Sdk; | ||
|
|
||
| /// <summary> | ||
| /// How to apply an optional mutation field on the fuel tank. NO_MUTATION keeps the existing value; CLEAR sets it to None; SET requires a value and applies it. | ||
| /// </summary> | ||
| public enum ShouldMutateAction | ||
| { | ||
| [EnumMember(Value = "NO_MUTATION")] NoMutation, | ||
| [EnumMember(Value = "CLEAR")] Clear, | ||
| [EnumMember(Value = "SET")] Set | ||
| } | ||
|
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.