-
Notifications
You must be signed in to change notification settings - Fork 4
Generate SDK in pollination-server #135
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
base: master
Are you sure you want to change the base?
Conversation
| /// </summary> | ||
| /// <value>Version of the package.</value> | ||
| public const string Version = "0.14.0"; | ||
| public const string Version = "1.0.0"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version is not generated correctly
| /// </summary> | ||
| [DataContract(Name = "APIToken")] | ||
| public partial class APIToken : OpenAPIGenBaseModel, IEquatable<APIToken>, IValidatableObject | ||
| public partial class APIToken : IEquatable<APIToken>, IValidatableObject |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing inherent
| AnyOf<Recipe,Plugin> GetPackageJson (string owner, string type, string name, string digest); | ||
| /// <param name="baked"> (optional, default to false)</param> | ||
| /// <returns>AnyOfRecipePluginBakedRecipe</returns> | ||
| AnyOfRecipePluginBakedRecipe GetPackageJson (string owner, string type, string name, string digest, bool? baked = default); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Failed to replace AnyOfRecipePluginBakedRecipe to AnyOf<Recipe,Plugin,BakedRecipe>.
This might be a bug in post-gen-script.py
This PR contains the code generated by the changes in https://github.com/pollination/pollination-server/pull/495