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

feat: add read-only params to sign templates #400

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
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
12 changes: 11 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2.0.0",
"x-box-commit-hash": "d3a7365495"
"x-box-commit-hash": "ee67564780"
},
"servers": [
{
Expand Down Expand Up @@ -33160,6 +33160,11 @@
"description": "The label field is used especially for text, attachment, radio, and checkbox type inputs.",
"nullable": true,
"example": "Legal name"
},
"read_only": {
"type": "boolean",
"description": "Whether this input was defined as read-only(immutable by signers) or not",
"example": true
}
}
}
Expand Down Expand Up @@ -37459,6 +37464,11 @@
"type": "integer",
"description": "Index of page that the input is on",
"example": 4
},
"read_only": {
"type": "boolean",
"description": "Whether this input was defined as read-only(immutable by signers) or not",
"example": true
}
}
}
Expand Down
Loading