Skip to content

Commit ff94fb7

Browse files
authored
Merge pull request #9 from Permify/update-sdk-from-openapi
chore: update Python SDK from latest OpenAPI specification
2 parents 9acd8f5 + 01c8385 commit ff94fb7

File tree

276 files changed

+290
-296
lines changed

Some content is hidden

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

276 files changed

+290
-296
lines changed

docs/TenantDeleteResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TenantDeleteResponse is the message returned from the request to delete a tenant
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**tenant** | [**Tenant**](Tenant.md) | | [optional]
9+
**tenant_id** | **str** | tenant_id is the tenant id that was deleted. | [optional]
1010

1111
## Example
1212

generator/openapi.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "Permify API",
55
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
6-
"version": "v1.4.3",
6+
"version": "v1.4.4",
77
"contact": {
88
"name": "API Support",
99
"url": "https://github.com/Permify/permify/issues",
@@ -3211,9 +3211,9 @@
32113211
"TenantDeleteResponse": {
32123212
"type": "object",
32133213
"properties": {
3214-
"tenant": {
3215-
"$ref": "#/definitions/Tenant",
3216-
"description": "tenant is the tenant information that was deleted."
3214+
"tenant_id": {
3215+
"type": "string",
3216+
"description": "tenant_id is the tenant id that was deleted."
32173217
}
32183218
},
32193219
"description": "TenantDeleteResponse is the message returned from the request to delete a tenant."

permify/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
99
10-
The version of the OpenAPI document: v1.4.3
10+
The version of the OpenAPI document: v1.4.4
1111
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "v1.4.3"
18+
__version__ = "v1.4.4"
1919

2020
# import apis into sdk package
2121
from permify.api.bundle_api import BundleApi

permify/api/bundle_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/data_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/permission_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/schema_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/tenancy_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api/watch_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

permify/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
77
8-
The version of the OpenAPI document: v1.4.3
8+
The version of the OpenAPI document: v1.4.4
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -87,7 +87,7 @@ def __init__(
8787
self.default_headers[header_name] = header_value
8888
self.cookie = cookie
8989
# Set default User-Agent.
90-
self.user_agent = 'OpenAPI-Generator/v1.4.3/python'
90+
self.user_agent = 'OpenAPI-Generator/v1.4.4/python'
9191
self.client_side_validation = configuration.client_side_validation
9292

9393
def __enter__(self):

0 commit comments

Comments
 (0)