Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 0.1.0, Speakeay CLI 1.49.0 (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: speakeasybot <[email protected]>
  • Loading branch information
github-actions[bot] and speakeasybot authored Jun 20, 2023
1 parent 2842378 commit 3a8e080
Show file tree
Hide file tree
Showing 123 changed files with 1,589 additions and 593 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
venv/
src/*.egg-info/
__pycache__/
.pytest_cache/
.python-version
.DS_Store
42 changes: 23 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ from fabra.models import operations

s = fabra.Fabra(
security=shared.Security(
api_key_auth="YOUR_API_KEY_HERE",
api_key_auth="",
),
)

Expand All @@ -41,35 +41,39 @@ if res.namespaces is not None:
## Available Resources and Operations


### [connection](docs/connection/README.md)
### [connection](docs/sdks/connection/README.md)

* [get_namespaces](docs/connection/README.md#get_namespaces) - Get all namespaces
* [get_schema](docs/connection/README.md#get_schema) - Get schema for table
* [get_tables](docs/connection/README.md#get_tables) - Get all tables
* [get_namespaces](docs/sdks/connection/README.md#get_namespaces) - Get all namespaces
* [get_schema](docs/sdks/connection/README.md#get_schema) - Get schema for table
* [get_tables](docs/sdks/connection/README.md#get_tables) - Get all tables

### [destination](docs/destination/README.md)
### [customer_data](docs/sdks/customerdata/README.md)

* [create_destination](docs/destination/README.md#create_destination) - Create a new destination
* [get_destinations](docs/destination/README.md#get_destinations) - Get all destinations
* [query_object](docs/sdks/customerdata/README.md#query_object) - Query object record for customer

### [link_token](docs/linktoken/README.md)
### [destination](docs/sdks/destination/README.md)

* [create_link_token](docs/linktoken/README.md#create_link_token) - Create a new link token
* [create_destination](docs/sdks/destination/README.md#create_destination) - Create a new destination
* [get_destinations](docs/sdks/destination/README.md#get_destinations) - Get all destinations

### [object](docs/object/README.md)
### [link_token](docs/sdks/linktoken/README.md)

* [create_object](docs/object/README.md#create_object) - Create a new object
* [get_objects](docs/object/README.md#get_objects) - Get all objects
* [create_link_token](docs/sdks/linktoken/README.md#create_link_token) - Create a new link token

### [source](docs/source/README.md)
### [object](docs/sdks/object/README.md)

* [create_source](docs/source/README.md#create_source) - Create a new source
* [get_sources](docs/source/README.md#get_sources) - Get all sources
* [create_object](docs/sdks/object/README.md#create_object) - Create a new object
* [get_objects](docs/sdks/object/README.md#get_objects) - Get all objects

### [sync](docs/sync/README.md)
### [source](docs/sdks/source/README.md)

* [create_sync](docs/sync/README.md#create_sync) - Create a new sync
* [get_syncs](docs/sync/README.md#get_syncs) - Get all syncs
* [create_source](docs/sdks/source/README.md#create_source) - Create a new source
* [get_sources](docs/sdks/source/README.md#get_sources) - Get all sources

### [sync](docs/sdks/sync/README.md)

* [create_sync](docs/sdks/sync/README.md#create_sync) - Create a new sync
* [get_syncs](docs/sdks/sync/README.md#get_syncs) - Get all syncs
<!-- End SDK Available Operations -->

### SDK Generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,12 @@ Based on:
- OpenAPI Doc 0.1.0 https://fabra-io.github.io/docs/openapi.yaml
- Speakeasy CLI 1.29.2 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.20.2] https://pypi.org/project/fabra/0.20.2 - .
- [PyPI v0.20.2] https://pypi.org/project/fabra/0.20.2 - .

## 2023-06-20 01:09:07
### Changes
Based on:
- OpenAPI Doc 0.1.0 https://fabra-io.github.io/docs/openapi.yaml
- Speakeasy CLI 1.49.0 (2.41.4) https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.21.0] https://pypi.org/project/fabra/0.21.0 - .
2 changes: 1 addition & 1 deletion USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ from fabra.models import operations

s = fabra.Fabra(
security=shared.Security(
api_key_auth="YOUR_API_KEY_HERE",
api_key_auth="",
),
)

Expand Down
92 changes: 0 additions & 92 deletions docs/connection/README.md

This file was deleted.

35 changes: 0 additions & 35 deletions docs/linktoken/README.md

This file was deleted.

10 changes: 10 additions & 0 deletions docs/models/operations/createdestination200applicationjson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateDestination200ApplicationJSON

Successfully created destination


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| `destination` | [Optional[shared.Destination]](../../models/shared/destination.md) | :heavy_minus_sign: | N/A |
11 changes: 11 additions & 0 deletions docs/models/operations/createdestinationresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateDestinationResponse


## Fields

| Field | Type | Required | Description |
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| `content_type` | *str* | :heavy_check_mark: | N/A |
| `status_code` | *int* | :heavy_check_mark: | N/A |
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
| `create_destination_200_application_json_object` | [Optional[CreateDestination200ApplicationJSON]](../../models/operations/createdestination200applicationjson.md) | :heavy_minus_sign: | Successfully created destination |
11 changes: 11 additions & 0 deletions docs/models/operations/createlinktokenresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateLinkTokenResponse


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
| `content_type` | *str* | :heavy_check_mark: | N/A |
| `create_link_token_response` | [Optional[shared.CreateLinkTokenResponse]](../../models/shared/createlinktokenresponse.md) | :heavy_minus_sign: | Successfully created link token |
| `status_code` | *int* | :heavy_check_mark: | N/A |
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
10 changes: 10 additions & 0 deletions docs/models/operations/createobject200applicationjson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateObject200ApplicationJSON

Successfully created object


## Fields

| Field | Type | Required | Description |
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
| `object` | [Optional[shared.Object]](../../models/shared/object.md) | :heavy_minus_sign: | N/A |
11 changes: 11 additions & 0 deletions docs/models/operations/createobjectresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateObjectResponse


## Fields

| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| `content_type` | *str* | :heavy_check_mark: | N/A |
| `status_code` | *int* | :heavy_check_mark: | N/A |
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
| `create_object_200_application_json_object` | [Optional[CreateObject200ApplicationJSON]](../../models/operations/createobject200applicationjson.md) | :heavy_minus_sign: | Successfully created object |
10 changes: 10 additions & 0 deletions docs/models/operations/createsource200applicationjson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateSource200ApplicationJSON

Successfully created source


## Fields

| Field | Type | Required | Description |
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
| `source` | [Optional[shared.Source]](../../models/shared/source.md) | :heavy_minus_sign: | N/A |
11 changes: 11 additions & 0 deletions docs/models/operations/createsourceresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CreateSourceResponse


## Fields

| Field | Type | Required | Description |
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| `content_type` | *str* | :heavy_check_mark: | N/A |
| `status_code` | *int* | :heavy_check_mark: | N/A |
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
| `create_source_200_application_json_object` | [Optional[CreateSource200ApplicationJSON]](../../models/operations/createsource200applicationjson.md) | :heavy_minus_sign: | Successfully created source |
10 changes: 10 additions & 0 deletions docs/models/operations/createsync200applicationjson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CreateSync200ApplicationJSON

Successfully created sync


## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
| `sync` | [Optional[shared.Sync]](../../models/shared/sync.md) | :heavy_minus_sign: | N/A |
Loading

0 comments on commit 3a8e080

Please sign in to comment.