Skip to content

Commit

Permalink
docs: replace <br> tags with newlines (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Dec 18, 2023
1 parent 70ffac1 commit c068ca9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 19 deletions.
8 changes: 5 additions & 3 deletions src/finch/types/introspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ class Introspection(BaseModel):
"""The Finch uuid of the company associated with the `access_token`."""

connection_type: Literal["provider", "finch"]
"""
The type of the connection associated with the token.<br> `provider` -
connection to an external provider<br> `finch` - finch-generated data.
"""The type of the connection associated with the token.
`provider` - connection to an external provider
`finch` - finch-generated data.
"""

manual: bool
Expand Down
40 changes: 24 additions & 16 deletions src/finch/types/shared/operation_support_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,53 @@

class OperationSupportMatrix(BaseModel):
create: Optional[OperationSupport] = None
"""
- `supported`: This operation is supported by both the provider and Finch <br>
"""- `supported`: This operation is supported by both the provider and Finch
- `not_supported_by_finch`: This operation is not supported by Finch but
supported by the provider <br>
supported by the provider
- `not_supported_by_provider`: This operation is not supported by the provider,
so Finch cannot support <br>
so Finch cannot support
- `client_access_only`: This behavior is supported by the provider, but only
available to the client and not to Finch
"""

delete: Optional[OperationSupport] = None
"""
- `supported`: This operation is supported by both the provider and Finch <br>
"""- `supported`: This operation is supported by both the provider and Finch
- `not_supported_by_finch`: This operation is not supported by Finch but
supported by the provider <br>
supported by the provider
- `not_supported_by_provider`: This operation is not supported by the provider,
so Finch cannot support <br>
so Finch cannot support
- `client_access_only`: This behavior is supported by the provider, but only
available to the client and not to Finch
"""

read: Optional[OperationSupport] = None
"""
- `supported`: This operation is supported by both the provider and Finch <br>
"""- `supported`: This operation is supported by both the provider and Finch
- `not_supported_by_finch`: This operation is not supported by Finch but
supported by the provider <br>
supported by the provider
- `not_supported_by_provider`: This operation is not supported by the provider,
so Finch cannot support <br>
so Finch cannot support
- `client_access_only`: This behavior is supported by the provider, but only
available to the client and not to Finch
"""

update: Optional[OperationSupport] = None
"""
- `supported`: This operation is supported by both the provider and Finch <br>
"""- `supported`: This operation is supported by both the provider and Finch
- `not_supported_by_finch`: This operation is not supported by Finch but
supported by the provider <br>
supported by the provider
- `not_supported_by_provider`: This operation is not supported by the provider,
so Finch cannot support <br>
so Finch cannot support
- `client_access_only`: This behavior is supported by the provider, but only
available to the client and not to Finch
"""

0 comments on commit c068ca9

Please sign in to comment.