Fix typo in various generators, templates (#20389)

* fix typo in various generators, templates

* update samples
This commit is contained in:
William Cheng 2024-12-30 18:52:18 +08:00 committed by GitHub
parent c5ac7d485f
commit 25283d46a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
90 changed files with 118 additions and 118 deletions

View File

@ -629,7 +629,7 @@ public class InlineModelResolver {
* breed:
* type: string
*
* @param key a unique name ofr the composed schema.
* @param key a unique name for the composed schema.
* @param children the list of nested schemas within a composed schema (allOf, anyOf, oneOf).
* @param skipAllOfInlineSchemas true if allOf inline schemas need to be skipped.
*/

View File

@ -1179,7 +1179,7 @@ public class ScalaCaskServerCodegen extends AbstractScalaCodegen implements Code
* <p>
* The data variant can have nulls and other non-scala things, but they know how to create validated model objects.
* <p>
* This 'asScalaDataType' is used to ensure the type hierarchy is correct for both the model and data varients.
* This 'asScalaDataType' is used to ensure the type hierarchy is correct for both the model and data variants.
* <p>
* e.g. consider this example:
* ```

View File

@ -1073,7 +1073,7 @@ public class SpringCodegen extends AbstractJavaCodegen
if (argObj instanceof List) {
List<String> provideArgs = (List<String>) argObj;
if (!provideArgs.isEmpty()) {
List<String> formatedArgs = new ArrayList<>();
List<String> formattedArgs = new ArrayList<>();
for (String oneArg : provideArgs) {
if (StringUtils.isNotEmpty(oneArg)) {
String regexp = "(?<AnnotationTag>@)?(?<ClassPath>(?<PackageName>(\\w+\\.)*)(?<ClassName>\\w+))(?<Params>\\(.*?\\))?\\s?";
@ -1095,10 +1095,10 @@ public class SpringCodegen extends AbstractJavaCodegen
}
String newArg = String.join(" ", newArgs);
LOGGER.trace("new arg {} {}", newArg);
formatedArgs.add(newArg);
formattedArgs.add(newArg);
}
}
operation.getExtensions().put("x-spring-provide-args", formatedArgs);
operation.getExtensions().put("x-spring-provide-args", formattedArgs);
}
}
return provideArgsClassSet;

View File

@ -229,7 +229,7 @@ web::json::value ModelBase::toJson( const std::vector<T>& value )
template<typename T>
web::json::value ModelBase::toJson( const std::set<T>& value )
{
// There's no protoype web::json::value::array(...) taking a std::set parameter. Converting to std::vector to get an array.
// There's no prototype web::json::value::array(...) taking a std::set parameter. Converting to std::vector to get an array.
std::vector<web::json::value> ret;
for ( const auto& x : value )
{

View File

@ -59,7 +59,7 @@ namespace {{packageName}}.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -389,7 +389,7 @@ namespace {{packageName}}.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -13,7 +13,7 @@ namespace {{packageName}}.{{clientPackage}}
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -65,7 +65,7 @@ namespace {{packageName}}.{{clientPackage}}
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -181,7 +181,7 @@ use function sprintf;
{{/vendorExtensions.x-group-parameters}}
{{#servers}}
{{#-first}}
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
{{/-first}}
* URL: {{{url}}}
{{#-last}}
@ -219,7 +219,7 @@ use function sprintf;
{{/vendorExtensions.x-group-parameters}}
{{#servers}}
{{#-first}}
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
{{/-first}}
* URL: {{{url}}}
{{#-last}}
@ -342,7 +342,7 @@ use function sprintf;
{{/vendorExtensions.x-group-parameters}}
{{#servers}}
{{#-first}}
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
{{/-first}}
* URL: {{{url}}}
{{#-last}}
@ -383,7 +383,7 @@ use function sprintf;
{{/vendorExtensions.x-group-parameters}}
{{#servers}}
{{#-first}}
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
{{/-first}}
* URL: {{{url}}}
{{#-last}}
@ -448,7 +448,7 @@ use function sprintf;
{{/vendorExtensions.x-group-parameters}}
{{#servers}}
{{#-first}}
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
{{/-first}}
* URL: {{{url}}}
{{#-last}}

View File

@ -29,7 +29,7 @@
{{#authMethods}}
{{#isOAuth}}
#' @field oauth_flow_type OAuth flow type
#' @field oauth_authorization_url Authoriziation URL
#' @field oauth_authorization_url Authorization URL
#' @field oauth_token_url Token URL
#' @field oauth_pkce Boolean flag to enable PKCE
{{/isOAuth}}
@ -73,7 +73,7 @@ ApiClient <- R6::R6Class(
{{#isOAuth}}
# Flow type
oauth_flow_type = "{{flow}}",
# Authoriziation URL
# Authorization URL
oauth_authorization_url = "{{authorizationUrl}}",
# Token URL
oauth_token_url = "{{tokenUrl}}",
@ -105,7 +105,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,

View File

@ -29,7 +29,7 @@
{{#authMethods}}
{{#isOAuth}}
#' @field oauth_flow_type OAuth flow type
#' @field oauth_authorization_url Authoriziation URL
#' @field oauth_authorization_url Authorization URL
#' @field oauth_token_url Token URL
#' @field oauth_pkce Boolean flag to enable PKCE
#' @field oauth_scopes OAuth scopes
@ -73,7 +73,7 @@ ApiClient <- R6::R6Class(
{{#isOAuth}}
# Flow type
oauth_flow_type = "{{flow}}",
# Authoriziation URL
# Authorization URL
oauth_authorization_url = "{{authorizationUrl}}",
# Token URL
oauth_token_url = "{{tokenUrl}}",
@ -107,7 +107,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,
@ -306,7 +306,7 @@ ApiClient <- R6::R6Class(
req <- req %>% req_oauth_auth_code(client, scope = req_oauth_scopes,
pkce = self$oauth_pkce,
auth_url = self$oauth_authoriziation_url)
auth_url = self$oauth_authorization_url)
}
{{/hasOAuthMethods}}

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -39,7 +39,7 @@
return Ok(Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
.body(Body::from("Failed to process message part due an internal error".to_string()))
.expect("Unable to create Internal Server Error response due to an internal errror"))
.expect("Unable to create Internal Server Error response due to an internal error"))
},
SaveResult::Error(e) => {
return Ok(Response::builder()

View File

@ -33,7 +33,7 @@ This project depends on [Xoson](https://github.com/Topheee/xoson) `v2.2.0` (and
git clone 'https://github.com/Topheee/xoson.git'
```
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarily, open the `{{{projectName}}}.xojo_project` file with Xojo and copy `{{{projectName}}}` to your project.
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarly, open the `{{{projectName}}}.xojo_project` file with Xojo and copy `{{{projectName}}}` to your project.
> Since Xojo currently has no package manager, you need to manually copy both the `Xoson` and the `{{{projectName}}}` modules to your Xojo project.

View File

@ -1,4 +1,4 @@
module.exports = {
// TODO: autentication logic
// TODO: authentication logic
// https://platform.zapier.com/cli_tutorials/getting-started#adding-authentication
};

View File

@ -869,7 +869,7 @@ public class InlineModelResolverTest {
// Contact
ComposedSchema contact = (ComposedSchema) openAPI.getComponents().getSchemas().get("Contact");
Schema contactAllOf = contact.getAllOf().get(1); // use the inline child scheam directly
Schema contactAllOf = contact.getAllOf().get(1); // use the inline child schema directly
assertEquals(contact.getExtensions().get("x-discriminator-value"), "contact");
assertEquals(contact.getAllOf().get(0).get$ref(), "#/components/schemas/Party");

View File

@ -99,7 +99,7 @@ public class OpenAPINormalizerTest {
@Test
public void testOpenAPINormalizerRemoveAnyOfOneOfAndKeepPropertiesOnly() {
// to test the rule REMOVE_ANYOF_ONEOF_AND_KEEP_PROPERTIIES_ONLY
// to test the rule REMOVE_ANYOF_ONEOF_AND_KEEP_PROPERTIES_ONLY
OpenAPI openAPI = TestUtils.parseSpec("src/test/resources/3_0/removeAnyOfOneOfAndKeepPropertiesOnly_test.yaml");
Schema schema = openAPI.getComponents().getSchemas().get("Person");

View File

@ -72,7 +72,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,

View File

@ -32,7 +32,7 @@
#' @field oauth_secret OAuth secret
#' @field oauth_refresh_token OAuth refresh token
#' @field oauth_flow_type OAuth flow type
#' @field oauth_authorization_url Authoriziation URL
#' @field oauth_authorization_url Authorization URL
#' @field oauth_token_url Token URL
#' @field oauth_pkce Boolean flag to enable PKCE
#' @field oauth_scopes OAuth scopes
@ -68,7 +68,7 @@ ApiClient <- R6::R6Class(
# OAuth2
# Flow type
oauth_flow_type = "implicit",
# Authoriziation URL
# Authorization URL
oauth_authorization_url = "http://petstore.swagger.io/api/oauth/dialog",
# Token URL
oauth_token_url = "",
@ -99,7 +99,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,
@ -296,7 +296,7 @@ ApiClient <- R6::R6Class(
req <- req %>% req_oauth_auth_code(client, scope = req_oauth_scopes,
pkce = self$oauth_pkce,
auth_url = self$oauth_authoriziation_url)
auth_url = self$oauth_authorization_url)
}
# stream data

View File

@ -32,7 +32,7 @@
#' @field oauth_secret OAuth secret
#' @field oauth_refresh_token OAuth refresh token
#' @field oauth_flow_type OAuth flow type
#' @field oauth_authorization_url Authoriziation URL
#' @field oauth_authorization_url Authorization URL
#' @field oauth_token_url Token URL
#' @field oauth_pkce Boolean flag to enable PKCE
#' @field oauth_scopes OAuth scopes
@ -68,7 +68,7 @@ ApiClient <- R6::R6Class(
# OAuth2
# Flow type
oauth_flow_type = "implicit",
# Authoriziation URL
# Authorization URL
oauth_authorization_url = "http://petstore.swagger.io/api/oauth/dialog",
# Token URL
oauth_token_url = "",
@ -99,7 +99,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,
@ -296,7 +296,7 @@ ApiClient <- R6::R6Class(
req <- req %>% req_oauth_auth_code(client, scope = req_oauth_scopes,
pkce = self$oauth_pkce,
auth_url = self$oauth_authoriziation_url)
auth_url = self$oauth_authorization_url)
}
# stream data

View File

@ -32,7 +32,7 @@
#' @field oauth_secret OAuth secret
#' @field oauth_refresh_token OAuth refresh token
#' @field oauth_flow_type OAuth flow type
#' @field oauth_authorization_url Authoriziation URL
#' @field oauth_authorization_url Authorization URL
#' @field oauth_token_url Token URL
#' @field oauth_pkce Boolean flag to enable PKCE
#' @field bearer_token Bearer token
@ -68,7 +68,7 @@ ApiClient <- R6::R6Class(
# OAuth2
# Flow type
oauth_flow_type = "implicit",
# Authoriziation URL
# Authorization URL
oauth_authorization_url = "http://petstore.swagger.io/api/oauth/dialog",
# Token URL
oauth_token_url = "",
@ -97,7 +97,7 @@ ApiClient <- R6::R6Class(
#' @param bearer_token Bearer token.
#' @param timeout Timeout.
#' @param retry_status_codes Status codes for retry.
#' @param max_retry_attempts Maxmium number of retry.
#' @param max_retry_attempts Maximum number of retry.
#' @export
initialize = function(base_path = NULL, user_agent = NULL,
default_headers = NULL,

View File

@ -240,7 +240,7 @@ web::json::value ModelBase::toJson( const std::vector<T>& value )
template<typename T>
web::json::value ModelBase::toJson( const std::set<T>& value )
{
// There's no protoype web::json::value::array(...) taking a std::set parameter. Converting to std::vector to get an array.
// There's no prototype web::json::value::array(...) taking a std::set parameter. Converting to std::vector to get an array.
std::vector<web::json::value> ret;
for ( const auto& x : value )
{

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -13,7 +13,7 @@ namespace Org.OpenAPITools.Client
public Exception Exception { get; }
/// <summary>
/// The ExcepetionEventArgs
/// The ExceptionEventArgs
/// </summary>
/// <param name="exception"></param>
public ExceptionEventArgs(Exception exception)

View File

@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Client
public string SigningAlgorithm { get; set; }
/// <summary>
/// Gets the Signature validaty period in seconds
/// Gets the Signature validity period in seconds
/// </summary>
public int SignatureValidityPeriod { get; set; }

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -392,7 +392,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -392,7 +392,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -356,7 +356,7 @@ namespace Org.OpenAPITools.Client
}
/// <summary>
/// Convert ANS1 format to DER format. Not recommended to use because it generate inavlid signature occationally.
/// Convert ANS1 format to DER format. Not recommended to use because it generate invalid signature occasionally.
/// </summary>
/// <param name="signedBytes"></param>
/// <returns></returns>

View File

@ -177,7 +177,7 @@ class PetApi
*
* Add a new pet to the store
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -198,7 +198,7 @@ class PetApi
*
* Add a new pet to the store
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -253,7 +253,7 @@ class PetApi
*
* Add a new pet to the store
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -278,7 +278,7 @@ class PetApi
*
* Add a new pet to the store
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -318,7 +318,7 @@ class PetApi
/**
* Create request for operation 'addPet'
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -1413,7 +1413,7 @@ class PetApi
*
* Update an existing pet
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -1434,7 +1434,7 @@ class PetApi
*
* Update an existing pet
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -1489,7 +1489,7 @@ class PetApi
*
* Update an existing pet
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -1514,7 +1514,7 @@ class PetApi
*
* Update an existing pet
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2
@ -1554,7 +1554,7 @@ class PetApi
/**
* Create request for operation 'updatePet'
*
* This oepration contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* This operation contains host(s) defined in the OpenAP spec. Use 'hostIndex' to select the host.
* URL: http://petstore.swagger.io/v2
* URL: http://path-server-test.petstore.local/v2
* URL: http://{server}.swagger.io:{port}/v2

View File

@ -25,7 +25,7 @@ This project depends on [Xoson](https://github.com/Topheee/xoson) `v2.2.0` (and
git clone 'https://github.com/Topheee/xoson.git'
```
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarily, open the `XojoOpenAPIClientSynchronous.xojo_project` file with Xojo and copy `XojoOpenAPIClientSynchronous` to your project.
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarly, open the `XojoOpenAPIClientSynchronous.xojo_project` file with Xojo and copy `XojoOpenAPIClientSynchronous` to your project.
> Since Xojo currently has no package manager, you need to manually copy both the `Xoson` and the `XojoOpenAPIClientSynchronous` modules to your Xojo project.

View File

@ -25,7 +25,7 @@ This project depends on [Xoson](https://github.com/Topheee/xoson) `v2.2.0` (and
git clone 'https://github.com/Topheee/xoson.git'
```
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarily, open the `OpenAPIClient.xojo_project` file with Xojo and copy `OpenAPIClient` to your project.
Open the `Xoson.xojo_project` from the cloned git repository with Xojo and copy the `Xoson` module to your project. Similarly, open the `OpenAPIClient.xojo_project` file with Xojo and copy `OpenAPIClient` to your project.
> Since Xojo currently has no package manager, you need to manually copy both the `Xoson` and the `OpenAPIClient` modules to your Xojo project.

View File

@ -1,4 +1,4 @@
module.exports = {
// TODO: autentication logic
// TODO: authentication logic
// https://platform.zapier.com/cli_tutorials/getting-started#adding-authentication
};

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -363,7 +363,7 @@ impl<T, C> hyper::service::Service<(Request<Body>, C)> for Service<T, C> where
return Ok(Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
.body(Body::from("Failed to process message part due an internal error".to_string()))
.expect("Unable to create Internal Server Error response due to an internal errror"))
.expect("Unable to create Internal Server Error response due to an internal error"))
},
SaveResult::Error(e) => {
return Ok(Response::builder()

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -2208,7 +2208,7 @@ impl<T, C> hyper::service::Service<(Request<Body>, C)> for Service<T, C> where
return Ok(Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
.body(Body::from("Failed to process message part due an internal error".to_string()))
.expect("Unable to create Internal Server Error response due to an internal errror"))
.expect("Unable to create Internal Server Error response due to an internal error"))
},
SaveResult::Error(e) => {
return Ok(Response::builder()

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}

View File

@ -34,7 +34,7 @@ fn dummy_authorization() -> Authorization {
// However, if you want to use it anyway this can not be unimplemented, so dummy implementation added.
// unimplemented!()
Authorization{
subject: "Dummmy".to_owned(),
subject: "Dummy".to_owned(),
scopes: Scopes::Some(BTreeSet::new()), // create an empty scope, as this should not be used
issuer: None
}