-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Silently ignore weird fields. As long as required things show up. * Warn about ignored fields.
- Loading branch information
1 parent
39394bf
commit 129a52b
Showing
30 changed files
with
201 additions
and
155 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
|
@@ -18,10 +18,10 @@ | |
@ parameter_name: chr "parm1" | ||
@ location : chr "query" | ||
|
||
# as_api_key_security_scheme() errors for un/misnamed input | ||
# as_api_key_security_scheme() errors for unnamed input | ||
|
||
Code | ||
as_api_key_security_scheme(list(a = "Jon", b = "[email protected]")) | ||
as_api_key_security_scheme(list("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "parameter_name", "location", "in", or "name". | ||
|
This file contains 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 |
---|---|---|
|
@@ -123,7 +123,7 @@ | |
@ authorization_url: chr "https://auth.ebay.com/oauth2/authorize" | ||
@ token_url : chr "https://api.ebay.com/identity/v1/oauth2/token" | ||
|
||
# as_oauth2_authorization_code_flow() errors for un/misnamed input | ||
# as_oauth2_authorization_code_flow() errors for unnamed input | ||
|
||
Code | ||
as_oauth2_authorization_code_flow("a") | ||
|
@@ -132,15 +132,6 @@ | |
! `x` must have names "refresh_url", "scopes", "authorization_url", or "token_url". | ||
* Any other names are ignored. | ||
|
||
--- | ||
|
||
Code | ||
as_oauth2_authorization_code_flow(list(a = "Jon", b = "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "refresh_url", "scopes", "authorization_url", or "token_url". | ||
* Any other names are ignored. | ||
|
||
# as_oauth2_authorization_code_flow() errors for bad classes | ||
|
||
Code | ||
|
This file contains 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 |
---|---|---|
|
@@ -92,10 +92,10 @@ | |
.. @ description: chr [1:2] "View and manage your account settings" ... | ||
@ authorization_url: chr "https://auth.ebay.com/oauth2/authorize" | ||
|
||
# as_oauth2_implicit_flow() errors for unnamed or misnamed input | ||
# as_oauth2_implicit_flow() errors for unnamed input | ||
|
||
Code | ||
as_oauth2_implicit_flow(list(a = "Jon", b = "[email protected]")) | ||
as_oauth2_implicit_flow(list("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "refresh_url", "scopes", or "authorization_url". | ||
|
This file contains 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 |
---|---|---|
|
@@ -93,10 +93,10 @@ | |
.. @ description: chr [1:2] "View and manage your account settings" ... | ||
@ token_url : chr "https://auth.ebay.com/oauth2/token" | ||
|
||
# as_oauth2_token_flow() errors for unnamed or misnamed input | ||
# as_oauth2_token_flow() errors for unnamed input | ||
|
||
Code | ||
as_oauth2_token_flow(list(a = "Jon", b = "[email protected]")) | ||
as_oauth2_token_flow(list("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "refresh_url", "scopes", or "token_url". | ||
|
This file contains 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 |
---|---|---|
|
@@ -75,10 +75,10 @@ | |
.. @ authorization_url: chr(0) | ||
.. @ token_url : chr(0) | ||
|
||
# as_oauth2_security_scheme() errors for unnamed or misnamed input | ||
# as_oauth2_security_scheme() errors for unnamed input | ||
|
||
Code | ||
as_oauth2_security_scheme(list(a = "Jon", b = "[email protected]")) | ||
as_oauth2_security_scheme(list("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must contain a named flows object. | ||
|
This file contains 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 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 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 |
---|---|---|
|
@@ -64,7 +64,7 @@ | |
@ email: chr(0) | ||
@ url : chr(0) | ||
|
||
# as_contact() errors informatively for unnamed or misnamed input | ||
# as_contact() errors informatively for unnamed input | ||
|
||
Code | ||
as_contact(letters) | ||
|
@@ -76,7 +76,7 @@ | |
--- | ||
|
||
Code | ||
as_contact(list(a = "Jon", b = "[email protected]")) | ||
as_contact(list("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "name", "email", or "url". | ||
|
@@ -85,7 +85,7 @@ | |
--- | ||
|
||
Code | ||
as_contact(c(a = "Jon", b = "[email protected]")) | ||
as_contact(c("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! `x` must have names "name", "email", or "url". | ||
|
This file contains 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 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 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 |
---|---|---|
|
@@ -124,7 +124,7 @@ | |
.. $ : NULL | ||
@ description: chr [1:3] "The active user's folder." NA NA | ||
|
||
# as_string_replacements() errors for un/misnamed input | ||
# as_string_replacements() errors for unnamed input | ||
|
||
Code | ||
as_string_replacements(letters) | ||
|
@@ -135,7 +135,7 @@ | |
--- | ||
|
||
Code | ||
as_string_replacements(list(a = "Jon", b = "[email protected]")) | ||
as_string_replacements(list("Jon", "[email protected]")) | ||
Condition | ||
Error in `purrr::map_chr()`: | ||
i In index: 1. | ||
|
@@ -145,7 +145,7 @@ | |
--- | ||
|
||
Code | ||
as_string_replacements(c(a = "Jon", b = "[email protected]")) | ||
as_string_replacements(c("Jon", "[email protected]")) | ||
Condition | ||
Error: | ||
! Can't coerce `x` <character> to <string_replacements>. | ||
|
This file contains 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 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
Binary file not shown.
Oops, something went wrong.