Skip to content

fix: add verification_phone_number property to create sign request (box/box-openapi#515) #503

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 19 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1495a05
docs: Documentation for Java SDK (box/box-codegen#664)
box-sdk-build Feb 21, 2025
0806a40
docs: remove beta tag for AI extract endpoints (box/box-openapi#511)
box-sdk-build Feb 21, 2025
5305463
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Feb 21, 2025
3fa0476
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Feb 24, 2025
680206c
test: reorder function calls to fix test samples (box/box-codegen#666)
box-sdk-build Feb 24, 2025
e5f7815
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Feb 26, 2025
7a74063
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Feb 26, 2025
764e56f
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Mar 3, 2025
7a75895
Auto resolve conflict by keeping our changes
Mar 4, 2025
c211acf
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Mar 5, 2025
ef54025
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Mar 6, 2025
48a9e51
Auto resolve conflict by keeping our changes
Mar 7, 2025
dd91b1d
test: Remove notification_email test because of business logic has ch…
box-sdk-build Mar 10, 2025
6e45783
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Mar 10, 2025
1d83fae
chore: Update .codegen.json with commit hash of codegen and openapi spec
box-sdk-build Mar 11, 2025
2394b11
feat: add find app item for shared link endpoint (box/box-openapi#514)
box-sdk-build Mar 12, 2025
779811b
fix: add verification_phone_number property to create sign request (b…
box-sdk-build Mar 12, 2025
59053a1
Auto resolve conflict by keeping our changes
Mar 12, 2025
5e7e984
Auto resolve conflict by keeping our changes
Mar 13, 2025
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
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "41feeaa", "specHash": "3dc6f70", "version": "1.12.0" }
{ "engineHash": "41feeaa", "specHash": "1080bb4", "version": "1.12.0" }
6 changes: 6 additions & 0 deletions box_sdk_gen/schemas/sign_request_create_signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def __init__(
redirect_url: Optional[str] = None,
declined_redirect_url: Optional[str] = None,
login_required: Optional[bool] = None,
verification_phone_number: Optional[str] = None,
password: Optional[str] = None,
signer_group_id: Optional[str] = None,
suppress_notifications: Optional[bool] = None,
Expand Down Expand Up @@ -64,6 +65,10 @@ def __init__(
an existing account, they will have the option to create
a free Box account., defaults to None
:type login_required: Optional[bool], optional
:param verification_phone_number: If set, this phone number will be used to verify the signer
via two-factor authentication before they are able to sign the document.
Cannot be selected in combination with `login_required`., defaults to None
:type verification_phone_number: Optional[str], optional
:param password: If set, the signer is required to enter the password before they are able
to sign a document. This field is write only., defaults to None
:type password: Optional[str], optional
Expand All @@ -87,6 +92,7 @@ def __init__(
self.redirect_url = redirect_url
self.declined_redirect_url = declined_redirect_url
self.login_required = login_required
self.verification_phone_number = verification_phone_number
self.password = password
self.signer_group_id = signer_group_id
self.suppress_notifications = suppress_notifications
6 changes: 6 additions & 0 deletions box_sdk_gen/schemas/sign_request_signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def __init__(
redirect_url: Optional[str] = None,
declined_redirect_url: Optional[str] = None,
login_required: Optional[bool] = None,
verification_phone_number: Optional[str] = None,
password: Optional[str] = None,
signer_group_id: Optional[str] = None,
suppress_notifications: Optional[bool] = None,
Expand Down Expand Up @@ -118,6 +119,10 @@ def __init__(
an existing account, they will have the option to create
a free Box account., defaults to None
:type login_required: Optional[bool], optional
:param verification_phone_number: If set, this phone number will be used to verify the signer
via two-factor authentication before they are able to sign the document.
Cannot be selected in combination with `login_required`., defaults to None
:type verification_phone_number: Optional[str], optional
:param password: If set, the signer is required to enter the password before they are able
to sign a document. This field is write only., defaults to None
:type password: Optional[str], optional
Expand All @@ -141,6 +146,7 @@ def __init__(
redirect_url=redirect_url,
declined_redirect_url=declined_redirect_url,
login_required=login_required,
verification_phone_number=verification_phone_number,
password=password,
signer_group_id=signer_group_id,
suppress_notifications=suppress_notifications,
Expand Down
Loading