Skip to content

Commit 3a8e080

Browse files
ci: regenerated with OpenAPI Doc 0.1.0, Speakeay CLI 1.49.0 (#9)
Co-authored-by: speakeasybot <[email protected]>
1 parent 2842378 commit 3a8e080

File tree

123 files changed

+1589
-593
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+1589
-593
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
venv/
2+
src/*.egg-info/
3+
__pycache__/
4+
.pytest_cache/
5+
.python-version
6+
.DS_Store

README.md

+23-19
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ from fabra.models import operations
2222

2323
s = fabra.Fabra(
2424
security=shared.Security(
25-
api_key_auth="YOUR_API_KEY_HERE",
25+
api_key_auth="",
2626
),
2727
)
2828

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

4343

44-
### [connection](docs/connection/README.md)
44+
### [connection](docs/sdks/connection/README.md)
4545

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

50-
### [destination](docs/destination/README.md)
50+
### [customer_data](docs/sdks/customerdata/README.md)
5151

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

55-
### [link_token](docs/linktoken/README.md)
54+
### [destination](docs/sdks/destination/README.md)
5655

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

59-
### [object](docs/object/README.md)
59+
### [link_token](docs/sdks/linktoken/README.md)
6060

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

64-
### [source](docs/source/README.md)
63+
### [object](docs/sdks/object/README.md)
6564

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

69-
### [sync](docs/sync/README.md)
68+
### [source](docs/sdks/source/README.md)
7069

71-
* [create_sync](docs/sync/README.md#create_sync) - Create a new sync
72-
* [get_syncs](docs/sync/README.md#get_syncs) - Get all syncs
70+
* [create_source](docs/sdks/source/README.md#create_source) - Create a new source
71+
* [get_sources](docs/sdks/source/README.md#get_sources) - Get all sources
72+
73+
### [sync](docs/sdks/sync/README.md)
74+
75+
* [create_sync](docs/sdks/sync/README.md#create_sync) - Create a new sync
76+
* [get_syncs](docs/sdks/sync/README.md#get_syncs) - Get all syncs
7377
<!-- End SDK Available Operations -->
7478

7579
### SDK Generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)

RELEASES.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,12 @@ Based on:
346346
- OpenAPI Doc 0.1.0 https://fabra-io.github.io/docs/openapi.yaml
347347
- Speakeasy CLI 1.29.2 https://github.com/speakeasy-api/speakeasy
348348
### Releases
349-
- [PyPI v0.20.2] https://pypi.org/project/fabra/0.20.2 - .
349+
- [PyPI v0.20.2] https://pypi.org/project/fabra/0.20.2 - .
350+
351+
## 2023-06-20 01:09:07
352+
### Changes
353+
Based on:
354+
- OpenAPI Doc 0.1.0 https://fabra-io.github.io/docs/openapi.yaml
355+
- Speakeasy CLI 1.49.0 (2.41.4) https://github.com/speakeasy-api/speakeasy
356+
### Releases
357+
- [PyPI v0.21.0] https://pypi.org/project/fabra/0.21.0 - .

USAGE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from fabra.models import operations
55

66
s = fabra.Fabra(
77
security=shared.Security(
8-
api_key_auth="YOUR_API_KEY_HERE",
8+
api_key_auth="",
99
),
1010
)
1111

docs/connection/README.md

-92
This file was deleted.

docs/linktoken/README.md

-35
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateDestination200ApplicationJSON
2+
3+
Successfully created destination
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
10+
| `destination` | [Optional[shared.Destination]](../../models/shared/destination.md) | :heavy_minus_sign: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreateDestinationResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
8+
| `content_type` | *str* | :heavy_check_mark: | N/A |
9+
| `status_code` | *int* | :heavy_check_mark: | N/A |
10+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
11+
| `create_destination_200_application_json_object` | [Optional[CreateDestination200ApplicationJSON]](../../models/operations/createdestination200applicationjson.md) | :heavy_minus_sign: | Successfully created destination |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreateLinkTokenResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
8+
| `content_type` | *str* | :heavy_check_mark: | N/A |
9+
| `create_link_token_response` | [Optional[shared.CreateLinkTokenResponse]](../../models/shared/createlinktokenresponse.md) | :heavy_minus_sign: | Successfully created link token |
10+
| `status_code` | *int* | :heavy_check_mark: | N/A |
11+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateObject200ApplicationJSON
2+
3+
Successfully created object
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
10+
| `object` | [Optional[shared.Object]](../../models/shared/object.md) | :heavy_minus_sign: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreateObjectResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
8+
| `content_type` | *str* | :heavy_check_mark: | N/A |
9+
| `status_code` | *int* | :heavy_check_mark: | N/A |
10+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
11+
| `create_object_200_application_json_object` | [Optional[CreateObject200ApplicationJSON]](../../models/operations/createobject200applicationjson.md) | :heavy_minus_sign: | Successfully created object |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateSource200ApplicationJSON
2+
3+
Successfully created source
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
10+
| `source` | [Optional[shared.Source]](../../models/shared/source.md) | :heavy_minus_sign: | N/A |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CreateSourceResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
8+
| `content_type` | *str* | :heavy_check_mark: | N/A |
9+
| `status_code` | *int* | :heavy_check_mark: | N/A |
10+
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
11+
| `create_source_200_application_json_object` | [Optional[CreateSource200ApplicationJSON]](../../models/operations/createsource200applicationjson.md) | :heavy_minus_sign: | Successfully created source |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateSync200ApplicationJSON
2+
3+
Successfully created sync
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
10+
| `sync` | [Optional[shared.Sync]](../../models/shared/sync.md) | :heavy_minus_sign: | N/A |

0 commit comments

Comments
 (0)