Skip to content

Commit

Permalink
chore: regenerate sdk and format
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 13, 2020
1 parent 79c7222 commit f9e3e1d
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 127 deletions.
42 changes: 24 additions & 18 deletions .schema/api.swagger.json
Expand Up @@ -702,30 +702,19 @@
"summary": "Complete Login Flow with Username/Email Password Method",
"operationId": "completeSelfServiceLoginFlowWithPasswordMethod",
"parameters": [
{
"type": "string",
"description": "The user's password.",
"name": "password",
"in": "query"
},
{
"type": "string",
"description": "Identifier is the email or username of the user trying to log in.",
"name": "identifier",
"in": "query"
},
{
"type": "string",
"description": "Sending the anti-csrf token is only required for browser login flows.",
"name": "csrf_token",
"in": "query"
},
{
"type": "string",
"description": "The Flow ID",
"name": "flow",
"in": "query",
"required": true
},
{
"name": "Body",
"in": "body",
"schema": {
"$ref": "#/definitions/CompleteSelfServiceLoginFlowWithPasswordMethod"
}
}
],
"responses": {
Expand Down Expand Up @@ -1668,6 +1657,23 @@
}
},
"definitions": {
"CompleteSelfServiceLoginFlowWithPasswordMethod": {
"type": "object",
"properties": {
"csrf_token": {
"description": "Sending the anti-csrf token is only required for browser login flows.",
"type": "string"
},
"identifier": {
"description": "Identifier is the email or username of the user trying to log in.",
"type": "string"
},
"password": {
"description": "The user's password.",
"type": "string"
}
}
},
"CompleteSelfServiceSettingsFlowWithPasswordMethod": {
"type": "object",
"required": [
Expand Down
48 changes: 27 additions & 21 deletions docs/docs/contributing.md
Expand Up @@ -86,7 +86,8 @@ Please follow these guidelines when formatting source code:
Please provide documentation when changing, removing, or adding features.
Documentation resides in the project's `docs` folder.

In cases where a project does not have a `docs` folder check the README for instructions.
In cases where a project does not have a `docs` folder check the README for
instructions.

The commands listed below work exclusively for projects with a `docs` folder

Expand All @@ -108,8 +109,8 @@ To start a local development server with hot reloading, run:
$ npm start
```

This command opens up a browser window. Please note that changes to the sidebar are not hot-reloaded
and require a restart of the command.
This command opens up a browser window. Please note that changes to the sidebar
are not hot-reloaded and require a restart of the command.

#### Build

Expand Down Expand Up @@ -146,27 +147,32 @@ please include a note in your commit message explaining why.

## How We Organize Our Work

All repositories in the [ORY organization](https://github.com/ory) have their issues and pull requests
monitored in the [ORY Monitoring Board](https://github.com/orgs/ory/projects/9). This allows
for a transparent backlog of unanswered issues and pull requests across the ecosystem from those
who are allowed to merge pull requests to the main branch.
All repositories in the [ORY organization](https://github.com/ory) have their
issues and pull requests monitored in the
[ORY Monitoring Board](https://github.com/orgs/ory/projects/9). This allows for
a transparent backlog of unanswered issues and pull requests across the
ecosystem from those who are allowed to merge pull requests to the main branch.

The process is as follows:

1. _Cards_ represent open issues and pull requests and are automatically assigned to the **Triage** column if
the author is not one of the maintainers and no maintainer has answered yet.
2. A maintainer assigns the issue or pull request to someone or adds the label _help wanted_
which moves the card to **Requires Action**.
3. If a maintainer leaves a comment or review, the card moves to **Pending Reply**, implying that
the original author needs to do something (e.g. implement a change, explain something in more detail, ...).
4. If a non-maintainer pushes changes to the pull request or leaves a comment, the card moves
back to **Requires Action**.
5. If a card stays inactive for 60 days or more days, we assume that public interest in the issue
or change has waned, **archiving** the card.
6. If the issue is closed or the pull request merged or closed, the card is **archived** as well.

We try our best to answer all issues and review all pull requests and hope that this transparent way
of keeping a backlog helps you better understand how heavy the workload is.
1. _Cards_ represent open issues and pull requests and are automatically
assigned to the **Triage** column if the author is not one of the maintainers
and no maintainer has answered yet.
2. A maintainer assigns the issue or pull request to someone or adds the label
_help wanted_ which moves the card to **Requires Action**.
3. If a maintainer leaves a comment or review, the card moves to **Pending
Reply**, implying that the original author needs to do something (e.g.
implement a change, explain something in more detail, ...).
4. If a non-maintainer pushes changes to the pull request or leaves a comment,
the card moves back to **Requires Action**.
5. If a card stays inactive for 60 days or more days, we assume that public
interest in the issue or change has waned, **archiving** the card.
6. If the issue is closed or the pull request merged or closed, the card is
**archived** as well.

We try our best to answer all issues and review all pull requests and hope that
this transparent way of keeping a backlog helps you better understand how heavy
the workload is.

## Communication

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f9e3e1d

Please sign in to comment.