Skip to content
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

chore(shorebird_code_push_protocol): make CreateReleaseArtifactRequest canSideload optional #1287

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(shorebird_code_push_protocol): make CreateReleaseArtifactReques…
…t canSideload optional
  • Loading branch information
bryanoltman committed Sep 19, 2023
commit 4e0a821b90e4b5e369d8a096ed78741a615edbc3
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class CreateReleaseArtifactRequest {

/// Whether the artifact can installed and run on a device/emulator as-is.
@JsonKey(fromJson: _parseStringToBool, toJson: _parseBoolToString)
final bool canSideload;
final bool? canSideload;

/// The size of the artifact in bytes.
@JsonKey(fromJson: _parseStringToInt, toJson: _parseIntToString)
Expand Down